We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We need a metric to track how "busy" our node is.
A potential approach would be to track async event loop lag:
setInterval(async () => { const startTime = Date.now(); await sleep(0); const asyncEventLoopLag = Date.now() - startTime; }, 1000)
Originally posted by @dapplion in #2952 (comment)
The text was updated successfully, but these errors were encountered:
prom-client should already have a similar metric. Check with libuv internals for more detailed metrics
prom-client
Sorry, something went wrong.
No branches or pull requests
We need a metric to track how "busy" our node is.
A potential approach would be to track async event loop lag:
Originally posted by @dapplion in #2952 (comment)
The text was updated successfully, but these errors were encountered: