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

Elastic APM Node.js Agent

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

**Is your feature request related to a problem? Please describe.** Is it possible to get the default value of the `sanitizeFieldNames` config ? I need to append a new value...

agent-nodejs
community

**Describe the bug** We have integrated the APM in our microservice architecture making use of distributed tracing feature. But we are running into a issue that often child transactions and...

context propagation
agent-nodejs

A lambda handler like this: ```js exports.handler = apm.lambda(function handlerThrows3 (event, context) { console.warn('XXX start 100ms timeout') setTimeout(function () { console.warn('XXX go boom3') throw new Error('boom3') }, 100) }) ```...

agent-nodejs
8.3-candidate

https://github.com/elastic/apm-agent-nodejs/pull/2194#discussion_r742328035 > Also the spec says: >> The agent should use the information in the request and response objects to fill the HTTP context (context.request and context.response) fields in the...

agent-nodejs
8.3-candidate

Per https://github.com/elastic/apm/pull/518 agents "SHOULD" disable compression on intake requests to localhost. This includes the lambda environment. - We should *measure* for the Node.js APM agent, for lambda and not. In...

agent-nodejs

Pre-requisite: moving to eslint instead of standard https://github.com/elastic/apm-agent-nodejs/pull/2579 See https://github.com/elastic/apm-agent-nodejs/pull/2573#discussion_r806320195 for the initial motivation and a start at adding "no-shadow": ```diff diff --git a/package.json b/package.json index 4ddb8e38..7c058530 100644 --- a/package.json...

agent-nodejs

Node v16.14.0 includes `process.getActiveResourcesInfo()` ([docs](https://nodejs.org/api/all.html#all_process_processgetactiveresourcesinfo), [PR](https://github.com/nodejs/node/pull/40813)) as a public alternative to `process._getActiveHandles()` and `process._getActiveRequests()`. We use the latter two in "lib/metrics/runtime.js". We should use the blessed new one when able.

agent-nodejs

**To Reproduce** The following program : ```js const apmModule = require('elastic-apm-node'); apmModule.start({ stackTraceLimit: 0, serverUrl: 'xxx', secretToken: 'yyy', active: true, centralConfig: false, }); const main = () => { console.trace('abcd')...

agent-nodejs
community

**Is your feature request related to a problem? Please describe.** filter exceptions configuration like in the Ruby agent: https://www.elastic.co/guide/en/apm/agent/ruby/master/configuration.html#config-filter-exception-types **Describe the solution you'd like** Add the feature to the node...

agent-nodejs
community

We've received reports that's the agent will leak when used inside the [jest testing framework](https://jestjs.io/). This is a [known issue with jest and modules that employ some form of redefining...

agent-nodejs
kibana