This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v2-7-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit bc2bef8a7996497d5000c76d4909e882e5a02611 Author: Shubham Raj <[email protected]> AuthorDate: Fri Sep 22 00:23:34 2023 +0530 using seconds for failed scenarios too (#34532) Co-authored-by: Shubham <[email protected]> (cherry picked from commit 117e40490865f04aed38a18724fc88a8cf94aacc) --- .../administration-and-deployment/logging-monitoring/metrics.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/apache-airflow/administration-and-deployment/logging-monitoring/metrics.rst b/docs/apache-airflow/administration-and-deployment/logging-monitoring/metrics.rst index f8eee430f4..ec4558baf8 100644 --- a/docs/apache-airflow/administration-and-deployment/logging-monitoring/metrics.rst +++ b/docs/apache-airflow/administration-and-deployment/logging-monitoring/metrics.rst @@ -231,7 +231,7 @@ Name Description ``dag.<dag_id>.<task_id>.queued_duration`` Seconds a task spends in the Queued state, before being Running ``dag_processing.last_duration.<dag_file>`` Seconds taken to load the given DAG file ``dagrun.duration.success.<dag_id>`` Seconds taken for a DagRun to reach success state -``dagrun.duration.failed.<dag_id>`` Milliseconds taken for a DagRun to reach failed state +``dagrun.duration.failed.<dag_id>`` Seconds taken for a DagRun to reach failed state ``dagrun.schedule_delay.<dag_id>`` Seconds of delay between the scheduled DagRun start date and the actual DagRun start date ``scheduler.critical_section_duration`` Milliseconds spent in the critical section of scheduler loop --
