Cloudflare 中文文档
Analytics
Analytics
编辑这个页面
跳转官方原文档
Set theme to dark (⇧+D)

Querying Workers Analytics Engine from Grafana

Workers Analytics Engine is optimized for powering time series analytics that can be visualized using tools like Grafana. Every event written from the runtime is automatically populated with a timestamp field.

​​ Grafana plugin setup

We recommend the use of the Altinity plugin for Clickhouse for querying Workers Analytics Engine from Grafana.

Configure the plugin as follows:

  • URL: https://api.cloudflare.com/client/v4/accounts/<account_id>/analytics_engine/sql. Replace <account_id> with your 32 character account ID (available in the Cloudflare dashboard).
  • Leave all auth settings off.
  • Add a custom header with a name of Authorization and value set to Bearer <token>. Replace <token> with suitable API token string (refer to the SQL API docs for more information on this).
  • No other options need to be set.

​​ Querying timeseries data

For use in a dashboard, you usually want to aggregate some metric per time interval. This can be achieved by rounding and then grouping by the timestamp field. The following query rounds and groups in this way, and then computes an average across each time interval whilst taking into account sampling.

The Altinity plugin provides some useful macros that can simplify writing queries of this type. The macros require setting Column:DateTime to timestamp in the query builder, then they can be used like this:

This query will automatically adjust the rounding time depending on the zoom level and filter to the correct time range that is currently being displayed.