async-profile icon indicating copy to clipboard operation
async-profile copied to clipboard

Asynchronous CPU profiling for node

Results 6 async-profile issues
Sort by recently updated
recently updated
newest added

``` D:\pro\node_modules\async-profile\node_modules\async-listener\index.js:3 if (process.addAsyncListener) throw new Error("Don't require polyfill unless n eeded"); ^ Error: Don't require polyfill unless needed at Object. (D:\pro\node_modules\async-profile\node_modules\asyn c-listener\index.js:3:37) at Module._compile (module.js:569:30) at Module._extensions..js (module.js:580:10) at...

I must be misunderstanding something, but wherever I use async-profiler it doesn't actually profile anything. I immediately get the result, like this: ``` total: 0.009ms (in 2.350ms real time, CPU...

I tried using async-profile within an endpoint of an express app, but I can't get it to work. Its immediately returning of making a instance an within the endpoint. Here...

``` 0.127: 0.455ms at AsyncProfile.create (/Users/dan/test-async-profile/node_modules/async-profile/lib/index.js:61:27) (0.072) 5.560: 2.849ms at AsyncProfile.create (/Users/dan/test-async-profile/node_modules/async-profile/lib/index.js:61:27) (0.169) 8.590: 0.006ms at AsyncProfile.create (/Users/dan/test-async-profile/async-profile/lib/index.js:61:27) (0.000) 8.600: 0.003ms at AsyncProfile.create ```

The default print function was built for the use-case I originally had, which was a few callbacks each taking a significant time. The example in #3 generates N identical frames,...

Hi @ConradIrwin, Do you happen to have any code examples on how to properly use your module? Do I just drop the usage code anywhere? Thanks Marcello