Home > fastify-metrics > IRouteMetricsConfig > customLabels
Custom labels to add to metrics
Signature:
customLabels?: Record<string, string | ((request: FastifyRequest, reply: FastifyReply) => string)>;customLabels: {
myLabel: 'my-value',
myLabel2: (request, reply) => request.headers['x-my-header'],
}