Skip to content

Commit 879f0a0

Browse files
update other fips configs
1 parent 3cbc174 commit 879f0a0

File tree

7 files changed

+27
-19
lines changed

7 files changed

+27
-19
lines changed

cmd/otelcol/config/collector/full_config_linux.yaml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -637,11 +637,7 @@ exporters:
637637
# WARN: https://ingest.${SPLUNK_REALM}.signalfx.com does NOT support gRPC at this time; use otlphttp exporter instead
638638
otlp:
639639
endpoint: otelcol2:4317
640-
sapm:
641-
access_token: "${SPLUNK_ACCESS_TOKEN}"
642-
endpoint: "https://ingest.${SPLUNK_REALM}.signalfx.com/v2/trace"
643-
sending_queue:
644-
num_consumers: 32
640+
645641
# Enables the otlp http exporter
646642
# Full configuration here: https://github.com/open-telemetry/opentelemetry-collector/tree/main/exporter/otlphttpexporter
647643
# NOTE: These settings should be updated to the proper destination

cmd/otelcol/config/collector/gateway_config.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,11 @@ processors:
9191

9292
exporters:
9393
# Traces
94+
sapm:
95+
access_token: "${SPLUNK_ACCESS_TOKEN}"
96+
endpoint: "https://ingest.${SPLUNK_REALM}.signalfx.com/v2/trace"
97+
sending_queue:
98+
num_consumers: 32
9499
otlphttp:
95100
traces_endpoint: "${SPLUNK_INGEST_URL}/v2/trace/otlp"
96101
headers:

cmd/otelcol/fips/config/ecs_ec2_config.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,10 @@ processors:
111111

112112
exporters:
113113
# Traces
114-
sapm:
115-
access_token: "${SPLUNK_ACCESS_TOKEN}"
116-
endpoint: "https://ingest.${SPLUNK_REALM}.signalfx.com/v2/trace"
114+
otlphttp:
115+
traces_endpoint: "${SPLUNK_INGEST_URL}/v2/trace/otlp"
116+
headers:
117+
"X-SF-Token": "${SPLUNK_ACCESS_TOKEN}"
117118
# Metrics + Events
118119
signalfx:
119120
access_token: "${SPLUNK_ACCESS_TOKEN}"
@@ -142,7 +143,7 @@ service:
142143
- batch
143144
- resourcedetection
144145
#- resource/add_environment
145-
exporters: [sapm, signalfx]
146+
exporters: [otlphttp, signalfx]
146147
metrics:
147148
receivers: [hostmetrics, otlp, signalfx]
148149
processors: [memory_limiter, batch, filter, resourcedetection]

cmd/otelcol/fips/config/fargate_config.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,10 @@ processors:
8989

9090
exporters:
9191
# Traces
92-
sapm:
93-
access_token: "${SPLUNK_ACCESS_TOKEN}"
94-
endpoint: "https://ingest.${SPLUNK_REALM}.signalfx.com/v2/trace"
92+
otlphttp:
93+
traces_endpoint: "${SPLUNK_INGEST_URL}/v2/trace/otlp"
94+
headers:
95+
"X-SF-Token": "${SPLUNK_ACCESS_TOKEN}"
9596
# Metrics + Events
9697
signalfx:
9798
access_token: "${SPLUNK_ACCESS_TOKEN}"
@@ -120,7 +121,7 @@ service:
120121
- batch
121122
- resourcedetection
122123
#- resource/add_environment
123-
exporters: [sapm, signalfx]
124+
exporters: [otlphttp, signalfx]
124125
metrics:
125126
receivers: [otlp, signalfx, prometheus/internal]
126127
processors: [memory_limiter, batch, resourcedetection]

cmd/otelcol/fips/config/gateway_config.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ receivers:
5353
# Whether to preserve incoming access token and use instead of exporter token
5454
# default = false
5555
#access_token_passthrough: true
56+
otlphttp:
57+
traces_endpoint: "${SPLUNK_INGEST_URL}/v2/trace/otlp"
58+
headers:
59+
"X-SF-Token": "${SPLUNK_ACCESS_TOKEN}"
5660
signalfx:
5761
endpoint: "${SPLUNK_LISTEN_INTERFACE}:9943"
5862
# Whether to preserve incoming access token and use instead of exporter token
@@ -94,6 +98,10 @@ exporters:
9498
endpoint: "https://ingest.${SPLUNK_REALM}.signalfx.com/v2/trace"
9599
sending_queue:
96100
num_consumers: 32
101+
otlphttp:
102+
traces_endpoint: "${SPLUNK_INGEST_URL}/v2/trace/otlp"
103+
headers:
104+
"X-SF-Token": "${SPLUNK_ACCESS_TOKEN}"
97105
# Metrics + Events
98106
signalfx:
99107
access_token: "${SPLUNK_ACCESS_TOKEN}"
@@ -136,7 +144,7 @@ service:
136144
- memory_limiter
137145
- batch
138146
#- resource/add_environment
139-
exporters: [sapm]
147+
exporters: [otlphttp]
140148
metrics:
141149
receivers: [otlp, signalfx]
142150
processors: [memory_limiter, batch]

deployments/nomad/otel-agent.nomad

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -201,9 +201,6 @@ processors:
201201
override: true
202202
timeout: 10s
203203
exporters:
204-
sapm:
205-
access_token: ${SPLUNK_ACCESS_TOKEN}
206-
endpoint: https://ingest.${SPLUNK_REALM}.signalfx.com/v2/trace
207204
signalfx:
208205
access_token: ${SPLUNK_ACCESS_TOKEN}
209206
api_url: https://api.${SPLUNK_REALM}.signalfx.com
@@ -245,7 +242,7 @@ service:
245242
traces:
246243
exporters:
247244
- debug
248-
- sapm
245+
- otlphttp
249246
- signalfx
250247
processors:
251248
- memory_limiter

deployments/nomad/otel-gateway.nomad

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ service:
225225
- signalfx
226226
traces:
227227
exporters:
228-
- sapm
228+
- otlphttp
229229
- debug
230230
processors:
231231
- memory_limiter

0 commit comments

Comments
 (0)