Skip to content

Commit fb630d4

Browse files
committed
Update CDN
1 parent 17a7ba3 commit fb630d4

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docs/send-data/opentelemetry-collector/install-collector/linux.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ You can install our OpenTelemetry Collector using one of the following methods:
3838

3939
1. [**New UI**](/docs/get-started/sumo-logic-ui). In the Sumo Logic main menu select **Data Management**, and then under **Data Collection** select **OpenTelemetry Collection**. You can also click the **Go To...** menu at the top of the screen and select **OpenTelemetry Collection**. <br/>[**Classic UI**](/docs/get-started/sumo-logic-ui-classic). In the main Sumo Logic menu, select **Manage Data > Collection > OpenTelemetry Collection**.
4040
1. On the OpenTelemetry Collection page, click **Add Collector**.
41-
1. On the left panel, select **Linux** as the platform.<br/> <img src={useBaseUrl('img/send-data/opentelemetry-collector/linux-terminal.png')} alt="linux-terminal" style={{border: '1px solid gray'}} width="900"/>
41+
1. On the left panel, select **Linux** as the platform.<br/> <img src={useBaseUrl('img/send-data/opentelemetry-collector/linux-install-ui.png')} alt="linux-terminal" style={{border: '1px solid gray'}} width="900"/>
4242
1. Select/create installation token and customize your tags.
4343
1. (Optional) In the **Collector Settings**, select the **Ephemeral** checkbox to auto-delete your collector after 12 hours, and select the **Locally Manage Collector** checkbox if you want to configure, maintain, and monitor your collector locally.
4444
1. Copy the command and execute it in your system terminal where the collector needs to be installed.<br/> <img src={useBaseUrl('img/send-data/opentelemetry-collector/linux-terminal-installation.png')} alt="execute command in terminal" width="900"/>
@@ -63,11 +63,11 @@ You can run the script in two ways:
6363

6464
* By piping `curl` straight into `bash`:
6565
```bash
66-
curl -Ls https://github.com/SumoLogic/sumologic-otel-collector-packaging/releases/latest/download/install.sh | sudo -E bash -s -- --tag "host.group=default" --tag "deployment.environment=default"
66+
sudo curl -sL https://download-otel.sumologic.com/latest/download/install.sh | sudo -E bash -s -- --tag "host.group=default" --tag "deployment.environment=default"
6767
```
6868
* By first downloading the script, inspecting its contents for security, and then running it:
6969
```bash
70-
curl -Lso install-otelcol-sumo.sh https://github.com/SumoLogic/sumologic-otel-collector-packaging/releases/latest/download/install.sh
70+
sudo curl -sL https://download-otel.sumologic.com/latest/download/install.sh
7171
sudo -E bash ./install-otelcol-sumo.sh
7272
```
7373

@@ -320,7 +320,7 @@ Service need to be restarted in order to apply the changes.
320320
To install FIPS compliant binary, you should add `--fips` switch to installation command, so it will look like the following:
321321

322322
```bash
323-
curl -Ls https://github.com/SumoLogic/sumologic-otel-collector-packaging/releases/latest/download/install.sh | SUMOLOGIC_INSTALLATION_TOKEN="TOKEN" sudo -E bash -s -- --tag "host.group=default" --tag "deployment.environment=default" --fips && sudo otelcol-sumo --config=/etc/otelcol-sumo/sumologic.yaml --config "glob:/etc/otelcol-sumo/conf.d/*.yaml"
323+
sudo curl -sL https://download-otel.sumologic.com/latest/download/install.sh | SUMOLOGIC_INSTALLATION_TOKEN="TOKEN" sudo -E bash -s -- --tag "host.group=default" --tag "deployment.environment=default" --fips && sudo otelcol-sumo --config=/etc/otelcol-sumo/sumologic.yaml --config "glob:/etc/otelcol-sumo/conf.d/*.yaml"
324324
```
325325

326326
Refer to [BoringCrypto and FIPS compliance](https://github.com/SumoLogic/sumologic-otel-collector/blob/main/docs/fips.md) in our repository for more details.
@@ -334,13 +334,13 @@ The recommended way to uninstall the OpenTelemetry Collector depends on how you
334334
If you installed the Collector with the install script, you can this command to uninstall the Collector:
335335

336336
```bash
337-
curl -Ls https://github.com/SumoLogic/sumologic-otel-collector-packaging/releases/latest/download/install.sh | sudo -E bash -s -- -u -y
337+
sudo curl -sL https://download-otel.sumologic.com/latest/download/install.sh | sudo -E bash -s -- -u -y
338338
```
339339

340340
You can also use flag `-p` to remove all existing configurations as well:
341341

342342
```bash
343-
curl -Ls https://github.com/SumoLogic/sumologic-otel-collector-packaging/releases/latest/download/install.sh | sudo -E bash -s -- -u -y -p
343+
sudo curl -sL https://download-otel.sumologic.com/latest/download/install.sh | sudo -E bash -s -- -u -y -p
344344
```
345345

346346
### Manual step-by-step Uninstall
@@ -362,7 +362,7 @@ First, you have to upgrade the Collector's version. The way you should do it, de
362362
Running install script will simply upgrade collector to the latest version:
363363

364364
```bash
365-
curl -Ls https://github.com/SumoLogic/sumologic-otel-collector-packaging/releases/latest/download/install.sh | sudo bash
365+
sudo curl -sL https://download-otel.sumologic.com/latest/download/install.sh | sudo bash
366366
```
367367

368368
:::note
532 KB
Loading
535 KB
Loading
572 KB
Loading

0 commit comments

Comments
 (0)