Skip to content

Commit b2b83e9

Browse files
authored
Merge branch 'influxdata:master' into master
2 parents 4f84492 + 65e95e6 commit b2b83e9

197 files changed

Lines changed: 6818 additions & 3225 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.circleci/config.yml

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ executors:
88
working_directory: '/go/src/github.com/influxdata/telegraf'
99
resource_class: large
1010
docker:
11-
- image: 'quay.io/influxdb/telegraf-ci:1.26.3'
11+
- image: 'quay.io/influxdb/telegraf-ci:1.26.4'
1212
environment:
1313
GOFLAGS: -p=4
1414
mac:
@@ -199,6 +199,12 @@ jobs:
199199
- check-changed-files-or-halt
200200
- run: git config --system core.longpaths true
201201
- run: choco feature enable -n allowGlobalConfirmation
202+
- run:
203+
name: Disable Windows HNS excluded port ranges
204+
shell: powershell.exe
205+
command: |
206+
reg add "HKLM\SYSTEM\CurrentControlSet\Services\hns\State" /v EnableExcludedPortRange /d 0 /f
207+
Restart-Service hns -Force
202208
- run: 'sh ./scripts/installgo_windows.sh'
203209
- run: choco install mingw
204210
- run: echo 'export PATH="$PATH:/c/ProgramData/mingw64/mingw64/bin"' >> $BASH_ENV
@@ -354,26 +360,31 @@ jobs:
354360
nightly: << parameters.nightly >>
355361
nightly:
356362
executor: telegraf-ci
363+
environment:
364+
AWS_REGION: auto
365+
AWS_REQUEST_CHECKSUM_CALCULATION: when_required
357366
steps:
358367
- attach_workspace:
359368
at: '/build'
360369
- run:
361370
command: |
362-
aws s3 sync /build/dist s3://dl.influxdata.com/telegraf/nightlies/ \
371+
aws s3 sync /build/dist s3://dl-influxdata-com/telegraf/nightlies/ \
363372
--exclude "*" \
364373
--include "*.tar.gz" \
365374
--include "*.deb" \
366375
--include "*.rpm" \
367-
--include "*.zip" \
368-
--acl public-read
376+
--include "*.zip"
369377
release:
370378
executor: telegraf-ci
379+
environment:
380+
AWS_REGION: auto
381+
AWS_REQUEST_CHECKSUM_CALCULATION: when_required
371382
steps:
372383
- attach_workspace:
373384
at: '/build'
374385
- run:
375386
command: |
376-
aws s3 sync /build/dist s3://dl.influxdata.com/telegraf/releases/ \
387+
aws s3 sync /build/dist s3://dl-influxdata-com/telegraf/releases/ \
377388
--exclude "*" \
378389
--include "telegraf*.DIGESTS" \
379390
--include "telegraf*.digests" \
@@ -382,8 +393,7 @@ jobs:
382393
--include "telegraf*.dmg" \
383394
--include "telegraf*.rpm" \
384395
--include "telegraf*.tar.gz" \
385-
--include "telegraf*.zip" \
386-
--acl public-read
396+
--include "telegraf*.zip"
387397
docker-nightly:
388398
machine:
389399
image: ubuntu-2204:current

.github/workflows/readme-linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- uses: actions/setup-go@v6
1717
with:
18-
go-version: '1.26.3'
18+
go-version: '1.26.4'
1919
- uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0

CHANGELOG.md

Lines changed: 142 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,148 @@
11
<!-- markdownlint-disable MD013 MD024 -->
22
# Changelog
33

