Skip to content

Commit 7706960

Browse files
committed
Change to use curl over wget as not installed by default on macOS
1 parent 3e24ae1 commit 7706960

File tree

1 file changed

+4
-4
lines changed
  • content/en/ninja-workshops/3-opentelemetry-collector-workshops/2-advanced-collector

1 file changed

+4
-4
lines changed

content/en/ninja-workshops/3-opentelemetry-collector-workshops/2-advanced-collector/_index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,16 +50,16 @@ By the end of this workshop, you'll be familiar with configuring the OpenTelemet
5050
{{% tab title="Splunk Workshop Instance" %}}
5151

5252
```bash
53-
wget https://github.com/signalfx/splunk-otel-collector/releases/download/{{< otel-version >}}/otelcol_linux_amd64 -O otelcol && \
54-
wget https://github.com/splunk/observability-workshop/raw/refs/heads/main/workshop/ninja/advanced-otel/loadgen/build/loadgen-linux-amd64 -O loadgen && \
53+
curl -L https://github.com/signalfx/splunk-otel-collector/releases/download/v{{< otel-version >}}/otelcol_linux_amd64 -o otelcol && \
54+
curl -L https://github.com/splunk/observability-workshop/raw/refs/heads/main/workshop/ninja/advanced-otel/loadgen/build/loadgen-linux-amd64 -o loadgen
5555
```
5656

5757
{{% /tab %}}
5858
{{% tab title="Apple Silicon" %}}
5959

6060
```bash
61-
wget https://github.com/signalfx/splunk-otel-collector/releases/download/{{< otel-version >}}/otelcol_darwin_arm64 -O otelcol && \
62-
wget https://github.com/splunk/observability-workshop/raw/refs/heads/main/workshop/ninja/advanced-otel/loadgen/build/loadgen-darwin-arm64 -O loadgen
61+
curl -L https://github.com/signalfx/splunk-otel-collector/releases/download/v{{< otel-version >}}/otelcol_darwin_arm64 -o otelcol && \
62+
curl -L https://github.com/splunk/observability-workshop/raw/refs/heads/main/workshop/ninja/advanced-otel/loadgen/build/loadgen-darwin-arm64 -o loadgen
6363
```
6464

6565
{{% notice style="warning" title="macOS Users" icon="desktop" %}}

0 commit comments

Comments
 (0)