node-bunyan-lite/README.md

150 lines
4.8 KiB
Markdown
Raw Normal View History

2012-01-30 06:26:47 +00:00
Bunyan -- a JSON Logger for node.js servers.
Server logs should be structured. JSON's a good format. Let's do that: a log
record is one line of `JSON.stringify`'d output. Let's also specify some common
names for the requisite and common fields for a log record (see below).
Also: log4j is way more than you need.
2012-01-31 00:30:05 +00:00
# Current Status
Just play stuff here. Don't try to use this for realz yet.
2012-01-30 06:26:47 +00:00
# Usage
**The usual.** All loggers must provide a "service" name. This is somewhat akin
2012-01-31 00:30:05 +00:00
to log4j logger "name", but Bunyan doesn't so hierarchical logger names.
$ cat hi.js
2012-01-30 06:26:47 +00:00
var Logger = require('bunyan');
var log = new Logger({service: "myapp"});
2012-01-30 06:26:47 +00:00
log.info("hi");
**Log records are JSON.** "hostname", "time" and "v" (the Bunyan log
2012-01-31 00:30:05 +00:00
format version) are added for you.
2012-01-30 06:26:47 +00:00
$ node hi.js
2012-01-31 00:30:05 +00:00
{"service":"myapp","hostname":"banana.local","level":2,"msg":"hi","time":"2012-01-31T00:07:44.216Z","v":0}
A **`bunyan` tool is provided for pretty-printing** bunyan logs and, eventually,
2012-01-31 00:30:05 +00:00
for filtering (e.g. `| bunyan -c 'level>3'`). This shows the default output
(which is fluid right now) and indented-JSON output. More output formats will
be added, including support for custom formats.
2012-01-30 06:26:47 +00:00
2012-01-31 00:30:05 +00:00
$ node hi.js | ./bin/bunyan # CLI tool to filter/pretty-print JSON logs.
[2012-01-31T00:08:11.387Z] INFO: myapp on banana.local: hi
2012-01-31 00:30:05 +00:00
$ node hi.js | ./bin/bunyan -o json
2012-01-30 06:26:47 +00:00
{
2012-01-31 00:30:05 +00:00
"service": "myapp",
"hostname": "banana.local",
2012-01-30 06:26:47 +00:00
"level": 2,
2012-01-31 00:30:05 +00:00
"msg": "hi",
"time": "2012-01-31T00:10:00.676Z",
"v": 0
2012-01-30 06:26:47 +00:00
}
By default, log output is to stdout (**stream**) and at the "info" level.
Explicitly that looks like:
2012-01-31 00:30:05 +00:00
var log = new Logger({service: "myapp", stream: process.stdout,
level: "info"});
2012-01-31 00:30:05 +00:00
That is an abbreviated form for a single stream. **You can defined multiple
streams at different levels**.
2012-01-31 00:30:05 +00:00
var log = new Logger({
service: "amon",
streams: [
{
level: "info",
stream: process.stdout, // log INFO and above to stdout
},
{
level: "error",
path: "tmp/error.log" // log ERROR and above to a file
}
]
});
# Future
See "TODO.md", but basically:
- "Serializer" support to handle extracting a JSON object for a log record
2012-01-31 00:30:05 +00:00
for particular object types, e.g. an HTTP request. So for example we
could do:
log.info({req: req}, "something about handling this request")
And the "req" serializer would extract a reasonable JSON object for that
2012-01-31 00:30:05 +00:00
request object -- presumably a subset of all attributes on the request
object.
This will key off the field name, IOW by convention, rather than getting
into `instanceof` grossness.
- Spec'ing and enforcing the fields (from dap's section in eng guide).
- Syslog support. Ring-buffer support for storing last N debug messages
(or whatever) in memory to support debugability without too much log load.
- More `bunyan` output formats and filtering features.
- Think about a bunyan dashboard that supports organizing and viewing logs
from multiple hosts and services.
2012-01-30 06:26:47 +00:00
# Levels
- "fatal": the service is going to stop or become unusable now
- "error": fatal for a particular request, but the service continues servicing other requests
- "warn": a note on something that should probably be looked at by an operator
- "info": detail on regular operation
- "debug": anything else, i.e. too verbose to be included in "info" level.
- "trace": logging from external libraries used by your app
2012-01-30 06:26:47 +00:00
"debug" should be used sparingly. Information that will be useful to debug
errors *post mortem* should usually be included in "info" messages if it's
generally relevant or else with the corresponding "error" event. Don't rely on
spewing mostly irrelevant debug messages all the time and sifting through them
when an error occurs.
Integers are used for the actual level values (1 for "trace", ..., 6 for "fatal") and
constants are defined for the (Logger.TRACE ... Logger.DEBUG). The lowercase
level names are aliases supported in the API.
2012-01-30 06:26:47 +00:00
# Log Record Fields
2012-01-31 00:30:05 +00:00
TODO: from dap and enforce these
- "request\_id" (better name?) can't be required because some things don't
2012-01-31 00:30:05 +00:00
happen in a per-request context. Startup and background processing stuff
for example. Tho for request-y things, it is strongly encouraged because it
allows collating logs from multiple services for the same request.
2012-01-30 06:26:47 +00:00
# Streams
A "stream" is Bunyan's name for an output for log messages. It expects a
[Writable Stream](http://nodejs.org/docs/latest/api/all.html#writable_Stream)
interface. See above for some examples of specifying streams. Supported streams
are:
- A writable "stream". Often this is one of the std handles (`process.stdout` or
`process.stderr`), but it can be anything you want supporting the node
writable stream interface, e.g. `fs.createWriteStream`.
- A file. Will append to the given "path".
2012-01-30 06:26:47 +00:00
# License
MIT.