Skip to content

Commit

Permalink
Update section for configuring telemetry data types (#339)
Browse files Browse the repository at this point in the history
After recent changed, not all of the collected telemetry data is being sent by default. This change updates the "Disable particular types of telemetry" configuration section to reflect the current state.
  • Loading branch information
dmitryax authored Dec 13, 2021
1 parent 96ba970 commit f3c4cee
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docs/advanced-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,20 +63,20 @@ environment: production

## Disable particular types of telemetry

By default all telemetry data (metrics, traces and logs) is collected from the
Kubernetes cluster and sent to one of (or both) configured destinations. It's
possible to disable any kind of telemetry for a specific destination. For
example, the following configuration will send logs to Splunk Platform and
metrics and traces to Splunk Observability assuming that both destinations are
configured properly.
By default only metrics and traces are sent to Splunk Observability destination,
and only logs are sent to Splunk Platform destination. It's possible to enable
or disable any kind of telemetry for a specific destination. For example, with
the following configuration Splunk OTel Collector will send all collected
telemetry data to Splunk Observability and Splunk Platform assuming they are
both properly configured.

```yaml
splunkObservability:
metricsEnabled: true
tracesEnabled: true
logsEnabled: false
logsEnabled: true
splunkPlatform:
metricsEnabled: false
metricsEnabled: true
logsEnabled: true
```

Expand Down

0 comments on commit f3c4cee

Please sign in to comment.