Dynamic Stats¶
Rsyslog produces runtime-stats to allow user to study service health, performance, bottlenecks etc. Runtime-stats counters that Rsyslog components publish are statically defined.
Dynamic Stats (called dyn-stats henceforth) component allows user to configure stats-namespaces (called stats-buckets) and increment counters within these buckets using RainerScript function call.
The metric-name in this case can be a message-property or a sub-string extracted from message etc.
Dyn-stats configuration¶
Dyn-stats configuration involves a two part setup.
dyn_stats(name=”<bucket>”…) (object)¶
Defines the bucket(identified by the bucket-name) and allows user to set some properties that control behavior of the bucket.
dyn_stats(name="msg_per_host")
- Parameters:
name <string literal, mandatory> : Name of the bucket.
resettable <on|off, default: on> : Whether or not counters should be reset every time they are reported. This works independent of
resetCountersconfig parameter in impstats: Generate Periodic Statistics of Internal Counters.maxCardinality <number, default: 2000> : Maximum number of unique counter-names to track.
unusedMetricLife <number, default: 3600> : Interval between full purges (in seconds). This prevents unused counters from occupying resources forever.
persistStateInterval <number, default: 0> : Number of bucket updates before persisting state to disk. When set to 0 (default), count-based persistence is disabled. When set to a positive value, the bucket state will be written to disk after this many counter updates.
persistStateTimeInterval <number, default: 0> : Time interval in seconds before persisting bucket state to disk. When set to 0 (default), time-based persistence is disabled. When set to a positive value, the bucket state will be written to disk at least once per interval when counters change. If a bucket remains idle (no counter updates), no periodic write is performed because the persisted state is already current.
statefile.directory <string, optional> : Directory where state files should be stored. If not specified, the global
workDirectoryis used. State files are nameddynstats-state:<bucket-name>.
A definition setting all the parameters looks like:
dyn_stats(name="msg_per_host" resettable="on" maxCardinality="3000" unusedMetricLife="600")
To enable persistence:
dyn_stats(name="msg_per_host" persistStateInterval="100" statefile.directory="/var/lib/rsyslog/dynstats")
dyn_inc(“<bucket>”, <expr>) (function)¶
Increments counter identified by value of variable in bucket identified by name.
- Parameters:
name <string literal, mandatory> : Name of the bucket
expr <expression resulting in a string> : Name of counter (this name will be reported by impstats to identify the counter)
A dyn_inc call looks like:
set $.inc = dyn_inc("msg_per_host", $hostname);
if ($.inc != 0) then {
....
}
$.inc captures the error-code. It has value 0 when increment operation is successful and non-zero when it fails. It uses Rsyslog error-codes.
State Persistence¶
When persistStateInterval or persistStateTimeInterval is configured for a bucket, dynstats will save the current counter values to disk when counters are updated. This allows counters to survive rsyslog restarts. If there are no counter updates, no write is triggered because the on-disk state remains current.
State File Format: State files are written in JSON format with the following structure:
{ "name": "bucket_name", "values": { "metric1": 42, "metric2": 17 } }
Startup Behavior: When rsyslog starts, it automatically loads state files for buckets with persistence enabled. If a state file exists, counter values are restored; otherwise, counters start at zero.
File Write Worker: A background thread handles state file writes to avoid blocking message processing. The worker is automatically started when the first bucket with persistence is created.
Persistence Stats: Three additional counters are reported for each bucket with persistence enabled:
<bucket_name>_flushed_bytes: Total bytes written to state files<bucket_name>_flushed_counts: Number of successful state file writes<bucket_name>_flush_errors: Number of failed state file write attempts
Reporting¶
Legacy format:
...
global: origin=dynstats msg_per_host.ops_overflow=1 msg_per_host.new_metric_add=3 msg_per_host.no_metric=0 msg_per_host.metrics_purged=0 msg_per_host.ops_ignored=0
...
msg_per_host: origin=dynstats.bucket foo=2 bar=1 baz=1
...
Json(variants with the same structure are used in other Json based formats such as cee and json-elasticsearch) format:
...
{ "name": "global", "origin": "dynstats", "values": { "msg_per_host.ops_overflow": 1, "msg_per_host.new_metric_add": 3, "msg_per_host.no_metric": 0, "msg_per_host.metrics_purged": 0, "msg_per_host.ops_ignored": 0 } }
...
{ "name": "msg_per_host", "origin": "dynstats.bucket", "values": { "foo": 2, "bar": 1, "baz": 1 } }
...
In this case counters are encapsulated inside an object hanging off top-level-key values.
Fields¶
- global: origin=dynstats:
ops_overflow: Number of operations ignored because number-of-counters-tracked has hit configured max-cardinality.
new_metric_add: Number of “new” metrics added (new counters created).
no_metric: Counter-name given was invalid (length = 0).
metrics_purged: Number of counters discarded at discard-cycle (controlled by unusedMetricLife).
ops_ignored: Number of operations ignored due to potential performance overhead. Dyn-stats subsystem ignores operations to avoid performance-penalty if it can’t get access to counter without delay(lock acquiring latency).
purge_triggered: Indicates that a discard was performed (1 implies a discard-cycle run).
- msg_per_host: origin=dynstats.bucket:
<metric_name>: Value of counter identified by <metric-name>.
Support: rsyslog Assistant | GitHub Discussions | GitHub Issues: rsyslog source project
Contributing: Source & docs: rsyslog source project
© 2008–2025 Rainer Gerhards and others. Licensed under the Apache License 2.0.