Skip to content

Commit 994f152

Browse files
author
Agent
committed
Remove overlapping location_resolution_duration from breakdown
- Removed Location Resolution metric from Processing Time Breakdown panel - Kept Nominatim Lookup metric which is the actual network call time - Avoids double-counting since nominatim_lookup_duration is a subset of location_resolution_duration - Breakdown now shows: Nominatim Lookup, Weather Fetch, Formatting
1 parent d69049c commit 994f152

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

etc/grafana/provisioning/dashboards/fingr-dashboard.json

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -722,8 +722,8 @@
722722
"type": "prometheus",
723723
"uid": "prometheus"
724724
},
725-
"expr": "histogram_quantile(0.95, rate(fingr_location_resolution_duration_seconds_bucket[5m]))",
726-
"legendFormat": "Location Resolution",
725+
"expr": "histogram_quantile(0.95, rate(fingr_nominatim_lookup_duration_seconds_bucket[5m]))",
726+
"legendFormat": "Nominatim Lookup",
727727
"refId": "A"
728728
},
729729
{
@@ -743,15 +743,6 @@
743743
"expr": "histogram_quantile(0.95, rate(fingr_formatting_duration_seconds_bucket[5m]))",
744744
"legendFormat": "Formatting",
745745
"refId": "C"
746-
},
747-
{
748-
"datasource": {
749-
"type": "prometheus",
750-
"uid": "prometheus"
751-
},
752-
"expr": "histogram_quantile(0.95, rate(fingr_nominatim_lookup_duration_seconds_bucket[5m]))",
753-
"legendFormat": "Nominatim Lookup",
754-
"refId": "D"
755746
}
756747
],
757748
"title": "Processing Time Breakdown (p95)",

0 commit comments

Comments
 (0)