introduce uptime monitor for easytier public nodes (#1250)

This commit is contained in:
Sijie.Sun
2025-08-20 22:59:44 +08:00
committed by GitHub
parent 8f37d4ef7c
commit e6ec7f405c
61 changed files with 12122 additions and 17 deletions
+10
View File
@@ -60,6 +60,16 @@ message RouteForeignNetworkInfos {
repeated Info infos = 1;
}
message RouteForeignNetworkSummary {
message Info {
uint32 peer_id = 1;
uint32 network_count = 2;
uint32 peer_count = 3;
}
map<uint32, Info> info_map = 1;
}
message SyncRouteInfoRequest {
uint32 my_peer_id = 1;
uint64 my_session_id = 2;
+1
View File
@@ -102,6 +102,7 @@ message NetworkInstanceRunningInfo {
repeated cli.PeerRoutePair peer_route_pairs = 6;
bool running = 7;
optional string error_msg = 8;
peer_rpc.RouteForeignNetworkSummary foreign_network_summary = 9;
}
message NetworkInstanceRunningInfoMap {