feat(bgp): improve prefix-geo pipeline and collector reliability

This commit is contained in:
linkong
2026-04-07 15:23:26 +08:00
parent 5b9ef0223d
commit c439e91d12
11 changed files with 621 additions and 62 deletions

View File

@@ -141,6 +141,20 @@ DEFAULT_DATASOURCES = {
"priority": "P1",
"frequency_minutes": 1440,
},
"opengeofeed_prefix_geo": {
"id": 24,
"name": "OpenGeoFeed Prefix Geography",
"module": "L3",
"priority": "P1",
"frequency_minutes": 1440,
},
"nro_delegated_prefix_geo": {
"id": 25,
"name": "NRO Delegated Prefix Geography",
"module": "L3",
"priority": "P1",
"frequency_minutes": 1440,
},
}
ID_TO_COLLECTOR = {info["id"]: name for name, info in DEFAULT_DATASOURCES.items()}