stackimpact-nodejs icon indicating copy to clipboard operation
stackimpact-nodejs copied to clipboard

DEPRECATED StackImpact Node.js Profiler - Production-Grade Performance Profiler: CPU, memory allocations, async calls, errors, metrics, and more

Results 4 stackimpact-nodejs issues
Sort by recently updated
recently updated
newest added

Earlier today I attempted to run a StackImpact agent in an AWS Lambda environment, using the NodeJS 12.x runtime. AWS Lambda currently uses NodeJS 12.16.3, specifically (Running on linux-x64). My...

I'm trying to use stackimpact in a completely typical scenario in a Node.js app. It wasn't throwing any errors, but also wasn't showing any data in the dashboard. When I...

Currently the profiler always shows the garbage collector as being the hotspot and doesn't give any information on actual user code. Using the V8 profiler with ```node --prof-cpu``` and loading...

In the `agent.js` file, I see this piece of code: ``` if (!self.getOption('autoProfiling')) { return self._report(reporter, () => { self.isProfiling = false; callback(); }); } else { self.isProfiling = false;...