mirror of
https://github.com/ipnet-mesh/meshcore-hub.git
synced 2026-08-07 01:13:11 +02:00
993ba7b5b6
PR #348 changed several defaults but left a handful of docs, the docker-compose fallback, example seed files, and code docstrings stale: - docker-compose.yml: RAW_PACKET_RETENTION_DAYS fallback 7->2 (the :-7 override was the most consequential — operators without the env var set got 7 days, contradicting the code default and .env.example) - docs/configuration.md: route-history backfill now references the 300 s evaluator cadence (was 60 s) - docs/seeding.md + example/seed/routes.yaml: window_hours 48/24 -> 6 (matches the new default; both exceeded the 12 h max) - routes.py docstring: evaluator tick 60 s -> 300 s - subscriber.py: raw_packet_retention_days signature defaults 7 -> 2 (overridden at runtime by effective_raw_packet_retention_days, but kept consistent with the authoritative config default)
32 lines
1.4 KiB
YAML
32 lines
1.4 KiB
YAML
# Routes seed file — route health monitoring definitions
|
|
#
|
|
# Loaded by `meshcore-hub seed` (and the compose `seed` profile).
|
|
# A list under the top-level `routes:` key. Each entry has `from`/`to`
|
|
# endpoint labels, the route's knobs, and an ordered `path` of node
|
|
# public_keys (>= 2, distinct) plus an optional `observers` list of
|
|
# public_keys.
|
|
#
|
|
# Entries are upserted by the (from, to) label pair. Path nodes must
|
|
# already exist in the database (create them via node_tags.yaml or let
|
|
# the collector discover them). Observer nodes that don't exist yet are
|
|
# skipped with a warning (not an error).
|
|
|
|
routes:
|
|
- from: Ipswich
|
|
to: Norwich
|
|
description: A140 corridor route
|
|
visibility: community
|
|
match_width: 1
|
|
window_hours: 6
|
|
packet_count_threshold: 3
|
|
# clear_threshold: 10 # optional; omit/null = 2x threshold
|
|
# max_hop_span: 8 # optional; omit/null = unlimited
|
|
# max_path_length: 16 # optional; omit/null = unlimited (drops over-long packet paths)
|
|
enabled: true
|
|
reversible: true # match both directions (A->B and B->A)
|
|
path:
|
|
- a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2
|
|
- 9a8b7c6d5e4f9a8b7c6d5e4f9a8b7c6d5e4f9a8b7c6d5e4f9a8b7c6d5e4f9a8b
|
|
# observers: # optional; omit/empty = all observers
|
|
# - 0102030405060102030405060102030405060102030405060102030405060102
|