Add script to parse log files
[oweals/peertube.git] / scripts / parse-log.ts
1 import { createReadStream } from 'fs'
2 import { join } from 'path'
3 import { createInterface } from 'readline'
4 import * as winston from 'winston'
5 import { readFileBufferPromise } from '../server/helpers/core-utils'
6 import { CONFIG } from '../server/initializers/constants'
7
8 const label = CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT
9
10 const logger = new winston.Logger({
11   transports: [
12     new winston.transports.Console({
13       level: 'debug',
14       label: label,
15       handleExceptions: true,
16       humanReadableUnhandledException: true,
17       json: false,
18       colorize: true,
19       prettyPrint: true
20     })
21   ],
22   exitOnError: true
23 })
24
25 const logLevels = {
26   error: logger.error,
27   warn: logger.warn,
28   info: logger.info,
29   debug: logger.debug
30 }
31
32 const path = join(CONFIG.STORAGE.LOG_DIR, 'all-logs.log')
33 console.log('Opening %s.', path)
34
35 const rl = createInterface({
36   input: createReadStream(path)
37 })
38
39 rl.on('line', line => {
40   const log = JSON.parse(line)
41   logLevels[log.level](log.message)
42 })