kacpermuda commented on code in PR #37797:
URL: https://github.com/apache/airflow/pull/37797#discussion_r1507778783
##########
airflow/providers/openlineage/plugins/listener.py:
##########
@@ -83,15 +86,16 @@ def on_running():
try_number=task_instance.try_number,
)
- task_metadata = self.extractor_manager.extract_metadata(dagrun,
task)
+ with
Stats.timer(f"ol.extract.{RunState.RUNNING.value}.{task.task_type}"):
Review Comment:
According to [this docs](https://statsd.readthedocs.io/en/v4.0.1/tags.html),
for statsd, metric names must be disaggregated by default because it does not
support tags. Let me know if that is a correct approach (it should probably be
all lowercase, but is the logic good?)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]