This document lists every metric that Astro exports through the Universal Metrics Exporter. Use this reference to identify which metrics are available, the Prometheus labels you can query against, and how each Astro metric name maps to its upstream Apache Airflow name.
Astro exports two categories of metrics:
Astro doesn’t export metrics outside of these tables. The mapping configuration drops any metric that doesn’t match a rule.
Astro applies the following transformations to Airflow metrics before they reach your Prometheus endpoint. For the source-of-truth mapping rules, see the Astro StatsD mappings file.
airflow.dag_processing.import_errors becomes airflow_dag_processing_import_errors.airflow.dag.<dag_id>.<task_id>.duration as airflow_task_duration with dag_id and task_id labels.zombies_killed (Airflow 2.x) and task_instances_without_heartbeats_killed (Airflow 3 and later) export when Airflow emits them.deploymentId, organizationId, and workspaceId.Apache Airflow classifies metrics into three types based on how the value behaves over time: counters, gauges, and timers. The following tables use Airflow’s classification. For background on each type, see the Apache Airflow metrics reference.
A counter records the cumulative count of events that occur over time, such as task failures or scheduler heartbeats.
A gauge measures a point-in-time value that can rise and fall, such as the number of running tasks or open executor slots.
A timer measures the duration of an event, such as how long a task or Dag run takes to complete. Astro exports timer values in milliseconds.
The Astro event scheduler emits metrics under the airflow.astro_event_scheduler.* namespace. Astro strips the airflow. prefix and exports each metric as astro_event_scheduler_<rest>. Because this is a catch-all mapping, the specific metric names emitted depend on the version of Astro Runtime running in your Deployment.
Infrastructure metrics describe the Kubernetes Pods that run each Airflow component. Use them to track CPU, memory, storage, and lifecycle health.