4+
## v1.39.0 [2026-06-08]
5+
6+
### New Plugins
7+
8+
- [#18790](https://github.com/influxdata/telegraf/pull/18790) `inputs.gnmi_listener` Add plugin
9+
10+
### Features
11+
12+
- [#18909](https://github.com/influxdata/telegraf/pull/18909) `agent` Accept TELEGRAF_CONTROLLER_TOKEN environment variable
13+
- [#18744](https://github.com/influxdata/telegraf/pull/18744) `inputs.azure_monitor` Support secrets for client_secret
14+
- [#18921](https://github.com/influxdata/telegraf/pull/18921) `inputs.directory_monitor` Allow to preserve timestamps when moving file
15+
- [#18338](https://github.com/influxdata/telegraf/pull/18338) `inputs.exec` Convert 'commands' to already parsed argument lists
16+
- [#18740](https://github.com/influxdata/telegraf/pull/18740) `inputs.fritzbox` Add support for fiber lines
17+
- [#18987](https://github.com/influxdata/telegraf/pull/18987) `inputs.http_response` Add secret token support
18+
- [#18739](https://github.com/influxdata/telegraf/pull/18739) `inputs.huebridge` Add brightness and color fields to light metric
19+
- [#18571](https://github.com/influxdata/telegraf/pull/18571) `inputs.internal` Add counters for failing writes and gathers
20+
- [#19038](https://github.com/influxdata/telegraf/pull/19038) `inputs.kafka_consumer` Add consumer_fetch_min and consumer_fetch_max_wait options
21+
- [#18532](https://github.com/influxdata/telegraf/pull/18532) `inputs.mem` Add extended memory statistics
22+
- [#18871](https://github.com/influxdata/telegraf/pull/18871) `inputs.modbus` Add workaround for devices with smaller batch size
23+
- [#18690](https://github.com/influxdata/telegraf/pull/18690) `inputs.nvidia_smi` Add schema v13 support
24+
- [#18643](https://github.com/influxdata/telegraf/pull/18643) `inputs.opcua` Add locales configuration option
25+
- [#18831](https://github.com/influxdata/telegraf/pull/18831) `inputs.opcua` Discover nodes by browse-path glob patterns
26+
- [#18465](https://github.com/influxdata/telegraf/pull/18465) `inputs.opcua_listener` Allow selecting the deadband mode 'None'
27+
- [#18941](https://github.com/influxdata/telegraf/pull/18941) `inputs.opcua_listener` Wire browse-based node discovery
28+
- [#18468](https://github.com/influxdata/telegraf/pull/18468) `inputs.openntpd` Add sensor and status metrics
29+
- [#18944](https://github.com/influxdata/telegraf/pull/18944) `inputs.prometheus` Add per-URL statistics on gather cycles
30+
- [#18915](https://github.com/influxdata/telegraf/pull/18915) `inputs.socket_listener` Add SSM/IGMPv3 support
31+
- [#18868](https://github.com/influxdata/telegraf/pull/18868) `inputs.system` Add hardware information
32+
- [#18834](https://github.com/influxdata/telegraf/pull/18834) `inputs.system` Add operating-system information
33+
- [#18533](https://github.com/influxdata/telegraf/pull/18533) `inputs.system` Add option to specify collected information
34+
- [#18906](https://github.com/influxdata/telegraf/pull/18906) `inputs.temp` Add setting to force thermal-zones gathering on linux
35+
- [#18457](https://github.com/influxdata/telegraf/pull/18457) `inputs.wireguard` Add endpoint field to peer metrics
36+
- [#18819](https://github.com/influxdata/telegraf/pull/18819) `inputs.x509_cert` Add field for public-key length
37+
- [#18829](https://github.com/influxdata/telegraf/pull/18829) `outputs.kafka` Add support for custom record headers
38+
- [#18826](https://github.com/influxdata/telegraf/pull/18826) `outputs.mongodb` Allow specifying metadata fields
39+
- [#18784](https://github.com/influxdata/telegraf/pull/18784) `outputs.opensearch` Implement startup-error-behavior options
40+
- [#18823](https://github.com/influxdata/telegraf/pull/18823) `outputs.opentelemetry` Add proxy support
41+
- [#18980](https://github.com/influxdata/telegraf/pull/18980) `outputs.opentelemetry` Add support for token authentication
42+
- [#19036](https://github.com/influxdata/telegraf/pull/19036) `outputs.sql` Add oracle driver
43+
- [#18904](https://github.com/influxdata/telegraf/pull/18904) `parsers.avro` Implement ParserTimeFuncPlugin interface
44+
- [#18945](https://github.com/influxdata/telegraf/pull/18945) `parsers.binary` Implement ParserTimeFuncPlugin interface
45+
- [#18903](https://github.com/influxdata/telegraf/pull/18903) `parsers.csv` Implement ParserTimeFuncPlugin interface
46+
- [#18946](https://github.com/influxdata/telegraf/pull/18946) `parsers.dropwizard` Implement ParserTimeFuncPlugin interface
47+
- [#18947](https://github.com/influxdata/telegraf/pull/18947) `parsers.form_urlencoded` Implement ParserTimeFuncPlugin interface
48+
- [#18948](https://github.com/influxdata/telegraf/pull/18948) `parsers.graphite` Implement ParserTimeFuncPlugin interface
49+
- [#18950](https://github.com/influxdata/telegraf/pull/18950) `parsers.grok` Implement ParserTimeFuncPlugin interface
50+
- [#18990](https://github.com/influxdata/telegraf/pull/18990) `parsers.json` Implement ParserTimeFuncPlugin interface
51+
- [#18994](https://github.com/influxdata/telegraf/pull/18994) `parsers.json_v2` Implement ParserTimeFuncPlugin interface
52+
- [#18995](https://github.com/influxdata/telegraf/pull/18995) `parsers.logfmt` Implement ParserTimeFuncPlugin interface
53+
- [#18996](https://github.com/influxdata/telegraf/pull/18996) `parsers.nagios` Implement ParserTimeFuncPlugin interface
54+
- [#18998](https://github.com/influxdata/telegraf/pull/18998) `parsers.openmetrics` Implement ParserTimeFuncPlugin interface
55+
- [#19000](https://github.com/influxdata/telegraf/pull/19000) `parsers.parquet` Implement ParserTimeFuncPlugin interface
56+
- [#19042](https://github.com/influxdata/telegraf/pull/19042) `parsers.prometheus` Implement ParserTimeFuncPlugin interface
57+
- [#19043](https://github.com/influxdata/telegraf/pull/19043) `parsers.prometheusremotewrite` Implement ParserTimeFuncPlugin interface
58+
- [#19008](https://github.com/influxdata/telegraf/pull/19008) `parsers.value` Implement ParserTimeFuncPlugin interface
59+
- [#19009](https://github.com/influxdata/telegraf/pull/19009) `parsers.wavefront` Implement ParserTimeFuncPlugin interface
60+
- [#19011](https://github.com/influxdata/telegraf/pull/19011) `parsers.xpath` Implement ParserTimeFuncPlugin interface
61+
- [#18901](https://github.com/influxdata/telegraf/pull/18901) `parsers` Add time-setting interface
62+
- [#18558](https://github.com/influxdata/telegraf/pull/18558) `processors.parser` Add strategy to merge parsed metric with parent individually
63+
- [#18786](https://github.com/influxdata/telegraf/pull/18786) `secretstores.vault` Add token authentication
64+
65+
### Bugfixes
66+
67+
- [#18918](https://github.com/influxdata/telegraf/pull/18918) `agent` Skip output buffer initialization in test mode
68+
- [#19033](https://github.com/influxdata/telegraf/pull/19033) `circleci` Fix destination of nightly build artifact uploads
69+
- [#18910](https://github.com/influxdata/telegraf/pull/18910) `common.tls` Set default minimum TLS version explicitly
70+
- [#17664](https://github.com/influxdata/telegraf/pull/17664) `config` Reject invalid tagpass and tagdrop types
71+
- [#18913](https://github.com/influxdata/telegraf/pull/18913) `input.temp` Ignore EAGAIN on unavailable thermal-zones
72+
- [#18988](https://github.com/influxdata/telegraf/pull/18988) `inputs.docker_log` Don't use follow when tailing docker logs
73+
- [#19001](https://github.com/influxdata/telegraf/pull/19001) `inputs.docker_log` Guard concurrent access to the state map
74+
- [#19004](https://github.com/influxdata/telegraf/pull/19004) `inputs.docker_log` Read only new entries if from_beginning is false
75+
- [#19006](https://github.com/influxdata/telegraf/pull/19006) `inputs.docker_log` Restore following the log-stream and keep the state
76+
- [#18902](https://github.com/influxdata/telegraf/pull/18902) `inputs.netflow` Parse all counter records
77+
- [#18683](https://github.com/influxdata/telegraf/pull/18683) `inputs.opcua_listener` Defer node ID parsing until after server connection
78+
- [#18870](https://github.com/influxdata/telegraf/pull/18870) `inputs.ping` Use deterministic packet IDs to prevent collisions
79+
- [#18911](https://github.com/influxdata/telegraf/pull/18911) `inputs.system` Demote missing utmp debug log to trace
80+
- [#18982](https://github.com/influxdata/telegraf/pull/18982) `inputs.system` Restore n_cpu field name
81+
- [#18923](https://github.com/influxdata/telegraf/pull/18923) `inputs.webhooks.github` Restore secret field in configuration
82+
- [#18984](https://github.com/influxdata/telegraf/pull/18984) `outputs.influxdb_v2` Capture unix socket path before URL mutation
83+
- [#18908](https://github.com/influxdata/telegraf/pull/18908) `secrets` Avoid panic with empty content
84+
85+
### Dependency Updates
86+
87+
- [#18897](https://github.com/influxdata/telegraf/pull/18897) `deps` Bump cloud.google.com/go/monitoring from 1.28.0 to 1.29.0
88+
- [#18928](https://github.com/influxdata/telegraf/pull/18928) `deps` Bump cloud.google.com/go/storage from 1.62.1 to 1.62.2
89+
- [#19030](https://github.com/influxdata/telegraf/pull/19030) `deps` Bump github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/monitor/armmonitor from 0.11.0 to 0.12.0
90+
- [#18889](https://github.com/influxdata/telegraf/pull/18889) `deps` Bump github.com/IBM/sarama from 1.48.0 to 1.48.1
91+
- [#18929](https://github.com/influxdata/telegraf/pull/18929) `deps` Bump github.com/IBM/sarama from 1.48.1 to 1.49.0
92+
- [#19031](https://github.com/influxdata/telegraf/pull/19031) `deps` Bump github.com/IBM/sarama from 1.49.0 to 1.50.1
93+
- [#18881](https://github.com/influxdata/telegraf/pull/18881) `deps` Bump github.com/SAP/go-hdb from 1.16.7 to 1.16.8
94+
- [#19028](https://github.com/influxdata/telegraf/pull/19028) `deps` Bump github.com/SAP/go-hdb from 1.16.8 to 1.16.11
95+
- [#18970](https://github.com/influxdata/telegraf/pull/18970) `deps` Bump github.com/apache/inlong/inlong-sdk/dataproxy-sdk-twins/dataproxy-sdk-golang from 1.0.7 to 1.0.8
96+
- [#18880](https://github.com/influxdata/telegraf/pull/18880) `deps` Bump github.com/aws/aws-sdk-go-v2/service/ec2 from 1.300.0 to 1.301.0
97+
- [#19016](https://github.com/influxdata/telegraf/pull/19016) `deps` Bump github.com/aws/smithy-go from 1.25.1 to 1.27.0
98+
- [#18938](https://github.com/influxdata/telegraf/pull/18938) `deps` Bump github.com/bluenviron/gomavlib/v3 from 3.3.1 to 3.3.3
99+
- [#18974](https://github.com/influxdata/telegraf/pull/18974) `deps` Bump github.com/bluenviron/gomavlib/v3 from 3.3.3 to 3.3.4
100+
- [#19015](https://github.com/influxdata/telegraf/pull/19015) `deps` Bump github.com/bluenviron/gomavlib/v3 from 3.3.4 to 3.3.5
101+
- [#19023](https://github.com/influxdata/telegraf/pull/19023) `deps` Bump github.com/emiago/sipgo from 1.3.1 to 1.4.0
102+
- [#18912](https://github.com/influxdata/telegraf/pull/18912) `deps` Bump github.com/go-git/go-billy/v5 from 5.6.0 to 5.9.0
103+
- [#18930](https://github.com/influxdata/telegraf/pull/18930) `deps` Bump github.com/google/cel-go from 0.28.0 to 0.28.1
104+
- [#18976](https://github.com/influxdata/telegraf/pull/18976) `deps` Bump github.com/gopacket/gopacket from 1.5.0 to 1.6.0
105+
- [#18967](https://github.com/influxdata/telegraf/pull/18967) `deps` Bump github.com/hashicorp/consul/api from 1.34.2 to 1.34.3
106+
- [#19019](https://github.com/influxdata/telegraf/pull/19019) `deps` Bump github.com/jackc/pgx/v5 from 5.9.2 to 5.10.0
107+
- [#19024](https://github.com/influxdata/telegraf/pull/19024) `deps` Bump github.com/mdlayher/vsock from 1.2.1 to 1.3.0
108+
- [#18972](https://github.com/influxdata/telegraf/pull/18972) `deps` Bump github.com/nats-io/nats-server/v2 from 2.14.0 to 2.14.1
109+
- [#19020](https://github.com/influxdata/telegraf/pull/19020) `deps` Bump github.com/nats-io/nats-server/v2 from 2.14.1 to 2.14.2
110+
- [#18894](https://github.com/influxdata/telegraf/pull/18894) `deps` Bump github.com/nats-io/nats.go from 1.51.0 to 1.52.0
111+
- [#19022](https://github.com/influxdata/telegraf/pull/19022) `deps` Bump github.com/pion/dtls/v3 from 3.1.2 to 3.1.3
112+
- [#19018](https://github.com/influxdata/telegraf/pull/19018) `deps` Bump github.com/prometheus/common from 0.67.5 to 0.68.1
113+
- [#19025](https://github.com/influxdata/telegraf/pull/19025) `deps` Bump github.com/prometheus/prometheus from 0.311.3 to 0.312.0
114+
- [#19029](https://github.com/influxdata/telegraf/pull/19029) `deps` Bump github.com/redis/go-redis/v9 from 9.19.0 to 9.20.0
115+
- [#18997](https://github.com/influxdata/telegraf/pull/18997) `deps` Bump github.com/shirou/gopsutil/v4 from 4.26.4 to 4.26.5
116+
- [#18898](https://github.com/influxdata/telegraf/pull/18898) `deps` Bump github.com/tidwall/gjson from 1.18.0 to 1.19.0
117+
- [#18888](https://github.com/influxdata/telegraf/pull/18888) `deps` Bump github.com/vmware/govmomi from 0.53.1 to 0.54.0
118+
- [#19027](https://github.com/influxdata/telegraf/pull/19027) `deps` Bump github.com/vmware/govmomi from 0.54.0 to 0.54.1
119+
- [#18884](https://github.com/influxdata/telegraf/pull/18884) `deps` Bump go.opentelemetry.io/collector/pdata from 1.57.0 to 1.58.0
120+
- [#18975](https://github.com/influxdata/telegraf/pull/18975) `deps` Bump go.opentelemetry.io/collector/pdata from 1.58.0 to 1.59.0
121+
- [#18887](https://github.com/influxdata/telegraf/pull/18887) `deps` Bump go.step.sm/crypto from 0.77.9 to 0.79.0
122+
- [#18935](https://github.com/influxdata/telegraf/pull/18935) `deps` Bump go.step.sm/crypto from 0.79.0 to 0.81.0
123+
- [#19021](https://github.com/influxdata/telegraf/pull/19021) `deps` Bump go.step.sm/crypto from 0.81.0 to 0.81.1
124+
- [#18885](https://github.com/influxdata/telegraf/pull/18885) `deps` Bump golang.org/x/crypto from 0.50.0 to 0.51.0
125+
- [#18971](https://github.com/influxdata/telegraf/pull/18971) `deps` Bump golang.org/x/crypto from 0.51.0 to 0.52.0
126+
- [#18890](https://github.com/influxdata/telegraf/pull/18890) `deps` Bump golang.org/x/mod from 0.35.0 to 0.36.0
127+
- [#18969](https://github.com/influxdata/telegraf/pull/18969) `deps` Bump golang.org/x/net from 0.54.0 to 0.55.0
128+
- [#18896](https://github.com/influxdata/telegraf/pull/18896) `deps` Bump golang.org/x/sys from 0.43.0 to 0.44.0
129+
- [#18973](https://github.com/influxdata/telegraf/pull/18973) `deps` Bump golang.org/x/sys from 0.44.0 to 0.45.0
130+
- [#18886](https://github.com/influxdata/telegraf/pull/18886) `deps` Bump golang.org/x/term from 0.42.0 to 0.43.0
131+
- [#18891](https://github.com/influxdata/telegraf/pull/18891) `deps` Bump golang.org/x/text from 0.36.0 to 0.37.0
132+
- [#18882](https://github.com/influxdata/telegraf/pull/18882) `deps` Bump golang.org/x/tools from 0.44.0 to 0.45.0
133+
- [#18883](https://github.com/influxdata/telegraf/pull/18883) `deps` Bump google.golang.org/api from 0.277.0 to 0.278.0
134+
- [#18931](https://github.com/influxdata/telegraf/pull/18931) `deps` Bump google.golang.org/api from 0.278.0 to 0.279.0
135+
- [#18968](https://github.com/influxdata/telegraf/pull/18968) `deps` Bump google.golang.org/api from 0.279.0 to 0.280.0
136+
- [#19017](https://github.com/influxdata/telegraf/pull/19017) `deps` Bump google.golang.org/api from 0.280.0 to 0.283.0
137+
- [#18937](https://github.com/influxdata/telegraf/pull/18937) `deps` Bump google.golang.org/grpc from 1.81.0 to 1.81.1
138+
- [#18927](https://github.com/influxdata/telegraf/pull/18927) `deps` Bump k8s.io/client-go from 0.36.0 to 0.36.1
139+
- [#18893](https://github.com/influxdata/telegraf/pull/18893) `deps` Bump modernc.org/sqlite from 1.50.0 to 1.50.1
140+
- [#19026](https://github.com/influxdata/telegraf/pull/19026) `deps` Bump modernc.org/sqlite from 1.50.1 to 1.51.0
141+
- [#18933](https://github.com/influxdata/telegraf/pull/18933) `deps` Bump srebhan/label-milestone-action from 1.0.2 to 1.1.0
142+
- [#19014](https://github.com/influxdata/telegraf/pull/19014) `deps` Bump the aws-sdk-go-v2 group across 1 directory with 11 updates
143+
- [#18926](https://github.com/influxdata/telegraf/pull/18926) `deps` Bump the aws-sdk-go-v2 group with 2 updates
144+
- [#18966](https://github.com/influxdata/telegraf/pull/18966) `deps` Bump the aws-sdk-go-v2 group with 5 updates
145+
4146
## v1.38.4 [2026-05-11]
5147

6148
### Bugfixes

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,8 +270,8 @@ plugins/parsers/influx/machine.go: plugins/parsers/influx/machine.go.rl
270270

271271
.PHONY: ci
272272
ci:
273-
docker build -t quay.io/influxdb/telegraf-ci:1.26.3 - < scripts/ci.docker
274-
docker push quay.io/influxdb/telegraf-ci:1.26.3
273+
docker build -t quay.io/influxdb/telegraf-ci:1.26.4 - < scripts/ci.docker
274+
docker push quay.io/influxdb/telegraf-ci:1.26.4
275275

276276
.PHONY: install
277277
install: $(buildbin)

build_version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.39.0
1+
1.40.0

0 commit comments

Comments
 (0)