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
{{ message }}
This repository has been archived by the owner on Aug 23, 2023. It is now read-only.
with ngrep -d any -W byline port 8125 | grep 'ms' | cut -d ':' -f1 I see almost all timers are either:
carbon.metrics_per_message (can be removed since it's always 1)
idx.memory.get_duration
idx.{memory,cassandra}.add_duration
solving this should significantly reduce statsdaemon cpu usage.
we can also look at some other metrics, like some counts, though i suspect those will make less of a difference.
anyway, can easily be done in raintank-docker.
The text was updated successfully, but these errors were encountered:
this requires adding rate args to the statsd functions and their invocations. i'm going to wait for #320 since that is such a huge changeset, otherwise we'll have a nasty conflict
(this is using the carbon input plugin for ingestion)
https://snapshot.raintank.io/dashboard/snapshot/aqlU18OPIdtyaZ6vtMOYZZGnNERZfx6B
=> large amounts of timers to statsdaemon. those cause the vast majority of cpu since they require most computation.
with
ngrep -d any -W byline port 8125 | grep 'ms' | cut -d ':' -f1
I see almost all timers are either:solving this should significantly reduce statsdaemon cpu usage.
we can also look at some other metrics, like some counts, though i suspect those will make less of a difference.
anyway, can easily be done in raintank-docker.
The text was updated successfully, but these errors were encountered: