-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasic.js
82 lines (76 loc) · 2.13 KB
/
basic.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
* Copyright (c) Maximilian Antoni <max@javascript.studio>
*
* @license MIT
*/
'use strict';
const Transform = require('stream').Transform;
const topics = require('@studio/log-topics');
const valueFormat = require('./lib/value-format');
function formatStack(style, stack) {
if (style === true || style === 'full') {
return stack;
}
const p1 = stack.indexOf('\n');
const first_line = p1 === -1 ? stack : stack.substring(0, p1);
if (style === 'message' || p1 === -1) {
return first_line;
}
const p2 = stack.indexOf('\n', p1 + 1);
const peek = p2 === -1
? stack.substring(p1 + 1)
: stack.substring(p1 + 1, p2);
return `${first_line} ${peek.trim()}`;
}
module.exports = class extends Transform {
constructor(opts) {
super({
writableObjectMode: true
});
opts = opts || {};
this.ts = opts.ts !== false;
this.topic = opts.topic !== false;
this.ns = opts.ns !== false;
this.data = opts.data !== false;
this.stack = opts.hasOwnProperty('stack') ? opts.stack : 'peek';
}
_transform(entry, enc, callback) {
const parts = [];
if (this.ts) {
parts.push(new Date(entry.ts).toISOString());
}
if (this.topic) {
parts.push(topics[entry.topic]);
}
if (this.ns) {
parts.push(`[${entry.ns}]`);
}
if (entry.msg) {
parts.push(entry.msg);
}
if (this.data && entry.data) {
if (typeof entry.data === 'object') {
for (const key in entry.data) {
if (entry.data.hasOwnProperty(key)) {
const value = entry.data[key];
const kvu = valueFormat(key, value, JSON.stringify);
const k = kvu[0];
const v = kvu[1];
const unit = kvu[2];
parts.push(k ? `${k}=${v}${unit}` : `${v}${unit}`);
}
}
} else {
parts.push(JSON.stringify(entry.data));
}
}
if (this.stack && entry.stack) {
parts.push(formatStack(this.stack, entry.stack));
}
let str = parts.join(' ');
if (this.stack && entry.cause) {
str += `\n caused by ${formatStack(this.stack, entry.cause)}`;
}
callback(null, `${str}\n`);
}
};