Remove NoRoute status for subnets

Signed-off-by: Lee Smet <lee.smet@hotmail.com>
This commit is contained in:
Lee Smet
2026-03-10 13:43:09 +01:00
parent 12d6c88a9c
commit 430b7f9a79
21 changed files with 55 additions and 465 deletions

View File

@@ -471,9 +471,9 @@ impl Metrics for PrometheusExporter {
}
#[inline]
fn router_packets_dropped_no_route(&self, count: usize) {
fn router_packets_dropped_query_timeout(&self, count: usize) {
self.router_outbound_packet_queue
.with_label_values(&["dropped_no_route"])
.with_label_values(&["dropped_query_timeout"])
.inc_by(count as u64)
}
@@ -506,9 +506,9 @@ impl Metrics for PrometheusExporter {
}
#[inline]
fn router_incoming_packets_dropped_no_route(&self, count: usize) {
fn router_incoming_packets_dropped_query_timeout(&self, count: usize) {
self.router_incoming_packet_queue
.with_label_values(&["dropped_no_route"])
.with_label_values(&["dropped_query_timeout"])
.inc_by(count as u64)
}