|
2 | 2 | # This is a YAML-formatted file. |
3 | 3 | # Declare variables to be passed into your templates. |
4 | 4 |
|
5 | | -exporters: |
6 | | - otlphttp/openobserve: |
7 | | - endpoint: https://api.openobserve.ai/api/default/ |
8 | | - headers: |
9 | | - Authorization: Basic CHANGEME_BASE64_ENCODED_AUTH |
10 | | - otlphttp/openobserve_k8s_events: |
11 | | - endpoint: https://api.openobserve.ai/api/default/ |
12 | | - headers: |
13 | | - Authorization: Basic CHANGEME_BASE64_ENCODED_AUTH |
14 | | - stream-name: k8s_events |
| 5 | +# Define your exporters here |
| 6 | +# Example: |
| 7 | +# exporters: |
| 8 | +# otlphttp/my_exporter: |
| 9 | +# endpoint: https://your-endpoint.com/api/default/ |
| 10 | +# headers: |
| 11 | +# Authorization: Basic YOUR_BASE64_ENCODED_AUTH |
| 12 | +# otlphttp/openobserve_k8s_events: |
| 13 | +# endpoint: https://api.openobserve.ai/api/default/ |
| 14 | +# headers: |
| 15 | +# Authorization: Basic CHANGEME_BASE64_ENCODED_AUTH |
| 16 | +# stream-name: k8s_events |
| 17 | +exporters: {} |
15 | 18 |
|
16 | 19 | k8sCluster: "cluster1" |
17 | 20 |
|
@@ -308,12 +311,12 @@ agent: |
308 | 311 | receivers: [filelog/std] |
309 | 312 | processors: |
310 | 313 | [memory_limiter, resourcedetection, attributes, k8sattributes, batch] |
311 | | - exporters: [otlphttp/openobserve] |
| 314 | + exporters: [] # Define your exporters in the exporters section above |
312 | 315 | metrics: |
313 | 316 | receivers: [kubeletstats, hostmetrics] |
314 | 317 | processors: |
315 | 318 | [memory_limiter, resourcedetection, attributes, k8sattributes, batch] |
316 | | - exporters: [otlphttp/openobserve] |
| 319 | + exporters: [] # Define your exporters in the exporters section above |
317 | 320 |
|
318 | 321 | gateway: |
319 | 322 | enabled: true |
@@ -558,19 +561,19 @@ gateway: |
558 | 561 | receivers: [k8sobjects/events] |
559 | 562 | processors: |
560 | 563 | [memory_limiter, resourcedetection, attributes, k8sattributes, batch] |
561 | | - exporters: [otlphttp/openobserve_k8s_events] |
| 564 | + exporters: [] # Define your exporters in the exporters section above |
562 | 565 | logs/k8s_pods: |
563 | 566 | receivers: [k8sobjects/pods] |
564 | 567 | processors: |
565 | 568 | [memory_limiter, resourcedetection, attributes, k8sattributes, batch] |
566 | | - exporters: [otlphttp/openobserve] |
| 569 | + exporters: [] # Define your exporters in the exporters section above |
567 | 570 | metrics: |
568 | 571 | receivers: [k8s_cluster, servicegraph, prometheus] |
569 | 572 | processors: |
570 | 573 | [memory_limiter, resourcedetection, attributes, k8sattributes, batch] |
571 | | - exporters: [otlphttp/openobserve] |
| 574 | + exporters: [] # Define your exporters in the exporters section above |
572 | 575 | traces: |
573 | 576 | receivers: [otlp] |
574 | 577 | processors: |
575 | 578 | [memory_limiter, resourcedetection, attributes, k8sattributes, batch] |
576 | | - exporters: [otlphttp/openobserve, servicegraph] |
| 579 | + exporters: [servicegraph] # Define your exporters in the exporters section above |
0 commit comments