apm-agent-nodejs icon indicating copy to clipboard operation
apm-agent-nodejs copied to clipboard

Elastic APM Node.js Agent

Results 294 apm-agent-nodejs issues
Sort by recently updated
recently updated
newest added

I have a test.js file with the following code: ``` const apm = require('elastic-apm-node').start({ serviceName: 'testWatcher', serverUrl: "http://********:8200/", serverTimeout: "3s", logUncaughtExceptions: true }); const sleep = function (sec) { return...

agent-nodejs
community

Each transaction is currently assigned a uuid v4. We use the [uuid](https://www.npmjs.com/package/uuid) module which internally uses `crypto.randomBytes(16)` to generate the uuid. This is currently one of our biggest performance drains...

discuss
performance
agent-nodejs

The recent 3.52.2 release took the "latest" npm dist-tag. That's wrong. "latest" should always be the current main release branch (currently 4.x), else `latest-$major`.

Today incoming WebSocket connections are not instrumented as we don't know how to group events on the socket into meaningful Transactions. Normally we refer users to manually instrument the WebSockets...

enhancement
agent-nodejs