Adds Elastic APM instrumentation to your application
npm i @gasket/plugin-elastic-apm
Update your gasket
file plugin configuration:
// gasket.js
+ import pluginElasticApm from '@gasket/plugin-elastic-apm';
export default makeGasket({
plugins: [
+ pluginElasticApm
]
});
Add NODE_OPTIONS=--import=./setup.js
to the package.json
start script:
"scripts": {
"build": "next build",
- "start": "next start",
+ "start": "NODE_OPTIONS=--import=./setup.js next start",
"local": "next dev"
}
Add a setup.js
script to the root of your app
// setup.js
import dotenv from 'dotenv/config';
import apm from 'elastic-apm-node';
// Elastic APM setup
apm.start({
serviceName: 'my-service-name',
captureHeaders: false,
secretToken: process.env.ELASTIC_APM_SECRET_TOKEN,
serverUrl: process.env.ELASTIC_APM_SERVER_URL
// additional configuration options
});
The start recommendations for the APM agent are to require it as early as
possible in your app. For Gasket apps, using --require ./setup.js
will accomplish this. To configure the APM agent, set the environment variables
described in the configuration options documentation.
In particular, the APM server URL (ELASTIC_APM_SERVER_URL
) and secret token
(ELASTIC_APM_SECRET_TOKEN
) are both required configuration. If either of these
are not present, the APM agent will be disabled.
The Gasket plugin provides some additional setup helpers. These can be
configured under elasticAPM
in the gasket.js
.
sensitiveCookies
- (string[]) A list of sensitive cookies to filter
If your application’s users send session credentials or any other sensitive
information in their cookies, you may wish to filter them out before they are
stored in Elasticsearch. Specify a list of cookie names to redact in
gasket.js
:
export default makeGasket({
elasticAPM: {
sensitiveCookies: ['my_jwt', 'userFullName']
}
});
If your application’s users send session credentials or any other sensitive
information in their cookies, you may wish to filter them out before they are
stored in Elasticsearch. Specify a list of cookie names to redact in
setup.js
using the sanitizeFieldNames configuration option:
// setup.js
require('dotenv').config();
require('elastic-apm-node').start({
...,
sanitizeFieldNames: ['foo', 'bar', '*token*']
});
The sanitizeFieldNames
config option can be used for:
- request and response HTTP headers
- HTTP request cookies
- any form field captured during an
application/x-www-form-urlencoded
data request
To filter out other data, use the APM Add Filter API.
According to the Elastic APM docs, the Elastic APM agent for Node.js is a singleton. This means that you can require and configure singleton in various hooks of your Gasket app, such as with the init or middleware lifecycles.
Use the getApmTransaction
action to access and decorate the current APM
transaction. This action is available in any lifecycle hook or server-side code.
// example-plugin.js
export default {
name: 'example-plugin',
hooks: {
express(gasket, app) {
app.use(async (req, res, next) => {
const transaction = await gasket.actions.getApmTransaction(req);
const locale = await gasket.actions.getIntlLocale(req);
transaction.setLabel('locale', locale);
});
}
}
}
In the above example, we are hooking the express lifecycle to add middleware
to decorate the transaction.
Calling getApmTransaction
will also allow other plugins to decorate the
transaction by hooking the apmTransaction
lifecycle discussed next.
Enables customizing an APM transaction. Hooks receive the current APM Transaction and details about the request. Hooks may be asynchronous. The request details are as follows:
Property | Description |
---|---|
req |
The HTTP request or framework-specific wrapper around it |
res |
The HTTP response or framework-specific wrapper around it |
// example-plugin.js
export default {
name: 'example-plugin',
hooks: {
apmTransaction(gasket, transaction, { req, res }) => {
transaction.setLabel('language', req.headers['accept-language']);
}
}
}
This plugin hooks the Gasket [configure] lifecycle to set additional filtering, such as for sensitive cookies.