blocked-at
Detects slow synchronous execution and reports where it started.
Installation
Requires Node 8+
$ npm install blocked-at
Description
The blocked()
function reports every value over the configured threshold (defaults to 20ms). Usage is similar to blocked
but the detection mechanism is different, to allow pointing to the slow function.
It uses Async Hooks to measure the time and generate the stack trace.
Stack trace will point to the beginning of an asynchronously called function that contained the long operation.
Run tests (npm test
) to see examples.
Params and return value
const blocked = require('blocked-at')
const { stop } = blocked(fn, options)
- fn: The callback function to execute when a function called asynchronously ran more than threshold. Two arguments are passed: time it measured and an array of stack frames (callstack)
- options: Optional.
threshold
option is supported for parity with blocked
Returns: An object with stop
method. stop()
will disable the async hooks set up by this library and callback will no longer be called.
Using the stack trace
The stack trace is pointing to a start of a function called asynchronously, so in most cases the first stack frame pointing to your code is where you need to start analyzing all synchronous operations to find the slow one.
In some cases your code is not directly called and tracking it down will still be difficult. See how the http test case produces a stack pointing to Server.connectionListener
as the slow function, because everything inside of it is synchronously called. You can always wrap your handlers' code in setImmediate
if you become desperate.
License
MIT