[[inputs.internet_speed]] stops working

Hello!

I have the Problem that the [[inputs.internet_speed]] stops working after some time.

My setup at the moment consists of physical Windows 10 PC running docker with seperate (official) containers for Mosquitto Telegraf InfluxDB and Grafana.

at the moment i am just testing everything so i dont have much data.

I have the Problem that the internet_speed is working for some time and then stops working completely and is only generating errors: Collection took longer than expected; not complete after interval of 2m

The same is true for ping which is generating a lot of Collection took longer than expected; not complete after interval of 10s errors in between.

There is no new MQTT Data at the moment, i just published some data manualy for tests.

telegraf.conf

[[outputs.influxdb]]
  urls = ["http://influxdb:8086"]

[[outputs.file]]
  files = ["stdout", "/tmp/metrics.out"]

[[inputs.ping]]
  ping_interval = 30.0
  urls = ["google.com","192.168.8.200","192.168.8.1"]

[[inputs.internet_speed]]
  interval = "15m"

[[inputs.mqtt_consumer]]
  servers = ["tcp://mosquitto:1883"]
  data_type = "string"
  data_format = "value"
  topics = [
    "test/#",
  ]

I hope you have some Ideas and can help me fix my problems!

Thanks for your help in advance!

This means that running that input, in this case the upload and download tests, took longer than 2 minutes. I would highly suggest running that plugin at intervals of 30m or more.