diff --git a/containers/metrics.go b/containers/metrics.go index 4ae1496..ae3524e 100644 --- a/containers/metrics.go +++ b/containers/metrics.go @@ -82,7 +82,7 @@ var ( ebpftracer.L7ProtocolMongo: {Name: "container_mongo_queries_total", Help: "Total number of outbound Mongo queries"}, } L7Latency = map[ebpftracer.L7Protocol]prometheus.HistogramOpts{ - ebpftracer.L7ProtocolHTTP: {Name: "container_http_request_duration_seconds_total", Help: "Histogram of the response time for each outbound HTTP request"}, + ebpftracer.L7ProtocolHTTP: {Name: "container_http_requests_duration_seconds_total", Help: "Histogram of the response time for each outbound HTTP request"}, ebpftracer.L7ProtocolPostgres: {Name: "container_postgres_queries_duration_seconds_total", Help: "Histogram of the execution time for each outbound Postgres query"}, ebpftracer.L7ProtocolRedis: {Name: "container_redis_queries_duration_seconds_total", Help: "Histogram of the execution time for each outbound Redis query"}, ebpftracer.L7ProtocolMemcached: {Name: "container_memcached_queries_duration_seconds_total", Help: "Histogram of the execution time for each outbound Memcached query"},