Missing metrics related to process processing

Hi,

documentation (Metrics | Camunda Platform 8) states with an additional exporter more Prometheus metrics will be produced/exported.

I see that most of them are present, but not the following:

  • zeebe_stream_processor_events_total
  • zeebe_running_process_instances_total
  • zeebe_pending_jobs_total

Is there an additional config required to get those metrics (besides activating the Metrics exporter)?

Best regards
Thomas

To reproduce it:

  1. Run docker-compose file
  2. Deploy & Start Process
  3. Check Prometheus metrics
version: '3.8'

services:
  zeebe:
    image: camunda/zeebe:8.0.4
    ports:
      - "26500:26500"
      - "9600:9600"
    environment:
      ZEEBE_INSECURE_CONNECTION: "true"
      ZEEBE_BROKER_EXECUTION_METRICS_EXPORTER_ENABLED: "true"

diagram_1.bpmn (2.4 KB)

This is a case of outdated docs:

zeebe_stream_processor_events_total should be zeebe_stream_processor_records_total.

zeebe_pending_jobs_total and zeebe_running_process_instances_total were removed in november 2021: New instance and job panels by Zelldon · Pull Request #8169 · camunda/zeebe · GitHub

1 Like