mirror of
https://github.com/eddieoz/LoRa-Mesh-Analyzer.git
synced 2026-07-05 17:31:50 +02:00
c20c7e1b41
- Implemented Auto-Discovery of traceroute targets based on roles and geolocation. - Added Network Reporting feature (Markdown generation). - Refactored ActiveTester to use threading for non-blocking traceroutes. - Fixed self-exclusion logic in auto-discovery. - Fixed coordinate validation bugs in Analyzer. - Updated config and README.
26 lines
571 B
YAML
26 lines
571 B
YAML
# Configuration for Meshtastic Network Monitor
|
|
|
|
# List of Node IDs to prioritize for active testing (Traceroute, etc.)
|
|
# Format: "!<NodeID>"
|
|
priority_nodes:
|
|
# - "!12345678"
|
|
- "!d75ae2a0"
|
|
|
|
# Logging Level [warn|info|debug]
|
|
log_level: info
|
|
|
|
# Auto-Discovery Settings (Used if priority_nodes is empty)
|
|
# Roles to prioritize for auto-discovery
|
|
auto_discovery_roles:
|
|
- ROUTER
|
|
- ROUTER_CLIENT
|
|
- REPEATER
|
|
- CLIENT
|
|
|
|
# Limit number of auto-discovered nodes
|
|
auto_discovery_limit: 5
|
|
|
|
# Reporting Settings
|
|
# Generate report after N full testing cycles
|
|
report_cycles: 1
|