β° Promster - Measure metrics from Hapi, express, Marble.js, Apollo or Fastify servers with Prometheus π¦
Promster is an Prometheus Exporter for Node.js servers written for Express, Hapi, Marble.js, Apollo or Fastify.
β€οΈ Hapi Β· Express Β· Marble.js Β· Fastify Β· Apollo Β· Prettier Β· TypeScript Β· Jest Β· ESLint Β· Changesets Β· Prometheus π
Package | Version | Downloads |
---|---|---|
promster/hapi |
||
promster/express |
||
promster/marblejs |
||
promster/fastify |
||
promster/apollo |
||
promster/server |
||
promster/metrics |
These packages are a combination of observations and experiences I have had with other exporters which I tried to fix.
- π Use
process.hrtime.bigint()
for high-resolution real time in metrics in seconds (converting from nanoseconds)process.hrtime.bigint()
calls libuv'suv_hrtime
, without system call likenew Date
- βοΈ Allow normalization of all pre-defined label values
- π₯ Expose Garbage Collection among other metric of the Node.js process by default
- π¨ Expose a built-in server to expose metrics quickly (on a different port) while also allowing users to integrate with existing servers
- π Define two metrics one histogram for buckets and a summary for percentiles for performant graphs in e.g. Grafana
- π©βπ©βπ§ One library to integrate with Hapi, Express and potentially more (managed as a mono repository)
- π¦ Allow customization of labels while sorting them internally before reporting
- πΌ Expose Prometheus client on Express locals or Hapi app to easily allow adding more app metrics
This is a mono repository maintained using
changesets. It currently contains four
packages in a metrics
, a hapi
or
express
integration, and a server
exposing the metrics for you if you do not want to do that via your existing server.
Depending on the preferred integration use:
yarn add @promster/express
or npm i @promster/express --save
or
yarn add @promster/hapi
or npm i @promster/hapi --save
Please additionally make sure you have a prom-client
installed. It is a peer dependency of @promster
as some projects might already have an existing prom-client
installed. Which otherwise would result in different default registries.
yarn add prom-client
or npm i prom-client --save
Promster has to be setup with your server. Either as an Express middleware of an Hapi plugin. You can expose the gathered metrics via a built-in small server or through our own.
Please, do not be scared by the variety of options.
@promster
can be setup without any additional configuration options and has sensible defaults. However, trying to suit many needs and different existing setups (e.g. metrics having recording rules over histograms) it comes with all those options listed below.
nodejs_up
: an indication if the nodejs server is started: either 0 (not up) or 1 (up)nodejs_gc_runs_total
: total garbage collections countnodejs_gc_pause_seconds_total
: time spent in garbage collectionnodejs_gc_reclaimed_bytes_total
: number of bytes reclaimed by garbage collection
With all garbage collection metrics a gc_type
label with one of: unknown
, scavenge
, mark_sweep_compact
, scavenge_and_mark_sweep_compact
, incremental_marking
, weak_phantom
or all
will be recorded.
http_requests_total
: a Prometheus counter for the http request total- This metric is also exposed on the following histogram and summary which both have a
_sum
and_count
and enabled for ease of use. It can be disabled by configuring withmetricTypes: Array<String>
.
- This metric is also exposed on the following histogram and summary which both have a
http_request_duration_seconds
: a Prometheus histogram with request time buckets in seconds (defaults to[ 0.05, 0.1, 0.3, 0.5, 0.8, 1, 1.5, 2, 3, 5, 10 ]
)- A histogram exposes a
_sum
and_count
which are a duplicate to the above counter metric. - A histogram can be used to compute percentiles with a PromQL query using the
histogram_quantile
function. It is advised to create a Prometheus recording rule for performance.
- A histogram exposes a
http_request_duration_per_percentile_seconds
: a Prometheus summary with request time percentiles in seconds (defaults to[ 0.5, 0.9, 0.99 ]
)- This metric is disabled by default and can be enabled by passing
metricTypes: ['httpRequestsSummary]
. It exists for cases in which the above histogram is not sufficient, slow or recording rules can not be set up.
- This metric is disabled by default and can be enabled by passing
http_request_content_length_bytes
: a Prometheus histogram with the request content length in bytes (defaults to[ 100000, 200000, 500000, 1000000, 1500000, 2000000, 3000000, 5000000, 10000000, ]
)- This metric is disabled by default and can be enabled by passing
metricTypes: ['httpContentLengthHistogram]
.
- This metric is disabled by default and can be enabled by passing
http_response_content_length_bytes
: a Prometheus histogram with the request content length in bytes (defaults to[ 100000, 200000, 500000, 1000000, 1500000, 2000000, 3000000, 5000000, 10000000, ]
)- This metric is disabled by default and can be enabled by passing
metricTypes: ['httpContentLengthHistogram]
.
- This metric is disabled by default and can be enabled by passing
In addition with each http request metric the following default labels are measured: method
, status_code
and path
. You can configure more labels
(see below).
http_requests_total
: a Prometheus counter for the total amount of http requests
You can also opt out of either the Prometheus summary or histogram by passing in { metricTypes: ['httpRequestsSummary'] }
, { metricTypes: ['httpRequestsHistogram'] }
or { metricTypes: ['httpRequestsTotal'] }
.
graphql_parse_duration_seconds
: a Prometheus histogram with the request parse duration in seconds.graphql_validation_duration_seconds
: a Prometheus histogram with the request validation duration in seconds.graphql_resolve_field_duration_seconds
: a Prometheus histogram with the field resolving duration in seconds.graphql_request_duration_seconds
: a Prometheus histogram with the request duration in seconds.graphql_errors_total
: a Prometheus counter with the errors occurred during parsing, validation or field resolving.
In addition with each GraphQL request metric the following default labels are measured: operation_name
and field_name
. For errors a phase
label is present.
Each Prometheus histogram or summary can be customized in regard to its bucket or percentile values. While @promster
offers some defaults, these might not always match your needs. To customize the metrics you can pass a metricBuckets
or metricPercentiles
object whose key is the metric name you intend to customize the the value is the percentile
or bucket
value passed to the underlying Prometheus metric.
To illustrate this, we can use the @promster/express
middleware:
const middleware = createMiddleware({
app,
options: {
metricBuckets: {
httpRequestContentLengthInBytes: [
100000, 200000, 500000, 1000000, 1500000, 2000000, 3000000, 5000000,
10000000,
],
httpRequestDurationInSeconds: [
0.05, 0.1, 0.3, 0.5, 0.8, 1, 1.5, 2, 3, 10,
],
},
metricPercentiles: {
httpRequestDurationPerPercentileInSeconds: [0.5, 0.9, 0.95, 0.98, 0.99],
httpResponseContentLengthInBytes: [
100000, 200000, 500000, 1000000, 1500000, 2000000, 3000000, 5000000,
10000000,
],
},
},
});
const app = require('./your-express-app');
const { createMiddleware } = require('@promster/express');
// Note: This should be done BEFORE other routes
// Pass 'app' as middleware parameter to additionally expose Prometheus under 'app.locals'
app.use(createMiddleware({ app, options }));
Passing the app
into the createMiddleware
call attaches the internal prom-client
to your Express app's locals. This may come in handy as later you can:
// Create an e.g. custom counter
const counter = new app.locals.Prometheus.Counter({
name: 'metric_name',
help: 'metric_help',
});
// to later increment it
counter.inc();
const app = require('./your-fastify-app');
const { plugin: promsterPlugin } = require('@promster/fastify');
fastify.register(promsterPlugin);
Plugin attaches the internal prom-client
to your Fastify instance. This may come in handy as later you can:
// Create an e.g. custom counter
const counter = new fastify.Prometheus.Counter({
name: 'metric_name',
help: 'metric_help',
});
// to later increment it
counter.inc();
const { createPlugin } = require('@promster/hapi');
const app = require('./your-hapi-app');
app.register(createPlugin({ options }));
Here you do not have to pass in the app
into the createPlugin
call as the internal prom-client
will be exposed onto Hapi as in:
// Create an e.g. custom counter
const counter = new app.Prometheus.Counter({
name: 'metric_name',
help: 'metric_help',
});
// to later increment it
counter.inc();
const promster = require('@promster/marblejs');
const middlewares = [
promster.createMiddleware(),
//...
];
const serveMetrics$ = r
.matchPath('/metrics')
.matchType('GET')
.use(async (req$) =>
req$.pipe(
mapTo({
headers: { 'Content-Type': promster.getContentType() },
body: await promster.getSummary(),
})
)
);
const {
createPlugin: createPromsterMetricsPlugin,
} = require('@promster/apollo');
const server = new ApolloServer({
typeDefs,
resolvers,
plugins: [createPromsterMetricsPlugin()],
});
await server.listen();
When creating either the Express middleware or Hapi plugin the following options can be passed:
labels
: anArray<String>
of custom labels to be configured both on all metrics mentioned abovemetricPrefix
: a prefix applied to all metrics. The prom-client's default metrics and the request metricsmetricTypes
: anArray<String>
containing one ofhistogram
,summary
or bothmetricNames
: an object containing custom names for one or all metrics with keys ofup, countOfGcs, durationOfGc, reclaimedInGc, httpRequestDurationPerPercentileInSeconds, httpRequestDurationInSeconds
- Note that each value can be an
Array<String>
sohttpRequestDurationInSeconds: ['deprecated_name', 'next_name']
which helps when migrated metrics without having gaps in their intake. In such a casedeprecated_name
would be removed after e.g. Recording Rules and dashboards have been adjusted to usenext_name
. During the transition each metric will be captured/recorded twice.
- Note that each value can be an
getLabelValues
: a function receivingreq
andres
on reach request. It has to return an object with keys of the configuredlabels
above and the respective valuesnormalizePath
: a function called on each request to normalize the request's path. Invoked with(path: string, { request, response })
normalizeStatusCode
: a function called on each request to normalize the respond's status code (e.g. to get 2xx, 5xx codes instead of detailed ones). Invoked with(statusCode: number, { request, response })
normalizeMethod
: a function called on each request to normalize the request's method (to e.g. hide it fully). Invoked with(method: string, { request, response })
skip
: a function called on each response giving the ability to skip a metric. The method receivesreq
,res
andlabels
and returns a boolean:skip(req, res, labels) => Boolean
detectKubernetes
: a boolean defaulting tofalse
. Whenevertrue
is passed the process does not run within Kubernetes any metric intake is skipped (good e.g. during testing).disableGcMetrics
: a boolean defaulted tofalse
to indicate if Garbage Collection metric should be disabled and hence not collected.
Moreover, both @promster/hapi
and @promster/express
expose the request recorder configured with the passed options and used to measure request timings. It allows easy tracking of other requests not handled through express or Hapi for instance calls to an external API while using promster's already defined metric types (the httpRequestsHistogram
etc).
// Note that a getter is exposed as the request recorder is only available after initialisation.
const { getRequestRecorder, timing } = require('@promster/express');
const async fetchSomeData = () => {
const recordRequest = getRequestRecorder();
const requestTiming = timing.start();
const data = await fetch('https://another-api.com').then(res => res.json());
recordRequest(requestTiming, {
other: 'label-values'
});
return data;
}
Lastly, both @promster/hapi
and @promster/express
expose setters for the up
Prometheus gauge. Whenever the server finished booting and is ready you can call signalIsUp()
. Given the server goes down again you can call signalIsNotUp()
to set the gauge back to 0
. There is no standard hook in both express
and Hapi
to tie this into automatically. Other tools to indicate service health such as lightship
indicating Kubernetes Pod liveliness and readiness probes also offer setters to alter state.
In some cases you might want to expose the gathered metrics through an individual server. This is useful for instance to not have GET /metrics
expose internal server and business metrics to the outside world. For this you can use @promster/server
:
const { createServer } = require('@promster/server');
// NOTE: The port defaults to `7788`.
createServer({ port: 8888 }).then((server) =>
console.log(`@promster/server started on port 8888.`)
);
Options with their respective defaults are port: 7788
, hostname: '0.0.0.0'
and detectKubernetes: false
. Whenever detectKubernetes
is passed as true
and the server will not start locally.
You can use the express
or hapi
package to expose the gathered metrics through your existing server. To do so just:
const app = require('./your-express-app');
const { getSummary, getContentType } = require('@promster/express');
app.use('/metrics', async (req, res) => {
req.statusCode = 200;
res.setHeader('Content-Type', getContentType());
res.end(await getSummary());
});
This may slightly depend on the server you are using but should be roughly the same for all.
The packages re-export most things from the @promster/metrics
package including two other potentially useful exports in Prometheus
(the actual client) and defaultRegister
which is the default register of the client. After all you should never really have to install @promster/metrics
as it is only and internally shared packages between the others.
Additionally you can import the default normalizers via const { defaultNormalizers } = require('@promster/express)
and use normalizePath
, normalizeStatusCode
and normalizeMethod
from you getLabelValues
. A more involved example with getLabelValues
could look like:
app.use(
createMiddleware({
app,
options: {
labels: ['proxied_to'],
getLabelValues: (req, res) => {
if (res.proxyTo === 'someProxyTarget')
return {
proxied_to: 'someProxyTarget',
path: '/',
};
if (req.get('x-custom-header'))
return {
path: null,
proxied_to: null,
};
},
},
})
);
Note that the same configuration can be passed to @promster/hapi
.
In the past we have struggled and learned a lot getting appropriate operational insights into our various Node.js based services. PromQL is powerful and a great tool but can have a steep learning curve. Here are a few queries per metric type to maybe flatten that curve. Remember that you may need to configure the metricTypes: Array<String>
to e.g. metricTypes: ['httpRequestsTotal', 'httpRequestsSummary', 'httpRequestsHistogram'] }
.
HTTP requests averaged over the last 5 minutes
rate(http_requests_total[5m])
A recording rule for this query could be named http_requests:rate5m
HTTP requests averaged over the last 5 minutes by Kubernetes pod
sum by (kubernetes_pod_name) (rate(http_requests_total[5m]))
A recording rule for this query could be named kubernetes_pod_name:http_requests:rate5m
Http requests in the last hour
increase(http_requests_total[1h])
Average Http requests by status code over the last 5 minutes
sum by (status_code) (rate(http_requests[5m]))
A recording rule for this query could be named status_code:http_requests:rate5m
Http error rates as a percentage of the traffic averaged over the last 5 minutes
rate(http_requests_total{status_code=~"5.*"}[5m]) / rate(http_requests_total[5m])
A recording rule for this query could be named http_requests_per_status_code5xx:ratio_rate5m
Http requests per proxy target
sum by (proxied_to) (increase(http_request_duration_seconds_count{proxied_to!=""}[2m]))
A recording rule for this query should be named something like proxied_to_:http_request_duration_seconds:increase2m
.
99th percentile of http request latency per proxy target
histogram_quantile(0.99, sum by (proxied_to,le) (rate(http_request_duration_seconds_bucket{proxied_to!=""}[5m])))
A recording rule for this query could be named proxied_to_le:http_request_duration_seconds_bucket:p99_rate5m
Maximum 99th percentile of http request latency by Kubernetes pod
max(http_request_duration_per_percentile_seconds{quantile="0.99") by (kubernetes_pod_name)
Event loop lag averaged over the last 5 minutes by release
sum by (release) (rate(nodejs_eventloop_lag_seconds[5m]))
Concurrent network connections
sum(rate(network_concurrent_connections_count[5m]))
A recording rule for this query could be named network_concurrent_connections:rate5m
Bytes reclaimed in garbage collection by type
sum by (gc_type) (rate(nodejs_gc_reclaimed_bytes_total[5m]))
Time spend in garbage collection by type
sum by (gc_type) (rate(nodejs_gc_pause_seconds_total[5m]))