Skip to content

Commit ffda5f7

Browse files
authored
fix description of request duration metric (#3245)
The description was copied from the total number of requests metric and has always been wrong. This fixes it.
1 parent ab0aebe commit ffda5f7

File tree

1 file changed

+1
-1
lines changed
  • apollo-router/src/plugins/telemetry/metrics

1 file changed

+1
-1
lines changed

apollo-router/src/plugins/telemetry/metrics/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ impl BasicMetrics {
559559
.init(),
560560
http_requests_duration: meter
561561
.f64_histogram("apollo_router_http_request_duration_seconds")
562-
.with_description("Total number of HTTP requests made.")
562+
.with_description("Duration of HTTP requests.")
563563
.init(),
564564
}
565565
}

0 commit comments

Comments
 (0)