-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.json
119 lines (119 loc) · 2.94 KB
/
main.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
{
"metric_keys": [
"puma_threads"
],
"dashboard": {
"title": "Puma metrics",
"description": "Track Puma workers on this dashboard,\nsee how many worker processes are running\nand what the used/available concurrency is for those workers.\n",
"visuals": [
{
"type": "timeseries",
"display": "line",
"format": "number",
"draw_null_as_zero": true,
"title": "Threads running/max",
"description": "Number of threads (over all workers, if running multiple processes)",
"line_label": "%type% - %hostname%",
"metrics": [
{
"name": "puma_threads",
"fields": [
{
"field": "gauge"
}
],
"tags": [
{
"key": "hostname",
"value": "*"
},
{
"key": "type",
"value": "*"
}
]
}
]
},
{
"type": "timeseries",
"display": "line",
"format": "number",
"draw_null_as_zero": true,
"title": "Connection backlog",
"description": "Connections waiting to be processed in the server backlog queue.",
"line_label": "%hostname%",
"metrics": [
{
"name": "puma_connection_backlog",
"fields": [
{
"field": "gauge"
}
],
"tags": [
{
"key": "hostname",
"value": "*"
}
]
}
]
},
{
"type": "timeseries",
"display": "line",
"format": "number",
"draw_null_as_zero": true,
"title": "Pool capacity",
"description": "How many idle threads are ready to receive requests.",
"line_label": "%hostname%",
"metrics": [
{
"name": "puma_pool_capacity",
"fields": [
{
"field": "gauge"
}
],
"tags": [
{
"key": "hostname",
"value": "*"
}
]
}
]
},
{
"type": "timeseries",
"display": "line",
"format": "number",
"draw_null_as_zero": true,
"title": "Workers",
"description": "After a deploy, old workers should be replaced with newly booted workers.",
"line_label": "%type% - %hostname%",
"metrics": [
{
"name": "puma_workers",
"fields": [
{
"field": "gauge"
}
],
"tags": [
{
"key": "hostname",
"value": "*"
},
{
"key": "type",
"value": "*"
}
]
}
]
}
]
}
}