This is an automated email from the ASF dual-hosted git repository.
kaxilnaik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/master by this push:
new 83aa6ad Add missing description of `celery.task_timeout_error` metric
(#12152)
83aa6ad is described below
commit 83aa6ad27945395f6f6417380b8c4d6d786ce51f
Author: Kaxil Naik <[email protected]>
AuthorDate: Sat Nov 7 11:55:14 2020 +0000
Add missing description of `celery.task_timeout_error` metric (#12152)
---
docs/logging-monitoring/metrics.rst | 1 +
1 file changed, 1 insertion(+)
diff --git a/docs/logging-monitoring/metrics.rst
b/docs/logging-monitoring/metrics.rst
index 2a3c9f4..df9e7cd 100644
--- a/docs/logging-monitoring/metrics.rst
+++ b/docs/logging-monitoring/metrics.rst
@@ -96,6 +96,7 @@ Name Description
``ti.start.<dagid>.<taskid>`` Number of started task in a given dag.
Similar to <job_name>_start but for task
``ti.finish.<dagid>.<taskid>.<state>`` Number of completed task in a given
dag. Similar to <job_name>_end but for task
``dag.callback_exceptions`` Number of exceptions raised from DAG
callbacks. When this happens, it means DAG callback is not working.
+``celery.task_timeout_error`` Number of ``AirflowTaskTimeout``
errors raised when publishing Task to Celery Broker.
=======================================
================================================================
Gauges