-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Measuring fluentd incoming data volumes #62
Comments
any suggestions ? |
You can create a new field on your records, such as:
using record_modifier (or any similar alternative) Then, using the prometheus plugin, you can setup a counter metric that uses Note that you can remove this field before output plugin execution, so that it's only used for instrumentation and not stored on your storage backend. On prometheus side, you can work with |
thanks @dgonzalezruiz, this worked great |
came across this as I was looking into something similar, I ended up with a slight different approach:
this casts the record object into a json, which then allows me to capture the length the entire record payload (not just the |
We have fluentd setup as secure forwarder. we want to find out way how to measure the amount of data in bytes or bytes/sec we are getting. I see only input counter to count number of records only.
Please suggest how do we can get the objective.
The text was updated successfully, but these errors were encountered: