1
0
Fork 0
peertube/scripts/parse-log.ts

64 lines
1.6 KiB
TypeScript
Raw Normal View History

2017-11-16 16:29:05 +00:00
import { createReadStream } from 'fs'
import { join } from 'path'
import { createInterface } from 'readline'
import * as winston from 'winston'
import { labelFormatter } from '../server/helpers/logger'
2017-11-16 16:29:05 +00:00
import { CONFIG } from '../server/initializers/constants'
const excludedKeys = {
level: true,
message: true,
splat: true,
timestamp: true,
label: true
}
function keysExcluder (key, value) {
return excludedKeys[key] === true ? undefined : value
}
const loggerFormat = winston.format.printf((info) => {
let additionalInfos = JSON.stringify(info, keysExcluder, 2)
if (additionalInfos === '{}') additionalInfos = ''
else additionalInfos = ' ' + additionalInfos
return `[${info.label}] ${new Date(info.timestamp).toISOString()} ${info.level}: ${info.message}${additionalInfos}`
})
2018-01-19 12:58:13 +00:00
const logger = new winston.createLogger({
2017-11-16 16:29:05 +00:00
transports: [
new winston.transports.Console({
level: 'debug',
2018-01-19 12:58:13 +00:00
stderrLevels: [],
format: winston.format.combine(
winston.format.splat(),
labelFormatter,
winston.format.colorize(),
loggerFormat
)
2017-11-16 16:29:05 +00:00
})
],
exitOnError: true
})
const logLevels = {
2018-01-19 12:58:13 +00:00
error: logger.error.bind(logger),
warn: logger.warn.bind(logger),
info: logger.info.bind(logger),
debug: logger.debug.bind(logger)
2017-11-16 16:29:05 +00:00
}
2018-01-19 12:58:13 +00:00
const path = join(CONFIG.STORAGE.LOG_DIR, 'peertube.log')
2017-11-16 16:29:05 +00:00
console.log('Opening %s.', path)
const rl = createInterface({
input: createReadStream(path)
})
rl.on('line', line => {
const log = JSON.parse(line)
2018-01-19 12:58:13 +00:00
// Don't know why but loggerFormat does not remove splat key
Object.assign(log, { splat: undefined })
2017-11-17 10:35:10 +00:00
2018-01-19 12:58:13 +00:00
logLevels[log.level](log)
2017-11-16 16:29:05 +00:00
})