Clever/morgan

Name: morgan

Owner: Clever

Description: HTTP request logger middleware for node.js

Created: 2016-04-08 23:13:13.0

Updated: 2016-04-08 23:13:13.0

Pushed: 2016-04-12 22:06:16.0

Homepage:

Size: 153

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

morgan

NPM Version NPM Downloads Build Status Test Coverage Gratipay

HTTP request logger middleware for node.js

Named after Dexter, a show you should not watch until completion.

API
morgan = require('morgan')
morgan(format, options)

Create a new morgan logger middleware function using the given format and options. The format argument may be a string of a predefined name (see below for the names), a string of a format string, or a function that will produce a log entry.

Options

Morgan accepts these properties in the options object.

immediate

Write log line on request instead of response. This means that a requests will be logged even if the server crashes, but data from the response (like the response code, content length, etc.) cannot be logged.

skip

Function to determine if logging is skipped, defaults to false. This function will be called as skip(req, res).

XAMPLE: only log error responses
an('combined', {
ip: function (req, res) { return res.statusCode < 400 }

stream

Output stream for writing log lines, defaults to process.stdout.

Predefined Formats

There are various pre-defined formats provided:

combined

Standard Apache combined log output.

ote-addr - :remote-user [:date[clf]] ":method :url HTTP/:http-version" :status :res[content-length] ":referrer" ":user-agent"
common

Standard Apache common log output.

ote-addr - :remote-user [:date[clf]] ":method :url HTTP/:http-version" :status :res[content-length]
dev

Concise output colored by response status for development use. The :status token will be colored red for server error codes, yellow for client error codes, cyan for redirection codes, and uncolored for all other codes.

hod :url :status :response-time ms - :res[content-length]
short

Shorter than default, also including response time.

ote-addr :remote-user :method :url HTTP/:http-version :status :res[content-length] - :response-time ms
tiny

The minimal output.

hod :url :status :res[content-length] - :response-time ms
Tokens Creating new tokens

To define a token, simply invoke morgan.token() with the name and a callback function. This callback function is expected to return a string value. The value returned is then available as “:type” in this case:

an.token('type', function(req, res){ return req.headers['content-type']; })

Calling morgan.token() using the same name as an existing token will overwrite that token definition.

:date[format]

The current date and time in UTC. The available formats are:

If no format is given, then the default is web.

:http-version

The HTTP version of the request.

:method

The HTTP method of the request.

:referrer

The Referrer header of the request. This will use the standard mis-spelled Referer header if exists, otherwise Referrer.

:remote-addr

The remote address of the request. This will use req.ip, otherwise the standard req.connection.remoteAddress value (socket address).

:remote-user

The user authenticated as part of Basic auth for the request.

:req[header]

The given header of the request.

:res[header]

The given header of the response.

:response-time[digits]

The time between the request coming into morgan and when the response headers are written, in milliseconds.

The digits argument is a number that specifies the number of digits to include on the number, defaulting to 3, which provides microsecond percision.

:status

The status code of the response.

If the request/response cycle completes before a response was sent to the client (for example, the TCP socket closed prematurely by a client aborting the request), then the status will be empty (displayed as "-" in the log).

:url

The URL of the request. This will use req.originalUrl if exists, otherwise req.url.

:user-agent

The contents of the User-Agent header of the request.

morgan.compile(format)

Compile a format string into a function for use by morgan. A format string is a string that represents a single log line and can utilize token syntax. Tokens are references by :token-name. If tokens accept arguments, they can be passed using [], for example: :token-name[pretty] would pass the string 'pretty' as an argument to the token token-name.

Normally formats are defined using morgan.format(name, format), but for certain advanced uses, this compile function is directly available.

Examples
express/connect

Simple app that will log all request in the Apache combined format to STDOUT

express = require('express')
morgan = require('morgan')

app = express()

use(morgan('combined'))

get('/', function (req, res) {
s.send('hello, world!')

vanilla http server

Simple app that will log all request in the Apache combined format to STDOUT

finalhandler = require('finalhandler')
http = require('http')
morgan = require('morgan')

reate "middleware"
logger = morgan('combined')

.createServer(function (req, res) {
r done = finalhandler(req, res)
gger(req, res, function (err) {
if (err) return done(err)

// respond to request
res.setHeader('content-type', 'text/plain')
res.end('hello, world!')


write logs to a file
single file

Simple app that will log all requests in the Apache combined format to the file access.log.

express = require('express')
fs = require('fs')
morgan = require('morgan')

app = express()

reate a write stream (in append mode)
accessLogStream = fs.createWriteStream(__dirname + '/access.log', {flags: 'a'})

etup the logger
use(morgan('combined', {stream: accessLogStream}))

get('/', function (req, res) {
s.send('hello, world!')

log file rotation

Simple app that will log all requests in the Apache combined format to one log file per date in the log/ directory using the file-stream-rotator module.

FileStreamRotator = require('file-stream-rotator')
express = require('express')
fs = require('fs')
morgan = require('morgan')

app = express()
logDirectory = __dirname + '/log'

nsure log directory exists
xistsSync(logDirectory) || fs.mkdirSync(logDirectory)

reate a rotating write stream
accessLogStream = FileStreamRotator.getStream({
te_format: 'YYYYMMDD',
lename: logDirectory + '/access-%DATE%.log',
equency: 'daily',
rbose: false


etup the logger
use(morgan('combined', {stream: accessLogStream}))

get('/', function (req, res) {
s.send('hello, world!')

use custom token formats

Sample app that will use custom token formats. This adds an ID to all requests and displays it using the :id token.

express = require('express')
morgan = require('morgan')
uuid = require('node-uuid')

an.token('id', function getId(req) {
turn req.id


app = express()

use(assignId)
use(morgan(':id :method :url :response-time'))

get('/', function (req, res) {
s.send('hello, world!')


tion assignId(req, res, next) {
q.id = uuid.v4()
xt()

License

MIT


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.