web-dev-qa-db-ja.com

人間はjson winstonのログファイルをどのように読みますか?

API、スクリプト、およびそうでないものにとっては素晴らしいようです。しかし、テキストエディタではウィンストンjsonスタックトレースを読むのは非常に困難です。例えば。

{"level":"info","message":"starting","timestamp":"2014-05-14T15:45:44.334Z"}
{"date":"Wed May 14 2014 08:45:45 GMT-0700 (Pacific Daylight Time)","process":{"pid":8804,"uid":null,"gid":null,"cwd":"C:\\data\\mytool","execPath":"C:\\Program Files\\nodejs\\node.exe","version":"v0.10.21","argv":["node","C:\\data\\mytool\\server"],"memoryUsage":{"rss":45199360,"heapTotal":32171264,"heapUsed":15158096}},"os":{"loadavg":[0,0,0],"uptime":70496.6138252},"trace":[{"column":null,"file":null,"function":"Object.parse","line":null,"method":"parse","native":true},{"column":32,"file":"C:\\data\\mytool\\src\\status.js","function":"Request._callback","line":166,"method":"_callback","native":false},{"column":22,"file":"C:\\data\\mytool\\node_modules\\request\\request.js","function":"Request.self.callback","line":122,"method":"self.callback","native":false},{"column":17,"file":"events.js","function":"Request.EventEmitter.emit","line":98,"method":"EventEmitter.emit","native":false},{"column":14,"file":"C:\\data\\mytool\\node_modules\\request\\request.js","function":"","line":888,"method":null,"native":false},{"column":20,"file":"events.js","function":"Request.EventEmitter.emit","line":117,"method":"EventEmitter.emit","native":false},{"column":12,"file":"C:\\data\\mytool\\node_modules\\request\\request.js","function":"","line":839,"method":null,"native":false},{"column":20,"file":"events.js","function":"IncomingMessage.EventEmitter.emit","line":117,"method":"EventEmitter.emit","native":false},{"column":16,"file":"_stream_readable.js","function":null,"line":920,"method":null,"native":false},{"column":13,"file":"node.js","function":"process._tickCallback","line":415,"method":"_tickCallback","native":false}],"stack":["SyntaxError: Unexpected end of input","    at Object.parse (native)","    at Request._callback (C:\\data\\mytool\\src\\status.js:166:32)","    at Request.self.callback (C:\\data\\mytool\\node_modules\\request\\request.js:122:22)","    at Request.EventEmitter.emit (events.js:98:17)","    at Request.<anonymous> (C:\\data\\mytool\\node_modules\\request\\request.js:888:14)","    at Request.EventEmitter.emit (events.js:117:20)","    at IncomingMessage.<anonymous> (C:\\data\\mytool\\node_modules\\request\\request.js:839:12)","    at IncomingMessage.EventEmitter.emit (events.js:117:20)","    at _stream_readable.js:920:16","    at process._tickCallback (node.js:415:13)"],"level":"error","message":"uncaughtException: Unexpected end of input","timestamp":"2014-05-14T15:45:45.228Z"}
32
ubershmekel

ファイルトランスポートの「json」プロパティをfalseに設定するだけで、人間が読めるログを取得できます。コンソールに表示されるものと同じです。

    var winston = require('winston');
    var logger = new winston.Logger({
      transports: [
        new winston.transports.File({
          json: false,
          filename:'log.log'
        }),
        new winston.transports.Console()
      ],
      exitOnError: false
    });
   logger.log('info', 'some msg');
21
MichaelS

JSONのsedのような jq を介して渡します。例えば。:

jq . file.log
14
weiyin

コマンドラインのJSONフォーマッター を単に実行しないのはなぜですか?

例えば(上記のリンクからの例)

echo '{ element0: "lorem", element1: "ipsum" }' | python -mjson.tool

別の方法としては、上記のツールを使用してシェルスクリプトを作成する方法(またはおそらく) jq を使用して、カスタムスタックトレース解析を実行する方法があります。

4
Brian Agnew

Keen.IO を使用する場合、CLIツールは行末のJSONをアップロードでき、「Explorer」を使用してログイベントをフィルタリング/表示できます。

keen events:add --collection myLogs --file winston-output.json

2
simbolo

winston-logs-display を試してください。

デモ出力:

winston-logs-display output

また、 Log.io はこれに適したオプションです。 winstonログをサポートします。

2
Vikas Kapadiya

遅いですが、シェルはそれを行うことができ、フォーマットされ、色付けされたJSONを取得できます。

./thing | ndjson

asciicast

どうやって?

各行でいくつかのJSONフォーマットコマンドを実行します。bashまたはzsh構文は次のとおりです。

./thing | while read in ; do echo "$in" | python -m json.tool ; done

fishの構文は

./thing | while read in; echo "$in" | python -mjson.tool; end #fish

それをさらに豪華にするには、pip install pygmentsだけです。

便利なエイリアスppを定義して、cat file.json | ppを実行します。

alias pp="python -mjson.tool | pygmentize -l js"

そして、ndjsonを定義します

alias ndjson='while read in; do echo "$in" | pp; done'

次のように入力して、フォーマットされ、色付けされたJSONを取得できます。

./thing | ndjson

funcedおよびfuncsaveを使用して、fishでエイリアスを定義します)

1
wires

ノードの bunyan には、 [〜#〜] cli [〜#〜] を使用して、人間が読める方法でjsonログをフィルタリングおよび表示できる機能があります。

$ node hi.js | bunyan -l warn
[2013-01-04T19:08:37.182Z]  WARN: myapp/40353 on banana.local: au revoir (lang=fr)

bunyan CLI output

1
ubershmekel