Skip to content

Commit 3d6b811

Browse files
authored
Merge branch 'master' into jts-5948-fix-influxdb3-install
2 parents 04a1006 + df5eef7 commit 3d6b811

File tree

5 files changed

+247
-37
lines changed

5 files changed

+247
-37
lines changed

content/telegraf/v1/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: >
55
time series platform, used to collect and report metrics. Telegraf supports four categories of plugins -- input, output, aggregator, and processor.
66
menu:
77
telegraf_v1:
8-
name: Telegraf v1.32
8+
name: Telegraf v1.34
99
weight: 1
1010
related:
1111
- /resources/videos/intro-to-telegraf/

content/telegraf/v1/install.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -96,16 +96,16 @@ uses `sha256` to compare it to the checksum:
9696

9797
```bash
9898
curl -s --location -O \
99-
"https://dl.influxdata.com/telegraf/releases/telegraf-${telegraf_latest_patches_v1}_linux_amd64.tar.gz"
100-
echo "260bc3170dbd6cce67575c1215a0b89b8447945106e2943d74e617d06b750c03 telegraf-${telegraf_latest_patches_v1}_linux_amd64.tar.gz" \
99+
"https://dl.influxdata.com/telegraf/releases/telegraf-{{% latest-patch %}}_linux_amd64.tar.gz"
100+
echo "21e781cc2352713e4eabf0931e3eeea640a2014850a33ea04f86b4dc288d6add telegraf-{{% latest-patch %}}_linux_amd64.tar.gz" \
101101
| sha256sum -c -
102102
```
103103

104104
{{% /code-placeholders %}}
105105

106106
Replace the following:
107107

108-
- {{% code-placeholder-key %}}`260bc3170dbd6cce67575c1215a0b89b8447945106e2943d74e617d06b750c03`{{% /code-placeholder-key %}}:
108+
- {{% code-placeholder-key %}}`21e781cc2352713e4eabf0931e3eeea640a2014850a33ea04f86b4dc288d6add`{{% /code-placeholder-key %}}:
109109
the **SHA256:** checksum value that you copied from the downloads page
110110

111111
If the checksums match, the output is the following; otherwise, an error message.
@@ -313,15 +313,15 @@ Choose from the following options to install Telegraf binary files for Linux AMD
313313
```bash
314314
curl -s --location -O \
315315
https://dl.influxdata.com/telegraf/releases/telegraf-{{% latest-patch %}}_linux_amd64.tar.gz \
316-
&& echo "260bc3170dbd6cce67575c1215a0b89b8447945106e2943d74e617d06b750c03 telegraf-{{% latest-patch %}}_linux_amd64.tar.gz" \
316+
&& echo "21e781cc2352713e4eabf0931e3eeea640a2014850a33ea04f86b4dc288d6add telegraf-{{% latest-patch %}}_linux_amd64.tar.gz" \
317317
| sha256sum -c -
318318
```
319319
320320
{{% /code-placeholders %}}
321321
322322
Replace the following:
323323
324-
- {{% code-placeholder-key %}}`260bc3170dbd6cce67575c1215a0b89b8447945106e2943d74e617d06b750c03`{{% /code-placeholder-key %}}: the SHA checksum from the [downloads page](https://www.influxdata.com/downloads/#telegraf)
324+
- {{% code-placeholder-key %}}`21e781cc2352713e4eabf0931e3eeea640a2014850a33ea04f86b4dc288d6add`{{% /code-placeholder-key %}}: the SHA checksum from the [downloads page](https://www.influxdata.com/downloads/#telegraf)
325325
326326
<!---------- END Linux binaries AMD ---------->
327327
{{% /tab-content %}}
@@ -339,14 +339,14 @@ Choose from the following options to install Telegraf binary files for Linux ARM
339339
```bash
340340
curl -s --location -O \
341341
https://dl.influxdata.com/telegraf/releases/telegraf-{{% latest-patch %}}_linux_arm64.tar.gz \
342-
&& echo "f0d8ccae539afa04b171d5268dbab21eef58bc51b5437689e347619e2097c824 telegraf-{{% latest-patch %}}_linux_arm64.tar.gz" \
342+
&& echo "7782bbcf50e67e73229fd0703c532d733e4fa259aa4b246debd012421f65c969 telegraf-{{% latest-patch %}}_linux_arm64.tar.gz" \
343343
| sha256sum -c -
344344
```
345345
{{% /code-placeholders %}}
346346
347347
Replace the following:
348348
349-
- {{% code-placeholder-key %}}`f0d8ccae539afa04b171d5268dbab21eef58bc51b5437689e347619e2097c824`{{% /code-placeholder-key %}}: the SHA checksum from the [downloads page](https://www.influxdata.com/downloads/#telegraf)
349+
- {{% code-placeholder-key %}}`7782bbcf50e67e73229fd0703c532d733e4fa259aa4b246debd012421f65c969`{{% /code-placeholder-key %}}: the SHA checksum from the [downloads page](https://www.influxdata.com/downloads/#telegraf)
350350
351351
<!---------- END Linux binaries ARM ---------->
352352
{{% /tab-content %}}

0 commit comments

Comments
 (0)