跟踪用户活动

您可以配置 Airflow 将匿名数据路由到 Google AnalyticsSegmentMetarouterMatomo

编辑 airflow.cfg 并将 webserver 块设置为具有 analytics_toolanalytics_id (如果您使用 matomo,则还需要 analytics_url

[webserver]
# Send anonymous user activity to Google Analytics, Segment, or Metarouter
analytics_tool = google_analytics # valid options: google_analytics, segment, metarouter, matomo
analytics_id = XXXXXXXXXXX
analytics_url = https://your-matomo-instance.example.com # only required for Matomo

注意

您可以在 Airflow 的源代码 airflow/www/templates/airflow/main.html 中查看注入的跟踪器 HTML。相关的全局变量在 airflow/www/templates/app.py 中设置。

注意

有关设置配置的更多信息,请参阅 设置配置选项

此条目是否有帮助?