-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgc.json
143 lines (143 loc) · 3.38 KB
/
gc.json
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"metric_keys": [
"nodejs_total_heap_size"
],
"dashboard": {
"title": "Node.js Heap Statistics",
"description": "",
"visuals": [
{
"title": "Heap",
"description": "V8 Heap Statistics",
"line_label": "%name% - %hostname%",
"display": "LINE",
"format": "size",
"format_input": "byte",
"draw_null_as_zero": true,
"metrics": [
{
"name": "nodejs_total_heap_size",
"fields": [
{
"field": "GAUGE"
}
],
"tags": [
{
"key": "hostname",
"value": "*"
}
]
},
{
"name": "nodejs_total_heap_size_executable",
"fields": [
{
"field": "GAUGE"
}
],
"tags": [
{
"key": "hostname",
"value": "*"
}
]
},
{
"name": "nodejs_used_heap_size",
"fields": [
{
"field": "GAUGE"
}
],
"tags": [
{
"key": "hostname",
"value": "*"
}
]
},
{
"name": "nodejs_total_physical_size",
"fields": [
{
"field": "GAUGE"
}
],
"tags": [
{
"key": "hostname",
"value": "*"
}
]
},
{
"name": "nodejs_malloced_memory",
"fields": [
{
"field": "GAUGE"
}
],
"tags": [
{
"key": "hostname",
"value": "*"
}
]
}
],
"type": "timeseries"
},
{
"title": "Native Contexts",
"description": "The number of the top-level contexts currently active. Increase of this number over time indicates a memory leak.",
"line_label": "%name% - %hostname%",
"display": "LINE",
"format": "number",
"draw_null_as_zero": true,
"metrics": [
{
"name": "nodejs_number_of_native_contexts",
"fields": [
{
"field": "GAUGE"
}
],
"tags": [
{
"key": "hostname",
"value": "*"
}
]
}
],
"type": "timeseries"
},
{
"title": "Detached Contexts",
"description": "The number of contexts that were detached and not yet garbage collected. This number being non-zero indicates a potential memory leak.",
"line_label": "%name% - %hostname%",
"display": "LINE",
"format": "number",
"draw_null_as_zero": true,
"metrics": [
{
"name": "nodejs_number_of_detached_contexts",
"fields": [
{
"field": "GAUGE"
}
],
"tags": [
{
"key": "hostname",
"value": "*"
}
]
}
],
"type": "timeseries"
}
]
}
}