跟踪用户活动

您可以将 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/www/templates/airflow/main.html 中查看 Airflow 源代码中注入的跟踪器 html。相关全局变量在 airflow/www/templates/app.py 中设置。

注意

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

此条目有帮助吗?