83 lines
2.0 KiB
JavaScript
83 lines
2.0 KiB
JavaScript
'use strict'
|
|
|
|
const bench = require('fastbench')
|
|
const pino = require('../')
|
|
const bunyan = require('bunyan')
|
|
const bole = require('bole')('bench')
|
|
const winston = require('winston')
|
|
const fs = require('fs')
|
|
const dest = fs.createWriteStream('/dev/null')
|
|
const loglevel = require('./utils/wrap-log-level')(dest)
|
|
const plogNodeStream = pino(dest)
|
|
delete require.cache[require.resolve('../')]
|
|
const plogDest = require('../')(pino.destination('/dev/null'))
|
|
delete require.cache[require.resolve('../')]
|
|
const plogMinLength = require('../')(pino.destination({ dest: '/dev/null', sync: false, minLength: 4096 }))
|
|
const blog = bunyan.createLogger({
|
|
name: 'myapp',
|
|
streams: [{
|
|
level: 'trace',
|
|
stream: dest
|
|
}]
|
|
})
|
|
require('bole').output({
|
|
level: 'info',
|
|
stream: dest
|
|
}).setFastTime(true)
|
|
const chill = winston.createLogger({
|
|
transports: [
|
|
new winston.transports.Stream({
|
|
stream: fs.createWriteStream('/dev/null')
|
|
})
|
|
]
|
|
})
|
|
|
|
const max = 10
|
|
|
|
const run = bench([
|
|
function benchBunyanObj (cb) {
|
|
for (var i = 0; i < max; i++) {
|
|
blog.info({ hello: 'world' })
|
|
}
|
|
setImmediate(cb)
|
|
},
|
|
function benchWinstonObj (cb) {
|
|
for (var i = 0; i < max; i++) {
|
|
chill.info({ hello: 'world' })
|
|
}
|
|
setImmediate(cb)
|
|
},
|
|
function benchBoleObj (cb) {
|
|
for (var i = 0; i < max; i++) {
|
|
bole.info({ hello: 'world' })
|
|
}
|
|
setImmediate(cb)
|
|
},
|
|
function benchLogLevelObject (cb) {
|
|
for (var i = 0; i < max; i++) {
|
|
loglevel.info({ hello: 'world' })
|
|
}
|
|
setImmediate(cb)
|
|
},
|
|
function benchPinoObj (cb) {
|
|
for (var i = 0; i < max; i++) {
|
|
plogDest.info({ hello: 'world' })
|
|
}
|
|
setImmediate(cb)
|
|
},
|
|
function benchPinoMinLengthObj (cb) {
|
|
for (var i = 0; i < max; i++) {
|
|
plogMinLength.info({ hello: 'world' })
|
|
}
|
|
setImmediate(cb)
|
|
},
|
|
function benchPinoNodeStreamObj (cb) {
|
|
for (var i = 0; i < max; i++) {
|
|
plogNodeStream.info({ hello: 'world' })
|
|
}
|
|
setImmediate(cb)
|
|
}
|
|
], 10000)
|
|
|
|
run(run)
|