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
Hello.
I discovered that when sending metrics the postfix is not added.
Important note on task context: must be explicitly simulated statsd behaviour
When sending metrics without tags: echo "test.counter:1|c" | ncat -v -u 127.0.0.1 52125
expected/actual result(ALL IS OK): test.counter.count 1.0 1707753580
When sending metrics with tags(HERE IS THE PROBLEM): echo "test.counter;foo=bar:1|c" | ncat -v -u 127.0.0.1 52125
actual result: (postfix ".count" is not set) test.counter;foo=bar 1.0 1707753750
Hello.
I discovered that when sending metrics the postfix is not added.
Important note on task context: must be explicitly simulated statsd behaviour
When sending metrics without tags:
echo "test.counter:1|c" | ncat -v -u 127.0.0.1 52125
expected/actual result(ALL IS OK):
test.counter.count 1.0 1707753580
When sending metrics with tags(HERE IS THE PROBLEM):
echo "test.counter;foo=bar:1|c" | ncat -v -u 127.0.0.1 52125
actual result: (postfix ".count" is not set)
test.counter;foo=bar 1.0 1707753750
expected result:
test.counter.count;foo=bar 1.0 1707753750
used config.toml:
The text was updated successfully, but these errors were encountered: