8 lines
225 B
PromQL
8 lines
225 B
PromQL
# A metric with label filtering
|
|
go_gc_duration_seconds{instance="localhost:9090", job="alertmanager"}
|
|
|
|
# Aggregation operators
|
|
sum by (app, proc) (
|
|
instance_memory_limit_bytes - instance_memory_usage_bytes
|
|
) / 1024 / 1024
|
|
|