ashb commented on a change in pull request #3997: [AIRFLOW-3153] send dag
last_run to statsd
URL: https://github.com/apache/incubator-airflow/pull/3997#discussion_r222698476
##########
File path: airflow/jobs.py
##########
@@ -1513,6 +1518,16 @@ def _log_file_processing_stats(self,
if processor_start_time else None)
last_run = processor_manager.get_last_finish_time(file_path)
+ file_name = file_path[len(dags_folder) + 1:]
+ dag_name = os.path.splitext(file_name)[0].replace(os.sep, '.')
Review comment:
A dag file could contain multiple DAGs - is there a reason to not use dag_id
here?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services