Skip to content

Commit bd7e550

Browse files
authored
Commented out to disabled default exporter (#168)
1 parent 90ca173 commit bd7e550

File tree

2 files changed

+20
-17
lines changed

2 files changed

+20
-17
lines changed

charts/openobserve-collector/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.3.30
18+
version: 0.4.0
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/openobserve-collector/values.yaml

Lines changed: 19 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,19 @@
22
# This is a YAML-formatted file.
33
# Declare variables to be passed into your templates.
44

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: {}
1518

1619
k8sCluster: "cluster1"
1720

@@ -308,12 +311,12 @@ agent:
308311
receivers: [filelog/std]
309312
processors:
310313
[memory_limiter, resourcedetection, attributes, k8sattributes, batch]
311-
exporters: [otlphttp/openobserve]
314+
exporters: [] # Define your exporters in the exporters section above
312315
metrics:
313316
receivers: [kubeletstats, hostmetrics]
314317
processors:
315318
[memory_limiter, resourcedetection, attributes, k8sattributes, batch]
316-
exporters: [otlphttp/openobserve]
319+
exporters: [] # Define your exporters in the exporters section above
317320

318321
gateway:
319322
enabled: true
@@ -558,19 +561,19 @@ gateway:
558561
receivers: [k8sobjects/events]
559562
processors:
560563
[memory_limiter, resourcedetection, attributes, k8sattributes, batch]
561-
exporters: [otlphttp/openobserve_k8s_events]
564+
exporters: [] # Define your exporters in the exporters section above
562565
logs/k8s_pods:
563566
receivers: [k8sobjects/pods]
564567
processors:
565568
[memory_limiter, resourcedetection, attributes, k8sattributes, batch]
566-
exporters: [otlphttp/openobserve]
569+
exporters: [] # Define your exporters in the exporters section above
567570
metrics:
568571
receivers: [k8s_cluster, servicegraph, prometheus]
569572
processors:
570573
[memory_limiter, resourcedetection, attributes, k8sattributes, batch]
571-
exporters: [otlphttp/openobserve]
574+
exporters: [] # Define your exporters in the exporters section above
572575
traces:
573576
receivers: [otlp]
574577
processors:
575578
[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

Comments
 (0)