-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstatus-layout.js
58 lines (58 loc) · 1.07 KB
/
status-layout.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
module.exports = [
[
{
position: {
grow: 3
},
views: [
{
type: "log",
title: "stdout",
borderColor: "green",
exclude: "^\\[STATUS\\]",
streams: ["stdout"]
},
{
type: "log",
title: "stderr",
borderColor: "red",
exclude: "^\\[STATUS\\]",
streams: ["stderr"]
},
{
type: "log",
title: "status",
borderColor: "light-blue",
fgColor: "",
bgColor: "",
streams: ["stdout", "stderr"],
include: "^\\[STATUS\\](.*)",
position: {
size: 3
}
}
]
},
{
views: [
{
type: "cpu",
title: "cpu utilization",
limit: 30
},
{
type: "eventLoop",
title: "EL delay",
limit: 30
},
{
type: "memory",
title: "memory",
position: {
size: 15
}
}
]
}
]
];