Skip to content

Commit

Permalink
fix typo in container_http_requests_duration_seconds_total
Browse files Browse the repository at this point in the history
  • Loading branch information
apetruhin authored Nov 25, 2022
1 parent d05851a commit e349472
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion containers/metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
Expand Down

0 comments on commit e349472

Please sign in to comment.