Gathering detailed insights and metrics for fastify-metrics
Gathering detailed insights and metrics for fastify-metrics
Gathering detailed insights and metrics for fastify-metrics
Gathering detailed insights and metrics for fastify-metrics
@immobiliarelabs/fastify-metrics
A minimalistic and opinionated Fastify plugin that collects metrics and dispatches them to statsd
@fastify/busboy
A streaming parser for HTML form data for node.js
fastify
Fast and low overhead web framework, for Node.js
@fastify/aws-lambda
Inspired by aws-serverless-express to work with Fastify with inject functionality.
npm install fastify-metrics
55.6
Supply Chain
97.8
Quality
80.4
Maintenance
100
Vulnerability
99.3
License
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
101 Stars
296 Commits
33 Forks
4 Watching
1 Branches
23 Contributors
Updated on 17 Nov 2024
Minified
Minified + Gzipped
TypeScript (87.96%)
JavaScript (12.04%)
Cumulative downloads
Total Downloads
Last day
4.8%
14,885
Compared to previous day
Last week
13.2%
84,755
Compared to previous week
Last month
-1.6%
349,282
Compared to previous month
Last year
285%
6,982,367
Compared to previous year
2
1
41
Prometheus metrics exporter for Fastify.
This plugin uses prom-client under the hood.
This plugin also adds two http metrics for your routes:
fastify-1.x
fastify-2.x
prom-client-11.x
fastify-2.x
prom-client-12.x
fastify-3.x
fastify-4.x
prom-client-14.x
context.config
with routeConfig
due to deprecation in fastify v4 and removal in fastify v5. If you had disableMetrics
option in you route config
, update fastify to latest version.request.routeOptions.method
over deprecated request.routerMethod
.metrics
from request
. Now it uses WeakMap
and not exposed.enableDefaultMetrics
- now enables only default prom-client
metrics. Set to true
by default.enableRouteMetrics
- additional flag that enables route metrics. Set to true
by default.1npm i fastify-metrics --save 2pnpm i fastify-metrics --save
metrics
to fastify instance for your custom metrics.>=4.0.0
.>=18.0.0
.Add it to your project like regular fastify plugin. Use register
method and pass options to it.
1const fastify = require('fastify'); 2const app = fastify(); 3 4const metricsPlugin = require('fastify-metrics'); 5await app.register(metricsPlugin, { endpoint: '/metrics' });
It also exports client to fastify instance fastify.metrics.client
which you may use it in your routes.
You may create your metrics when app starts and store it in fastify.metrics
object and reuse them in multiple routes.
After calling registry.clear()
all metrics are removed from registry. In order to add them again to the registry, call fastify.mterics.initMetricsInRegistry
.
See for details docs
Property | Type | Default Value |
---|---|---|
defaultMetrics? | IDefaultMetricsConfig | { enabled: true } |
endpoint? | string | null | Fastify.RouteOptions | '/metrics' |
name? | string | 'metrics' |
routeMetrics? | IRouteMetricsConfig | { enabled: true } |
promClient? | prom-client instance | null | null |
Property | Type | Default Value |
---|---|---|
enabled? | boolean | { histogram: boolean, summary: boolean } | true |
enableSummaries? | boolean | true |
groupStatusCodes? | boolean | false |
invalidRouteGroup? | string | '__unknown__' |
methodBlacklist? | readonly string[] | ['HEAD','OPTIONS','TRACE','CONNECT',] |
overrides? | IRouteMetricsOverrides | |
registeredRoutesOnly? | boolean | true |
customLabels? | Record<string, string | ((request: FastifyRequest, reply: FastifyReply) => string)> | undefined |
routeBlacklist? | readonly (string | RegExp)[] | [] |
The enabled
configuration option can be either a boolean which enables/disables generation of both histograms and summaries, or it can be set to an object that allows you to pick individually whether you want histograms or summaries to be generated, for example:
{
...
routeMetrics: {
enabled: {
histogram: true,
summary: false
}
}
}
would result in the library only generating histograms.
You may override default metrics settings. You may provide overrides for two metrics tracking http request durations: histogram
and summary
.
1const fastify = require('fastify'); 2const app = fastify(); 3const metricsPlugin = require('fastify-metrics'); 4 5await app.register(metricsPlugin, { 6 endpoint: '/metrics', 7 routeMetrics: { 8 overrides: { 9 histogram: { 10 name: 'my_custom_http_request_duration_seconds', 11 buckets: [0.1, 0.5, 1, 3, 5], 12 }, 13 summary: { 14 help: 'custom request duration in seconds summary help', 15 labelNames: ['status_code', 'method', 'route'], 16 percentiles: [0.5, 0.75, 0.9, 0.95, 0.99], 17 }, 18 }, 19 }, 20});
Property | Type | Default value |
---|---|---|
getRouteLabel? | (request: FastifyRequest) => string | undefined |
method? | string | 'method' |
route? | string | 'route' |
status? | string | 'status_code' |
Property | Type | Default value |
---|---|---|
name? | string | 'http_request_summary_seconds' |
help? | string | 'request duration in seconds summary' |
percentiles? | number[] | [0.5, 0.9, 0.95, 0.99] |
Property | Type | Default value |
---|---|---|
name? | string | 'http_request_duration_seconds' |
help? | string | 'request duration in seconds' |
buckets? | number[] | [0.05, 0.1, 0.5, 1, 3, 5, 10] |
The following table shows what metrics will be available in Prometheus (subject to the enabled
configuration option). Note suffixes like _bucket
, _sum
, _count
are added automatically.
metric | labels | description |
---|---|---|
http_request_duration_seconds_count | method , route , status_code | Requests total count |
http_request_duration_seconds_bucket | method , route , status_code | Requests durations by bucket |
http_request_summary_seconds | method , route , status_code | Requests duration percentiles |
http_request_summary_seconds_count | method , route , status_code | Requests total count |
See docs.
See changelog.
Licensed under MIT.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
11 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 10
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
SAST tool is run on all commits
Details
Reason
3 existing vulnerabilities detected
Details
Reason
Found 7/24 approved changesets -- score normalized to 2
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Score
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More