From 4340c72345030529c94040f1fab715f5edfe61d4 Mon Sep 17 00:00:00 2001 From: Zach Leslie Date: Tue, 28 Jun 2022 17:22:53 +0000 Subject: [PATCH] Include docs on how to disable the usage report --- docs/tempo/website/configuration/_index.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/tempo/website/configuration/_index.md b/docs/tempo/website/configuration/_index.md index cd1805d4b155..050ec2a1aefa 100644 --- a/docs/tempo/website/configuration/_index.md +++ b/docs/tempo/website/configuration/_index.md @@ -17,6 +17,7 @@ This document explains the configuration options for Tempo as well as the detail - [storage](#storage) - [memberlist](#memberlist) - [overrides](#overrides) + - [usage-report](#usage-report) - [search](#search) #### Use environment variables in the configuration @@ -1110,3 +1111,19 @@ search_enabled: true ``` Additional search-related settings are available in the [distributor](#distributor) and [ingester](#ingester) sections. + +## Usage-report + +By default, Tempo will report anonymous usage data to Grafana Labs concerning +the shape of a deployment. This data is used to determine how common +the deployment of certain features are, or if a feature flag has been enabled, +replication factor or compression levels, etc. + +The reporting is controlled by a configuration option. To disable the +automatic reporting of this generic information, the following configuration +can be used. + +```yaml +usage_report: + reporting_enabled: false +```