Zeebe Metrics name

When we enable ZEEBE_BROKER_EXECUTION_METRICS_EXPORTER_ENABLED=“true”, can you suggest all the metric names that are available in prometheus?

Hi @ankit_joinwal,

Here is a search that allows you to find them all: Search · prometheus.client · GitHub

Josh

Thank you for sharing the complete list. I actually wanted to know what extra metrics start coming after I enable ZEEBE_BROKER_EXECUTION_METRICS_EXPORTER_ENABLED

There are lot of metrics exported so its hard to find specific ones related to that setting.

If you use the environment variable the zeebe/MetricsExporter.java at main · camunda/zeebe · GitHub is enabled which means it will write the following metrics zeebe/ExecutionLatencyMetrics.java at main · camunda/zeebe · GitHub

Greets
Chris

2 Likes

Thanks @Zelldon @jwulf

Hi @Zelldon , one last confirmation,

The env variable is to be provided “true” (in doubles quotes) right or without double quotes in helm? Eg.

  • name: ZEEBE_BROKER_EXECUTION_METRICS_EXPORTER_ENABLED
    value: “true”

I would say quoted yes. It will be parsed correctly by the broker then.

See zeebe/zeebe-values.yaml at main · camunda/zeebe · GitHub

Greets
Chris

1 Like