docs/sources/configure/usage-statistics.md
Loki sends anonymous usage statistics to Grafana Labs. This reporting is enabled by default and helps the Loki team understand aggregate usage patterns. Reports are sent to https://stats.grafana.org/loki-usage-report by default.
Loki reports aggregate operational metadata, including:
Loki does not report log payloads, label values, tenant identifiers, or query strings. You can view the code in stats.go
To disable reporting in the Loki config file, set analytics.reporting_enabled to false:
analytics:
reporting_enabled: false
To disable reporting with a CLI flag, start Loki with:
-reporting.enabled=false
To disable reporting with the Helm chart, set the following values:
loki:
analytics:
reporting_enabled: false
For all analytics configuration options, refer to the analytics configuration reference.