You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[global_tags]
[agent]
interval = "10s"round_interval = truemetric_batch_size = 1000metric_buffer_limit = 10000collection_jitter = "0s"flush_interval = "10s"flush_jitter = "0s"precision = ""hostname = ""omit_hostname = falsedebug = true
[[outputs.influxdb_v2]]
urls = ["http://localhost:8181"]
bucket = "telegraf_metrics_2"organization = "theorg"namedrop = ["internal*"]
http_headers = {"Authorization" = "Bearer anythingwilldo"}
[[inputs.cpu]]
## Whether to report per-cpu stats or notpercpu = true## Whether to report total system cpu stats or nottotalcpu = true## If true, collect raw CPU time metricscollect_cpu_time = false## If true, compute and report the sum of all non-idle CPU statesreport_active = true
[[inputs.disk]]
## By default stats will be gathered for all mount points.## Set mount_points will restrict the stats to only the specified mount points.# mount_points = ["/"]## Ignore mount points by filesystem type.ignore_fs = ["tmpfs", "devtmpfs", "devfs", "iso9660", "overlay", "aufs", "squashfs"]
[[inputs.diskio]]
[[inputs.mem]]
[[inputs.system]]
[[inputs.swap]]
[[inputs.net]]
## By default, telegraf gathers stats from any up interface (excluding loopback)## Setting interfaces will tell it to gather these explicit interfaces,## regardless of status.# interfaces = ["eth0"]
Logs from Telegraf
Context
I am running Telegraf v1.33 on my mac, collecting local system metrics, and writing them to a local instance of InfluxDB3 (also on my mac). With Telegraf v1.32, the writes are successful and the data is written to the InfluxDB3 database. With Telegraf v1.33, the writes appear to be successful (from the Telegraf side) but are not written to the InfluxDB3 database.
Telegraf v1.32 output (good case)
2025-01-07T22:35:40Z D! [agent] Attempting connection to [outputs.influxdb_v2]
2025-01-07T22:35:40Z D! [agent] Successfully connected to outputs.influxdb_v2
2025-01-07T22:35:40Z D! [agent] Starting service inputs
2025-01-07T22:35:50Z E! [inputs.cpu] Error in plugin: error getting CPU info: not implemented yet
2025-01-07T22:35:50Z E! [inputs.diskio] Error in plugin: error getting disk io info: not implemented yet
2025-01-07T22:35:51Z D! [outputs.influxdb_v2] Wrote batch of 38 metrics in 751.351125ms
2025-01-07T22:35:51Z D! [outputs.influxdb_v2] Buffer fullness: 0 / 10000 metrics
2025-01-07T22:36:00Z E! [inputs.cpu] Error in plugin: error getting CPU info: not implemented yet
2025-01-07T22:36:00Z E! [inputs.diskio] Error in plugin: error getting disk io info: not implemented yet
2025-01-07T22:36:01Z D! [outputs.influxdb_v2] Wrote batch of 38 metrics in 742.0325ms
2025-01-07T22:36:01Z D! [outputs.influxdb_v2] Buffer fullness: 0 / 10000 metrics
Relevant telegraf.conf
Logs from Telegraf
Context
I am running Telegraf v1.33 on my mac, collecting local system metrics, and writing them to a local instance of InfluxDB3 (also on my mac). With Telegraf v1.32, the writes are successful and the data is written to the InfluxDB3 database. With Telegraf v1.33, the writes appear to be successful (from the Telegraf side) but are not written to the InfluxDB3 database.
Telegraf v1.32 output (good case)
InfluxDB3 output for Telegraf v1.32
Telegraf v1.33 output (bad case)
InfluxDB3 output for Telegraf v1.33
System info
Telegraf 1.33 on mac
Docker
No response
Steps to reproduce
...
Expected behavior
This is a regression from Telegraf 1.32, that with the same config file, successfully writes to InfluxDB3.
Actual behavior
Writes appear to succeed, from Telegraf output, but do not get written by InfluxDB3.
Additional info
No response
The text was updated successfully, but these errors were encountered: