Created
August 13, 2025 03:36
-
-
Save sneal/9816c7a21a5382e673dc1f8c5ec3788b to your computer and use it in GitHub Desktop.
TPCF OTEL Config example for Splunk
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| processors: | |
| memory_limiter: | |
| check_interval: 1s | |
| limit_mib: 4000 | |
| spike_limit_mib: 800 | |
| batch: | |
| send_batch_size: 8192 | |
| timeout: 1s | |
| exporters: | |
| splunk_hec: | |
| token: super-secret-token | |
| endpoint: https://splunk.lab.exmaple.com:8088/services/collector | |
| source: otel | |
| sourcetype: otel | |
| index: tpcf | |
| timeout: 10s | |
| tls: | |
| insecure_skip_verify: true | |
| service: | |
| pipelines: | |
| traces: | |
| processors: | |
| - memory_limiter | |
| - batch | |
| exporters: | |
| - splunk_hec | |
| metrics: | |
| processors: | |
| - memory_limiter | |
| - batch | |
| exporters: | |
| - splunk_hec | |
| logs: | |
| processors: | |
| - memory_limiter | |
| - batch | |
| exporters: | |
| - splunk_hec |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment