-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change interface to be able to send data to Splunk Platform
This change introduces ability to send data to Splunk Enterprise/Cloud and to Splunk Observability. Most of the documentation and configurations are updated but the change set as kept to minimal required changed.
- Loading branch information
Showing
54 changed files
with
718 additions
and
239 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
clusterName: fake-cluster | ||
splunkRealm: fake-realm | ||
splunkAccessToken: fake-token | ||
splunkObservability: | ||
realm: fake-realm | ||
accessToken: fake-token | ||
|
||
tracesEnabled: false | ||
metricsEnabled: false |
5 changes: 3 additions & 2 deletions
5
helm-charts/splunk-otel-collector/ci/sampler-gateway-env-vars-java-logs-values.yaml
This file contains 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
1 change: 1 addition & 0 deletions
1
helm-charts/splunk-otel-collector/ci/use-custom-gateway-values.yaml
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{{- if eq (include "splunk-otel-collector.splunkPlatformEnabled" .) "true" }} | ||
Splunk OpenTelemetry Connector is installed and configured to send data to Splunk Platform endpoint "{{ .Values.splunkPlatform.endpoint }}". | ||
{{ end }} | ||
{{- if eq (include "splunk-otel-collector.splunkO11yEnabled" .) "true" }} | ||
Splunk OpenTelemetry Connector is installed and configured to send data to Splunk Observability realm {{ include "splunk-otel-collector.o11yRealm" . }}. | ||
{{ end }} | ||
|
||
{{- if .Values.splunkRealm }} | ||
[WARNING] "splunkRealm" parameter is deprecated, please use "splunkObservability.realm" instead. | ||
Upgrade guidelines: https://github.com/signalfx/splunk-otel-collector-chart#0353-to-0360 | ||
{{ end }} | ||
{{- if .Values.splunkAccessToken }} | ||
[WARNING] "splunkAccessToken" parameter is deprecated, please use "splunkObservability.accessToken" instead. | ||
Upgrade guidelines: https://github.com/signalfx/splunk-otel-collector-chart#0353-to-0360 | ||
{{ end }} | ||
{{- if .Values.ingestUrl }} | ||
[WARNING] "ingestUrl" parameter is deprecated, please use "splunkObservability.ingestUrl" instead. | ||
Upgrade guidelines: https://github.com/signalfx/splunk-otel-collector-chart#0353-to-0360 | ||
{{ end }} | ||
{{- if .Values.apiUrl }} | ||
[WARNING] "apiUrl" parameter is deprecated, please use "splunkObservability.apiUrl" instead. | ||
Upgrade guidelines: https://github.com/signalfx/splunk-otel-collector-chart#0353-to-0360 | ||
{{ end }} | ||
{{- if not (empty .Values.metricsEnabled) }} | ||
[WARNING] "metricsEnabled" parameter is deprecated, please use "splunkObservability.metricsEnabled" instead. | ||
Upgrade guidelines: https://github.com/signalfx/splunk-otel-collector-chart#0353-to-0360 | ||
{{ end }} | ||
{{- if not (empty .Values.tracesEnabled) }} | ||
[WARNING] "tracesEnabled" parameter is deprecated, please use "splunkObservability.tracesEnabled" instead. | ||
Upgrade guidelines: https://github.com/signalfx/splunk-otel-collector-chart#0353-to-0360 | ||
{{ end }} | ||
{{- if not (empty .Values.logsEnabled) }} | ||
[WARNING] "logsEnabled" parameter is deprecated, please use "splunkObservability.logsEnabled" instead. | ||
Upgrade guidelines: https://github.com/signalfx/splunk-otel-collector-chart#0353-to-0360 | ||
{{ end }} |
Oops, something went wrong.