-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdashboard.yaml
193 lines (190 loc) · 4.79 KB
/
dashboard.yaml
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
{% set pr_server = "http://localhost:8010/monitoring/v1" %}
{% set uin_server = "http://localhost:8020/monitoring/v1" %}
{% set notification_server = "http://localhost:8030/monitoring/v1" %}
{% set orchestrator_server = "http://localhost:8040/monitoring/v1" %}
---
title: OSIA
rows:
- label: Population Registry
cells:
- label: PR
type: label
- label: Health
server: "{{pr_server}}/is_healthy"
type: status
- label: CPU
server: "{{pr_server}}/metrics/gauges/cpu/count"
type: gauge
unit: "%"
max: 100
gauge_color: green
color: "#C0F0C0"
- label: Memory
server: "{{pr_server}}/metrics/gauges/memory/count"
type: gauge
unit: MB
factor: "/1048576"
max: 256
gauge_color: blue
color: "#C0D0F0"
- label: Threads
server: "{{pr_server}}/metrics/gauges/num_threads/count"
type: value
color: blue
- type: empty
- label: createPerson
server: "{{pr_server}}/metrics/histograms/createPerson"
type: histogram
unit: ms
factor: "*1000"
color: "#ff000080"
median_color: "#00ff0080"
- label: createPerson
server: ["{{pr_server}}/metrics/meters/createPerson/201/rate1", "{{pr_server}}/metrics/meters/createPerson/409/rate1"]
type: gauge
unit: "/h"
factor: "*3600"
gauge_color: green
color: "#C0F0C0"
max: 25000
- label: createIdentityWithId
server: "{{pr_server}}/metrics/histograms/createIdentityWithId"
type: histogram
unit: ms
factor: "*1000"
color: "#ff000080"
median_color: "#00ff0080"
- label: createIdentityWithId
server: ["{{pr_server}}/metrics/meters/createIdentityWithId/201/rate1", "{{pr_server}}/metrics/meters/createIdentityWithId/409/rate1"]
type: gauge
unit: "/h"
factor: "*3600"
gauge_color: green
color: "#C0F0C0"
max: 25000
- label: UIN Generator
cells:
- label: UIN
type: label
- label: Health
server: "{{uin_server}}/is_healthy"
type: status
- label: CPU
server: "{{uin_server}}/metrics/gauges/cpu/count"
type: gauge
unit: "%"
max: 100
gauge_color: green
color: "#C0F0C0"
- label: Memory
server: "{{uin_server}}/metrics/gauges/memory/count"
type: gauge
unit: MB
factor: "/1048576"
max: 256
gauge_color: blue
color: "#C0D0F0"
- label: Threads
server: "{{uin_server}}/metrics/gauges/num_threads/count"
type: value
color: blue
- type: empty
- label: generateUIN
server: "{{uin_server}}/metrics/histograms/generateUIN"
type: histogram
unit: ms
factor: "*1000"
color: "#ff000080"
median_color: "#00ff0080"
- label: generateUIN
server: "{{uin_server}}/metrics/meters/generateUIN/200/rate1"
type: gauge
unit: "/h"
factor: "*3600"
gauge_color: green
color: "#C0F0C0"
max: 25000
- label: Notification
cells:
- label: Notification
type: label
- label: Health
server: "{{notification_server}}/is_healthy"
type: status
- label: CPU
server: "{{notification_server}}/metrics/gauges/cpu/count"
type: gauge
unit: "%"
max: 100
gauge_color: green
color: "#C0F0C0"
- label: Memory
server: "{{notification_server}}/metrics/gauges/memory/count"
type: gauge
unit: MB
factor: "/1048576"
max: 256
gauge_color: blue
color: "#C0D0F0"
- label: Threads
server: "{{notification_server}}/metrics/gauges/num_threads/count"
type: value
color: blue
- type: empty
- label: publish
server: "{{notification_server}}/metrics/histograms/publish"
type: histogram
unit: ms
factor: "*1000"
color: "#ff000080"
median_color: "#00ff0080"
- label: publish
server: "{{notification_server}}/metrics/meters/publish/200/rate1"
type: gauge
unit: "/h"
factor: "*3600"
gauge_color: green
color: "#C0F0C0"
max: 25000
- label: Orchestrator
cells:
- label: Orchestrator
type: label
- label: Health
server: "{{orchestrator_server}}/is_healthy"
type: status
- label: CPU
server: "{{orchestrator_server}}/metrics/gauges/cpu/count"
type: gauge
unit: "%"
max: 100
gauge_color: green
color: "#C0F0C0"
- label: Memory
server: "{{orchestrator_server}}/metrics/gauges/memory/count"
type: gauge
unit: MB
factor: "/1048576"
max: 256
gauge_color: blue
color: "#C0D0F0"
- label: Threads
server: "{{orchestrator_server}}/metrics/gauges/num_threads/count"
type: value
color: blue
- type: empty
- label: cr_event
server: "{{orchestrator_server}}/metrics/histograms/cr_event"
type: histogram
unit: ms
factor: "*1000"
color: "#ff000080"
median_color: "#00ff0080"
- label: cr_event
server: "{{orchestrator_server}}/metrics/meters/cr_event/200/rate1"
type: gauge
unit: "/h"
factor: "*3600"
gauge_color: green
color: "#C0F0C0"
max: 25000