Skip to content

Commit a64352f

Browse files
authored
Merge pull request #419 from dmitchsplunk/main
fixed issues in the solving problems with o11y cloud workshop
2 parents 6e66c8a + bce92e2 commit a64352f

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

content/en/ninja-workshops/9-solving-problems-with-o11y-cloud/2-deploy-collector.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ Add the debug exporter by copying and pasting the following text to the bottom o
222222
pipelines:
223223
traces:
224224
exporters:
225-
- sapm
225+
- otlphttp
226226
- signalfx
227227
- debug
228228
```
@@ -237,6 +237,8 @@ certmanager:
237237
enabled: true
238238
operator:
239239
enabled: true
240+
operatorcrds:
241+
install: true
240242
241243
agent:
242244
config:
@@ -266,7 +268,7 @@ agent:
266268
pipelines:
267269
traces:
268270
exporters:
269-
- sapm
271+
- otlphttp
270272
- signalfx
271273
- debug
272274
```
@@ -282,7 +284,7 @@ Once the file is saved, we can apply the changes with:
282284
``` bash
283285
cd /home/splunk/workshop/tagging
284286
285-
helm upgrade splunk-otel-collector --version {{< otel-version >}} \
287+
helm upgrade splunk-otel-collector \
286288
--set="splunkObservability.realm=$REALM" \
287289
--set="splunkObservability.accessToken=$ACCESS_TOKEN" \
288290
--set="clusterName=$INSTANCE-k3s-cluster" \
@@ -320,7 +322,7 @@ We can see that the debug exporter was added to the traces pipeline, as desired:
320322
``` yaml
321323
traces:
322324
exporters:
323-
- sapm
325+
- otlphttp
324326
- signalfx
325327
- debug
326328
```

workshop/tagging/otel/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ certmanager:
55
enabled: true
66
operator:
77
enabled: true
8+
operatorcrds:
9+
install: true
810

911
agent:
1012
config:

0 commit comments

Comments
 (0)