-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
Add additional metrics to the internal
plugin
#5900
Comments
Seems like a good idea, can you open a pull request? |
Which measurement would you put numgoroutine in? it doesn't seem to fit well into any of the existing ones. maybe adding an internal_runtime measurement? Other things that might be useful to have (from: https://github.com/influxdata/influxdb/blob/master/prometheus/influx.go#L27):
connect: #5958 |
The number of CPUs is already reported via the |
We can add |
Feature Request
Whilst troubleshooting a Telegraf issue earlier I realised it would have been nice to know how many goroutines were running at a given point in time. This can be found by
runtime.NumGoroutine()
. I wanted to kickstart a discussion about other metrics that people might want to add to the internal plugin.Proposal:
Add a metric from
runtime.NumGoroutine()
to theinternal
plugin.Current behavior:
Telegraf does not currently support this metric
Desired behavior:
To be able to see the number of goroutines that Telegraf is using
Use case:
Helps troubleshoot issues with Telegraf
The text was updated successfully, but these errors were encountered: