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
Fluentd v0.14 provides Counter API for purposes below:
to provide counters with increment/decrement methods which works efficiently
to support to persistent counting data using plugin storages
to provide shared counter between processes
It's not necessary to make it pluggable, because it only has some variant:
visible from a process
shared with multi processes
This API is very useful to implement counter plugins (e.g., flowcounter, datacounter, ...) and also to implement to get metrics of Fluentd itself. Persistency can be delegated into Plugin Storage implementations.
The text was updated successfully, but these errors were encountered:
Fluentd v0.14 provides Counter API for purposes below:
It's not necessary to make it pluggable, because it only has some variant:
This API is very useful to implement counter plugins (e.g., flowcounter, datacounter, ...) and also to implement to get metrics of Fluentd itself. Persistency can be delegated into Plugin Storage implementations.
The text was updated successfully, but these errors were encountered: