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
Send a large number of metrics with Influx StatsD style tags (issue is worse at high concurrency when reading StatsD input). For example, send these two metrics a large number of times:
test,a=b:1|c
foobar,foo=bar:1|c
Expected behavior:
Something similar to these two metrics are written to the output:
test,a=b count=100
foobar,foo=bar count=100
Actual behavior:
Something similar to these metrics are written to the output, where sometimes the tags are swapped:
After upgrading from Telegraf 1.16.3 to 1.17.0, we've noticed that tags from StatsD metrics are being mangled with unrelated metrics.
Relevant telegraf.conf:
This may require Graphite templates to be set on the statsd input as the thread safe issue appears to be partially in the
GraphiteParser
Steps to reproduce:
Expected behavior:
Something similar to these two metrics are written to the output:
Actual behavior:
Something similar to these metrics are written to the output, where sometimes the tags are swapped:
Additional info:
Appears to be caused by a locking change in #8509, as I attempted to explain here #8509 (comment)
The text was updated successfully, but these errors were encountered: