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
In the readme it shows the key as foo and the plugin will count the message that contains foo key and increment the counter. How do I grep the value of foo to find hello, and if hello exists then increase the counter?
The text was updated successfully, but these errors were encountered:
<filter mylabel>
@type prometheus
<metric>
name router_codes
type counter
desc Counter of errors from Heroku Router
<labels>
tag ${tag}
code ${router.code}
dyno ${router.dest_dyno}
</labels>
</metric>
</filter>
Our logs are a mixed bag of data (heroku logs).
Need to count on records that exist only. like only if the key exists.
if it doesn't exist it just floods the fluentd logs, and pollutes prometheus data:
2020-07-29 20:03:20 +0000 [warn]: unknown placeholder `${router.code}` found
2020-07-29 20:03:20 +0000 [warn]: unknown placeholder `${router.dest_dyno}` found
2020-07-29 20:03:20 +0000 [warn]: unknown placeholder `${router.code}` found
2020-07-29 20:03:20 +0000 [warn]: unknown placeholder `${router.code}` found
2020-07-29 20:03:20 +0000 [warn]: unknown placeholder `${router.code}` found
2020-07-29 20:03:20 +0000 [warn]: unknown placeholder `${router.code}` found
2020-07-29 20:03:21 +0000 [warn]: unknown placeholder `${router.code}` found
{ "foo": "some value", "bar": "some value", "baz": "some value" }
In the
readme
it shows the key asfoo
and the plugin will count the message that containsfoo
key and increment the counter. How do I grep the value offoo
to findhello
, and ifhello
exists then increase the counter?The text was updated successfully, but these errors were encountered: