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
Turns stats of the form: stats_counts.auth.abcd0987 1 1234567890
Into a histogram of {"abcd0987":+1} under the key stats_counts.auth. The problem is that you'd query that stat as stats_counts.auth which does not match the regular expression. One could add a second regex to match on that, but that would be capture incorrect data on the input side.
The text was updated successfully, but these errors were encountered:
Transforms are very powerful and allow for turning unique stat names into histograms. For example:
Turns stats of the form:
stats_counts.auth.abcd0987 1 1234567890
Into a histogram of
{"abcd0987":+1}
under the keystats_counts.auth
. The problem is that you'd query that stat asstats_counts.auth
which does not match the regular expression. One could add a second regex to match on that, but that would be capture incorrect data on the input side.The text was updated successfully, but these errors were encountered: