A slighlty opinionated Fastify plugin that collects metrics and dispatches them to statsd.
If you write your services and apps using Fastify
and also use statsd
, this plugin might be for you!
It automatically collects Node.js process metrics along with routes stats like hit count, timings and errors and uses the Dats
client to send them to a stasd
collector.
β οΈ Fastify 4 introduced some breaking changes, please refer to this version support table to find what works best for you!
- Installation
- Migrating from version 1
- Usage
- Route Configuration
- Metrics collected
- Decorators
- Hooks
- Request and Reply routeConfig
- API
- Powered Apps
- Support & Contribute
- License
Node.js |
fastify |
@immobiliarelabs/fastify-metrics |
---|---|---|
<14 |
3 |
3 |
>14 |
4 |
4 |
# lastest stable version
$ npm i -S @immobiliarelabs/fastify-metrics
# latest development version
$ npm i -S @immobiliarelabs/fastify-metrics@next
# lastest stable version
$ yarn add @immobiliarelabs/fastify-metrics
# latest development version
$ yarn @immobiliarelabs/fastify-metrics@next
See the migration guide if you have to migrate from the version 1 to 2 of this plugin.
const fastify = require('fastify')();
await fastify.register(require('@immobiliarelabs/fastify-metrics'), {
client: {
host: 'udp://someip:someport',
namespace: 'ns',
},
});
const route = {
// This is required in order to associate a metric to a route
// If an object `metrics` with a `routeId` is not passed the route stats will be
// ignored.
config: {
metrics: {
routeId: 'root.getStatus',
},
},
url: '/',
method: 'GET',
handler(request, reply) {
reply.send({ ok: true });
},
};
fastify.route(route);
fastify.listen(3000);
To configure a route, you have to pass a metrics
object with the routeId
key set with a not empty string.
If the routeId
is not passed or is set with a falsy value, the route will not be metricated, and all route metrics methods will be disabled.
There are more usage examples in the examples
folder.
The plugin internally uses the routeId
key in the metrics
object of the Request.routeOptions
or Reply.request.routeOptions
object to build the label of the metric of a route.
See
- https://www.fastify.io/docs/latest/Reference/Routes/#config
- https://www.fastify.io/docs/latest/Reference/Reply/
- https://www.fastify.io/docs/latest/Reference/Request/
These are the metrics that can be collected with their respective label.
Name | Type | Unit of measure | Description |
---|---|---|---|
<METRICS_NAMESPACE>.process.cpu |
gauge |
percentage | process cpu usage |
<METRICS_NAMESPACE>.process.mem.external |
gauge |
bytes | process external memory |
<METRICS_NAMESPACE>.process.mem.rss |
gauge |
bytes | process rss memory |
<METRICS_NAMESPACE>.process.mem.heapUsed |
gauge |
bytes | process heap used memory |
<METRICS_NAMESPACE>.process.mem.heapTotal |
gauge |
bytes | process heap total memory |
<METRICS_NAMESPACE>.process.eventLoopDelay |
gauge |
milliseconds | process event loop delay |
<METRICS_NAMESPACE>.process.eventLoopUtilization |
gauge |
absolute number between 0 and 1 | process event loop utilization |
<METRICS_NAMESPACE>.<computedPrefix>.<routeId>.requests |
counter |
unit | requests count per service |
<METRICS_NAMESPACE>.<computedPrefix>.<routeId>.errors.<statusCode> |
counter |
unit | errors count per service |
<METRICS_NAMESPACE>.<computedPrefix>.<routeId>.request_size |
timing |
bytes | request size |
<METRICS_NAMESPACE>.<computedPrefix>.<routeId>.response_time |
timing |
milliseconds | response time |
<METRICS_NAMESPACE>.<computedPrefix>.<routeId>.response_size |
timing |
bytes | response size |
To know more about how the computedPrefix
and the route label are built see here.
The plugin adds some decorators to both the fastify instance and the reply object.
- <
object
>
An object containing the following properties:
- <
string
>
The namespace
passed to the plugin configuration option.
- <
string
>
The normalized fastify instance prefix
.
- <
string
>
The normalized routes prefix
passed to the routes.prefix
option.
The Dats instance.
The sampler instance used to sample process metrics, if options.health
is true
.
A utility function to convert the legacy process.hrtime([time])
value to microseconds.
See hrtime-utils.
A utility function to convert the legacy process.hrtime([time])
value to nanoseconds.
See hrtime-utils.
A utility function to convert the legacy process.hrtime([time])
value to milliseconds.
See hrtime-utils.
A utility function to convert the legacy process.hrtime([time])
value to seconds.
See hrtime-utils.
- Returns <
string
> The computed metric label of the route.
- name <
string
> The name of the metric - value <
number
> The value of the metric
It sends a timing metric. It automatically prepends the route label to the passed name
. It is just a small wrapper of the native Dats
client method.
- name <
string
> The name of the metric - value <
number
> The value of the metric
It sends a counter metric. It automatically prepends the route label to the passed name
. It is just a small wrapper of the native Dats
client method.
- name <
string
> The name of the metric - value <
number
> The value of the metric
It sends a gauge metric. It automatically prepends the route label to the passed name
. It is just a small wrapper of the native Dats
client method.
- name <
string
> The name of the metric - value <
number
> The value of the metric
It sends a timing metric. It automatically prepends the route label to the passed name
. It is just a small wrapper of the native Dats
client method.
The plugin uses the following hooks:
onRoute
: to generate the route labels at startup time ifroutes.mode
is set to'static'
.onClose
: to close the Dats instance and the sampler instance.onRequest
: it registers a hook to count requests and, ifroutes.mode
is set to'dynamic'
, it adds another one to generate the route label.onResponse
: to measure response timeonError
: to count errors
The plugin adds a metrics
object to the Request.routeOptions
and Reply.request.routeOptions
for convenience with the following properties:
routeId
<string
> The id for the current routefastifyPrefix
<string
> The prefix of the fastify instance registering the route, with the/
replaced with.
and without the.
at the beginning.routesPrefix
<string
> The routes prefix passed to the plugin options and without.
at the beginning and end.
These properties can be useful when using a custom getLabel
function.
This module exports a plugin registration function.
The plugin is configured with an object with the following properties
client
<Object
|Client
> The statsd client configuration object or aClient
instance. When using the options object, a defaultonError
function is used to log with levelerror
the event with the app logger.routes
<boolean
|Object
> Routes metrics configuration. If set tofalse
it disables the collection of all the default routes metrics.mode
<'static'
|'dynamic'
> The strategy to generate the route metric label.prefix
<string
> The prefix to use for the routes labels (<METRICS_NAMESPACE>.<computedPrefix>.<routeId>.*
). It defaults to''
(no prefix).getLabel
<Function
> A custom function to generate the route label. It has a different signature depending on the mode.timing
<boolean
> Collect response timings (<METRICS_NAMESPACE>.<computedPrefix>.<routeId>
). Default:true
.requestSize
<boolean
> Collect request size (<METRICS_NAMESPACE>.<computedPrefix>.requests.<routeId>
). Default:false
.responseSize
<boolean
> Collect response size (<METRICS_NAMESPACE>.<computedPrefix>.requests.<routeId>
). Default:false
.hits
<boolean
> Collect requests count (<METRICS_NAMESPACE>.<computedPrefix>.requests.<routeId>
). Default:true
.errors
<boolean
> Collect errors count (<METRICS_NAMESPACE>.<computedPrefix>.errors.<routeId>.<statusCode>
). Default:true
.
health
<boolean
|Object
> Flag to enable/disable the collection of the process health data(<METRICS_NAMESPACE>.process.*
) or an object to configure a subset of the health metrics provided by the sampler. Default:true
.sampleInterval
<number
> The number of milliseconds of the interval to get the metrics sample.eventLoopOptions
<Object
> The options object used to configure the coremonitorEventLoopDelay
.
There are two different modes to generate the label for each route:
static
dynamic
In both modes by default the plugin generates a prefix using:
- the
fastify
prefix used to register the plugin (normalized replacing/
with.
), we call itfastifyPrefix
- the routes prefix passed to the plugin option
routes.prefix
, we call itroutesPrefix
Generating a computed prefix like this:
<fastifyPrefix>.<routesPrefix>
In this mode a onRoute
hook is registered in the fastify
instance and the plugin generates a label at startup time combining the following strings:
- the
fastify
prefix used to register the plugin, accessible via theprefix
key of the route registration options. - the routes prefix passed in the plugin options, accessible as a parameter of the internal
getLabel
function. - the
config.metrics.routeId
string used to configure the route, acessible via theconfig
key of the route registration options.
The getLabel
function in this mode will have the following signature:
options
<Object
> The route registrationconfig
metrics
routeId
<string
> The id used to initialize the route.fastifyPrefix
<string
> The normalized prefix of the fastify instance registering the route.routesPrefix
<string
> The normalized routes prefix passed to the plugin options.
- Returns: <
string
> The route label string without any.
at the beginning or end.
Pay attention to avoid returing empty strings or strings with leading and trailing .
.
In this mode a onRequest
hook is registerd in the fastify
instance and the plugin generates a label and attaches it to each request and reply combining the following strings:
- the
fastify
prefix used to register the plugin, accessible via theprefix
key of thefastify
instance. - the routes prefix passed in the plugin options, accessible via the
metricsRoutesPrefix
decorator of thefastify
instance. - the
config.metrics.routeId
string used to configure the route, acessible via theconfig
key of therequest
orreply
context.
The getLabel
function in this mode will have the following signature:
request
reply
- Returns: <
string
> The route label string without any.
at the beginning or end.
The this
context of the function is bound to the fastify instance of the request. Pay attention to avoid returing empty strings or strings with leading and trailing .
. Also, don't use arrow functions otherwhise the this
context won't refer to the fastify instance.
If you don't pass your custom function, the default one returns the same string computed in static
mode. Hence, the dynamic
mode is not very useful if you don't define your own getLabel
function.
const fastify = require('fastify')();
await fastify.register(require('@immobiliarelabs/fastify-metrics'), {
client: {
host: 'udp://someip:someport',
namespace: 'ns',
},
routes: {
mode: 'dynamic',
getLabel: function (request, reply) {
const auth = request.user ? 'user' : 'anonim';
const { metrics } = request.routeOptions.config;
const routesPrefix = metrics.routesPrefix
? `${metrics.routesPrefix}.`
: '';
const fastifyPrefix = metrics.fastifyPrefix
? `${metrics.fastifyPrefix}.`
: '';
const routeId = metrics.routeId ? `${metrics.routeId}.` : '';
return `${fastifyPrefix}${routesPrefix}${routeId}${auth}`;
},
},
});
const route = {
config: {
metrics: {
routeId: 'root.getStatus',
},
},
url: '/',
method: 'GET',
handler(request, reply) {
reply.send({ ok: true });
},
};
fastify.route(route);
fastify.listen(3000);
fastify-metrics
was created by the amazing Node.js team at ImmobiliareLabs, the Tech dept of Immobiliare.it, the #1 real estate company in Italy.
We are currently using fastify-metrics
in our products as well as our internal toolings.
If you are using fastify-metrics in production drop us a message.
Made with β€οΈ by ImmobiliareLabs & Contributors
We'd love for you to contribute to fastify-metrics
!
If you have any questions on how to use fastify-metrics
, bugs and enhancement please feel free to reach out by opening a GitHub Issue.
fastify-metrics
is licensed under the MIT license.
See the LICENSE file for more information.