Pino GELF (pino-gelf) is a transport for the Pino logger. Pino GELF receives Pino logs from stdin and transforms them into GELF format before sending them to a remote Graylog server via UDP.
Pino GELF should be installed globally so it can be used as a utility:
npm i -g pino-gelf
The recommended pipeline to run Pino GELF as a transform for Pino logs is as follows:
node your-app.js | pino-gelf log
The host, port and maximum chunk size of your Graylog server can be specified using options. Options can also be used to include standard fields logged by express-pino-middleware. Custom fields included with Pino requests based on your own configuration can also be specified, although at present only strings are handled. Finally, you can choose to enable verbose mode which outputs all GELF messages locally, this can be useful for initial configuration.
// Set Graylog host
node your-app.js | pino-gelf log -h graylog.server.com
// Set Graylog port
node your-app.js | pino-gelf log -p 12202
// Set Graylog maximum chunk size
node your-app.js | pino-gelf log -m 8192
// Enable express-pino-middleware field logging
node your-app.js | pino-gelf log -e
// Enable single custom field logging
node your-app.js | pino-gelf log -c environment
// Enable multiple custom field logging using custom schema json file
node your-app.js | pino-gelf log -c my_schema.json
// Enable local output
node your-app.js | pino-gelf log -v
Note: The defaults for these options are:
Property | Default |
---|---|
Host | 127.0.0.1 |
Port | 12201 |
Maximum Chunk Size | 1420 |
Express Pino Middleware Fields | false |
Custom Fields | [] |
Verbose Logging | false |
Given the Pino log message (formatted as JSON for readability):
{
"pid":16699,
"hostname":"han",
"name":"pino-gelf-test-app",
"level":30,
"time":1481840140708,
"msg":"request completed",
"customField":"test",
"res":{"statusCode":304},
"responseTime":8,
"req":{
"method":"GET",
"headers":{
"host":"localhost:3000",
"user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_1) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0.1 Safari/602.2.14"}
},
"v":1
}
Given custom schema json file (my_custom_schema.json):
{
"title": "GELF Schema",
"type": "object",
"properties": {
"_status_code": {
"type": "integer",
"source": "res.statusCode"
},
"_user_agent": {
"type": "string",
"source": "req.headers.user-agent"
},
"customField": {
"type": "string"
}
}
}
And the usage:
node server.js | pino-gelf log -e -c my_custom_schema.json
Pino GELF will send the following message to your Graylog server (formatted here as JSON for readability):
{
"version":"1.1",
"host":"han",
"short_message":"request completed",
"full_message":"request completed",
"timestamp":1481840140.708,
"level":6,
"facility":"pino-gelf-test-app",
"_status_code":304,
"_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_1) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0.1 Safari/602.2.14",
"customField":"test"
}
At present the mapping from standard Pino log messages to GELF messages is as follows:
GELF Property | Pino Log Property | Notes |
---|---|---|
version | - | Hardcoded to 1.1 per GELF docs |
host | hostname | - |
short_message | msg | msg is truncated to 64 characters |
full_message | msg | msg is not truncated |
timestamp | time | - |
level | level | Pino level is mapped to SysLog levels1 |
facility | name | - |
The mapping from Pino log levels to SysLog levels used by GELF are as follows:
Pino Log Level | SysLog Level |
---|---|
Trace | Debug |
Debug | Debug |
Info | Info |
Warn | Warning |
Error | Error |
Fatal | Critical |
Note: Pino log messages without a level map to SysLog Critical
The implementation of Pino GELF is based in large part on pino-syslog and gelf-node.