You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: crates/apollo_dashboard/resources/dev_grafana.json
-11Lines changed: 0 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -630,17 +630,6 @@
630
630
"histogram_quantile(0.95, sum by (le) (rate(gateway_validate_stateful_tx_storage_operations_bucket{cluster=~\"$cluster\", namespace=~\"$namespace\"}[5m])))"
631
631
],
632
632
"extra_params": {}
633
-
},
634
-
{
635
-
"title": "gateway_class_cache_miss_ratio",
636
-
"description": "The ratio of cache misses when requesting compiled classes from the Gateway State Reader",
Copy file name to clipboardExpand all lines: crates/apollo_gateway/src/metrics.rs
-6Lines changed: 0 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -47,8 +47,6 @@ define_metrics!(
47
47
MetricHistogram{GATEWAY_VALIDATE_TX_LATENCY,"gateway_validate_tx_latency","Latency of gateway validate function in secs"},
48
48
MetricHistogram{GATEWAY_VALIDATE_STATEFUL_TX_STORAGE_TIME,"gateway_validate_stateful_tx_storage_time","Total time spent in storage operations in secs during stateful tx validation"},
49
49
MetricHistogram{GATEWAY_VALIDATE_STATEFUL_TX_STORAGE_OPERATIONS,"gateway_validate_stateful_tx_storage_operations","Total number of storage operations during stateful tx validation"},
50
-
MetricCounter{GATEWAY_CLASS_CACHE_HITS,"gateway_class_cache_hits","Counter of class cache hits", init=0},
51
-
MetricCounter{GATEWAY_CLASS_CACHE_MISSES,"gateway_class_cache_misses","Counter of class cache misses", init=0},
52
50
},
53
51
);
54
52
@@ -245,8 +243,6 @@ impl Drop for GatewayMetricHandle {
0 commit comments