@@ -34,17 +34,21 @@ Create the `ACCESS_TOKEN` and `REALM` environment variables to use in the procee
3434
3535{{< tabs >}}
3636{{% tab name="Export ACCESS TOKEN" %}}
37+
3738``` bash
3839export ACCESS_TOKEN=" <replace_with_O11y-Workshop-ACCESS_TOKEN>"
3940```
41+
4042{{% /tab %}}
4143{{< /tabs >}}
4244
4345{{< tabs >}}
4446{{% tab name="Export REALM" %}}
47+
4548``` bash
4649export REALM=" <replace_with_REALM>"
4750```
51+
4852{{% /tab %}}
4953{{< /tabs >}}
5054
@@ -58,7 +62,7 @@ helm repo add splunk-otel-collector-chart https://signalfx.github.io/splunk-otel
5862```
5963
6064{{% /tab %}}
61- {{% tab name="Helm Repo Add Output" lang="text" %}}
65+ {{% tab name="Helm Repo Add Output" %}}
6266Using ACCESS_TOKEN={REDACTED}
6367Using REALM=eu0
6468"splunk-otel-collector-chart" has been added to your repositories
@@ -74,6 +78,7 @@ Install the OpenTelemetry Collector Helm chart with the following commands, do *
7478
7579{{< tabs >}}
7680{{% tab name="Helm Install" %}}
81+
7782``` bash
7883helm install splunk-otel-collector \
7984--set=" splunkObservability.realm=$REALM " \
@@ -86,8 +91,11 @@ helm install splunk-otel-collector \
8691splunk-otel-collector-chart/splunk-otel-collector \
8792-f ~ /workshop/k3s/otel-collector.yaml
8893```
94+
8995{{% /tab %}}
90- {{% tab name="Helm Install Output" lang="text" %}}
96+ {{% tab name="Helm Install Output" %}}
97+
98+ ``` text
9199Using ACCESS_TOKEN={REDACTED}
92100Using REALM=eu0
93101NAME: splunk-otel-collector
@@ -96,8 +104,11 @@ NAMESPACE: default
96104STATUS: deployed
97105REVISION: 1
98106TEST SUITE: None
107+ ```
108+
99109{{% /tab %}}
100- {{% tab name="Install Network Explorer" lang="zsh" %}}
110+ {{% tab name="Install Network Explorer" %}}
111+
101112``` bash
102113helm install splunk-otel-collector \
103114--set=" splunkObservability.realm=$REALM " \
@@ -116,6 +127,7 @@ helm install splunk-otel-collector \
116127splunk-otel-collector-chart/splunk-otel-collector \
117128-f ~ /workshop/k3s/otel-collector.yaml
118129```
130+
119131{{% /tab %}}
120132{{< /tabs >}}
121133
@@ -131,10 +143,14 @@ kubectl get pods
131143```
132144
133145{{% /tab %}}
134- {{% tab name="Kubectl Get Pods Output" lang="text" %}}
146+ {{% tab name="Kubectl Get Pods Output" %}}
147+
148+ ``` text
135149NAME READY STATUS RESTARTS AGE
136150splunk-otel-collector-agent-2sk6k 0/1 Running 0 10s
137151splunk-otel-collector-k8s-cluster-receiver-6956d4446f-gwnd7 0/1 Running 0 10s
152+ ```
153+
138154{{% /tab %}}
139155{{< /tabs >}}
140156
@@ -150,7 +166,7 @@ kubectl logs -l app=splunk-otel-collector -f --container otel-collector
150166```
151167
152168{{% /tab %}}
153- {{% tab name="Kubectl Logs Output" lang="text" %}}
169+ {{% tab name="Kubectl Logs Output" %}}
1541702021-03-21T16:11:10.900Z INFO service/service.go:364 Starting receivers...
1551712021-03-21T16:11:10.900Z INFO builder/receivers_builder.go:70 Receiver is starting... {"component_kind": "receiver", "component_type": "prometheus", "component_name": "prometheus"}
1561722021-03-21T16:11:11.009Z INFO builder/receivers_builder.go:75 Receiver started. {"component_kind": "receiver", "component_type": "prometheus", "component_name": "prometheus"}
@@ -187,9 +203,11 @@ Validate that your cluster is discovered and reporting by finding your cluster (
187203
188204{{< tabs >}}
189205{{% tab name="Echo Cluster Name" %}}
206+
190207``` bash
191208echo $( hostname) -k3s-cluster
192209```
210+
193211{{% /tab %}}
194212{{< /tabs >}}
195213
0 commit comments