PeerTube/scripts/parse-log.ts

100 lines
2.6 KiB
TypeScript
Raw Normal View History

2018-06-19 10:45:33 +02:00
import * as program from 'commander'
2019-04-10 15:26:33 +02:00
import { createReadStream, readdir } from 'fs-extra'
2017-11-16 17:29:05 +01:00
import { join } from 'path'
import { createInterface } from 'readline'
import * as winston from 'winston'
import { labelFormatter } from '../server/helpers/logger'
import { CONFIG } from '../server/initializers/config'
2019-04-11 17:33:36 +02:00
import { mtimeSortFilesDesc } from '../shared/core-utils/logs/logs'
2017-11-16 17:29:05 +01:00
2018-06-19 10:45:33 +02:00
program
.option('-l, --level [level]', 'Level log (debug/info/warn/error)')
.parse(process.argv)
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
2018-03-08 18:16:15 +01:00
return `[${info.label}] ${toTimeFormat(info.timestamp)} ${info.level}: ${info.message}${additionalInfos}`
})
2018-06-26 17:52:14 +02:00
const logger = winston.createLogger({
2017-11-16 17:29:05 +01:00
transports: [
new winston.transports.Console({
2018-06-19 10:45:33 +02:00
level: program['level'] || 'debug',
2018-01-19 13:58:13 +01:00
stderrLevels: [],
format: winston.format.combine(
winston.format.splat(),
labelFormatter,
winston.format.colorize(),
loggerFormat
)
2017-11-16 17:29:05 +01:00
})
],
exitOnError: true
})
const logLevels = {
2018-01-19 13:58:13 +01:00
error: logger.error.bind(logger),
warn: logger.warn.bind(logger),
info: logger.info.bind(logger),
debug: logger.debug.bind(logger)
2017-11-16 17:29:05 +01:00
}
2019-04-10 15:26:33 +02:00
run()
.then(() => process.exit(0))
.catch(err => console.error(err))
2018-06-26 17:52:14 +02:00
2019-04-10 15:26:33 +02:00
function run () {
return new Promise(async res => {
const logFiles = await readdir(CONFIG.STORAGE.LOG_DIR)
const lastLogFile = await getNewestFile(logFiles, CONFIG.STORAGE.LOG_DIR)
2017-11-16 17:29:05 +01:00
2019-04-10 15:26:33 +02:00
const path = join(CONFIG.STORAGE.LOG_DIR, lastLogFile)
console.log('Opening %s.', path)
2017-11-16 17:29:05 +01:00
2019-04-10 15:26:33 +02:00
const stream = createReadStream(path)
2017-11-17 11:35:10 +01:00
2019-04-10 15:26:33 +02:00
const rl = createInterface({
input: stream
})
2018-03-08 18:16:15 +01:00
2019-04-10 15:26:33 +02:00
rl.on('line', line => {
const log = JSON.parse(line)
// Don't know why but loggerFormat does not remove splat key
Object.assign(log, { splat: undefined })
2018-03-08 18:16:15 +01:00
2019-04-10 15:26:33 +02:00
logLevels[ log.level ](log)
})
2018-03-08 18:16:15 +01:00
2019-04-10 15:26:33 +02:00
stream.once('close', () => res())
})
2018-03-08 18:16:15 +01:00
}
// Thanks: https://stackoverflow.com/a/37014317
2019-04-10 15:26:33 +02:00
async function getNewestFile (files: string[], basePath: string) {
const sorted = await mtimeSortFilesDesc(files, basePath)
2019-04-10 15:26:33 +02:00
return (sorted.length > 0) ? sorted[ 0 ].file : ''
}
function toTimeFormat (time: string) {
const timestamp = Date.parse(time)
2019-04-10 15:26:33 +02:00
if (isNaN(timestamp) === true) return 'Unknown date'
2019-04-10 15:26:33 +02:00
return new Date(timestamp).toISOString()
2018-07-30 10:59:31 +02:00
}