virtual hosts now get hops = 1 (#19546)
Costa Tsaousis committed
Jan 31, 2025 at 12:31 UTC
0565c013921923781120bdf49a3591881885d637
1 file changed
+2
-2
src/database/rrdhost-status.c
+2
-2
@@ -101,8 +101,8 @@ RRDHOST_INGEST_STATUS rrdhost_ingestion_status(RRDHOST *host) {
101
}
102
103
int16_t rrdhost_ingestion_hops(RRDHOST *host) {
104
- if(rrdhost_is_local(host)) return 0;
105
- if(!host->system_info) return 1;
104
+ if(host == localhost) return 0;
105
+ if(rrdhost_option_check(host, RRDHOST_OPTION_VIRTUAL_HOST) || !host->system_info) return 1;
106
return rrdhost_system_info_hops(host->system_info);
107
}
108