Control your application logs from your dashboard, at runtime!
npm i fastify-log-controller
Plugin version | Fastify version |
---|---|
^1.0.0 |
^4.0.0 |
When you register this plugin, a new route will be available at /log-level
(by default)
that allows you to change the log level of your application at runtime!
You will be able to change the log level for every tracked encapsulated context!
This is useful when you want to change the log level of your application without restarting it and resetting what is in memory.
Let's see an example:
async function example () {
const app = require('fastify')({
logger: {
level: 'error'
}
})
// Register the plugin
app.register(require('fastify-log-controller'))
const routes = async function plugin (app, opts) {
app.get('/', async function handler (request, reply) {
request.log.info('hello world')
return { hello: 'world' }
})
}
// Create an encapsulated context with register and set the `logCtrl` option
app.register(routes, {
logCtrl: { name: 'bar' }
})
// Check that the route doesn't log anything because the application log level is `error`
await app.inject('/')
// Change the log level of the `bar` context to `debug`
await app.inject({
method: 'POST',
url: '/log-level',
body: {
level: 'debug',
contextName: 'bar'
}
})
// Check that the route logs the `hello world` message!
await app.inject('/')
}
example()
Note that it works with custom logger levels too!
If the exposeGet
configuration option is set to true
, the same route allows you to recover available contexts and currently set log levels:
$ curl http://localhost:3000/log-level
[{"contextName":"bar","level":"debug"}]
and the '/log-level/levels' route allows you to recover available log levels:
$ curl http://localhost:3000/log-level/levels
["trace","debug","info","warn","error","fatal"]
If you want to go deeper into the encapsulated context concept, you can read these sources:
In fastify you can voluntarily set log level for every encapsulated context and route, but you can't change it at runtime.
In these cases, the log level of the encapsulated context will be preserved.
app.register(async function plugin (app) {
// The log level will be always `fatal`
}, {
logLevel: 'fatal',
logCtrl: { name: 'bar' }
})
app.register(async function plugin (app) {
app.get('/bar', {
logLevel: 'debug',
handler: (request, reply) => {
// Here the log level will be always `debug`
return {}
}
})
app.get('/bar', {
handler: (request, reply) => {
// Here the log level can be changed at runtime!
return {}
}
})
}, { logCtrl: { name: 'foo' } })
You can pass some options to the plugin:
app.register(require('fastify-log-controller'), {
// How you want to call the option in the encapsulated context
optionKey: 'logCtrl',
// Enable get routes
exposeGet: false,
// Enhance the route config of the log controller route
// It is not possible to change the handler and the schema
routeConfig: {
// Any option accepted by fastify route:
// https://www.fastify.io/docs/latest/Reference/Routes/#routes-options
}
})
Remember that you must pass the same optionKey
to the encapsulated context:
app.register(routes, {
logCtrl: { name: 'bar' }
})
Copyright Manuel Spigolon, Licensed under MIT.