-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathschema.json
340 lines (340 loc) · 10.4 KB
/
schema.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
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Application Health",
"description": "Schema for media type application/health+json",
"type": "object",
"properties": {
"application": {
"$ref": "#/definitions/application"
},
"health": {
"$ref": "#/definitions/health"
},
"databases": {
"$ref": "#/definitions/databases"
},
"integrationpoints": {
"$ref": "#/definitions/integrationpoints"
},
"circuitbreakers": {
"$ref": "#/definitions/circuitbreakers"
},
"filesystems": {
"$ref": "#/definitions/filesystems"
}
},
"required": [
"application",
"health"
],
"definitions": {
"application": {
"title": "Application Information",
"description": "General information about application and current version",
"type": "object",
"properties": {
"name": {
"title": "Application name",
"description": "Organization-wide unique name for identifying the application",
"type": "string",
"minLength": 1
},
"datetime": {
"title": "Current date and time",
"description": "The application's current date and time incl. timezone (in ISO 8601: https://tools.ietf.org/html/rfc3339#section-5.6)",
"type": "string",
"format": "date-time",
"minLength": 1
},
"startup": {
"title": "Startup timestamp",
"description": "The date and time of when the application instance started (in ISO 8601: https://tools.ietf.org/html/rfc3339#section-5.6)",
"type": "string",
"format": "date-time",
"minLength": 1
},
"uptime": {
"title": "Application uptime",
"description": "The duration how long the application instance is running in the format: \"2 days, 12:43:22\"",
"type": "string",
"pattern": "^\\d+ days, \\d{2}:\\d{2}:\\d{2}(.\\d+)*$",
"minLength": 1
},
"hostname": {
"title": "Hostname",
"description": "Name of the host which is running the application instance",
"type": "string",
"format": "hostname",
"minLength": 1
},
"version": {
"title": "Version",
"description": "Current application version",
"type": "string",
"minLength": 1
}
},
"required": [
"name",
"datetime",
"startup",
"uptime",
"hostname"
]
},
"health": {
"title": "Health status",
"description": "Global health status aggregated by groups",
"type": "object",
"properties": {
"databases": {
"type": "boolean"
},
"integrationpoints": {
"type": "boolean"
},
"circuitbreakers": {
"type": "boolean"
},
"filesystem": {
"type": "boolean"
}
}
},
"database": {
"title": "Database health",
"description": "Detailed health information about a connected database",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Unique name/identifier of the database system",
"minLength": 1
},
"essential": {
"type": "boolean",
"description": "Database is essential for overall application health"
},
"health": {
"type": "boolean",
"description": "Connection established without any limitations"
},
"latency": {
"type": "number",
"description": "Latency or duration for full roundtrip in milliseconds"
},
"connections": {
"type": "integer",
"description": "Number of connections established"
},
"error": {
"type": "string",
"description": "Connectivity error occured, if any"
}
},
"required": [
"name",
"essential",
"health",
"latency"
]
},
"integrationpoint": {
"title": "Integration point health",
"description": "Detailed health information about an integration point",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Unique name/identifier of the integraiton point",
"minLength": 1
},
"uri": {
"type": "string",
"description": "Base URI of the integration point",
"minLength": 1
},
"essential": {
"type": "boolean",
"description": "Integration point is essential for overall application health"
},
"health": {
"type": "boolean",
"description": "Integration point callable without any limitations"
},
"latency": {
"type": "number",
"description": "Latency or duration for full roundtrip in milliseconds"
},
"lastCall": {
"type": "string",
"format": "date-time",
"description": "Date and time of last call to integration point (in ISO 8601: https://tools.ietf.org/html/rfc3339#section-5.6)",
"minLength": 1
},
"lastSuccess": {
"type": "string",
"format": "date-time",
"description": "Date and time of last successful call to integration point (in ISO 8601: https://tools.ietf.org/html/rfc3339#section-5.6)",
"minLength": 1
},
"callsLastMinute": {
"type": "integer",
"description": "Total number of calls to integration point within the last minute"
},
"callsLastHour": {
"type": "integer",
"description": "Total number of calls to integration point within the last hour"
},
"error": {
"type": "string",
"description": "Error occured when calling integration point, if any"
}
},
"required": [
"name",
"essential",
"health",
"latency"
]
},
"circuitbreaker": {
"title": "Circuit breaker state",
"description": "Detailed state information about a circuit breaker",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Unique name/identifier of the circuit breaker",
"minLength": 1
},
"essential": {
"type": "boolean",
"description": "Service behind circuit breaker is essential for overall application health"
},
"health": {
"type": "boolean",
"description": "True if circuit breaker is closed"
},
"state": {
"type": "string",
"pattern": "^closed|half-open|open$",
"description": "Current state of the circuit breaker"
},
"timeout": {
"type": "string",
"format": "date-time",
"description": "If state is \"open\", the date and time when the circuit breaker will switch back to half-open (in ISO 8601: https://tools.ietf.org/html/rfc3339#section-5.6)"
},
"lastCall": {
"type": "string",
"format": "date-time",
"description": "Date and time of last call through circuit breaker (in ISO 8601: https://tools.ietf.org/html/rfc3339#section-5.6)",
"minLength": 1
},
"lastSuccess": {
"type": "string",
"format": "date-time",
"description": "Date and time of last successful call through circuit breaker (in ISO 8601: https://tools.ietf.org/html/rfc3339#section-5.6)",
"minLength": 1
},
"callsLastMinute": {
"type": "integer",
"description": "Total number of calls through circuit breaker within the last minute"
},
"callsLastHour": {
"type": "integer",
"description": "Total number of calls through circuit breaker within the last hour"
},
"error": {
"type": "string",
"description": "Error occured when calling circuit breaker, if any"
}
},
"required": [
"name",
"essential",
"health",
"state"
]
},
"filesystem": {
"title": "File system health",
"description": "Detailed health information about a mounted file system",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Unique name/identifier of the file system",
"minLength": 1
},
"essential": {
"type": "boolean",
"description": "File system access is essential for overall application health"
},
"health": {
"type": "boolean",
"description": "Filesystem is fully accessible with expected rights"
},
"readable": {
"type": "boolean",
"description": "Filesystem is readable"
},
"writable": {
"type": "boolean",
"description": "Filesystem is writable"
},
"latency": {
"type": "number",
"description": "Latency or duration for full roundtrip in milliseconds"
},
"error": {
"type": "string",
"description": "Connectivity error occured, if any"
}
},
"required": [
"name",
"essential",
"health",
"latency"
]
},
"databases": {
"title": "Database health",
"description": "Detailed health information about all connected databases",
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/database"
}
},
"integrationpoints": {
"title": "Integration point health",
"description": "Detailed health information about all integration points",
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/integrationpoint"
}
},
"circuitbreakers": {
"title": "Circuit breaker health",
"description": "Detailed health information about all circuit breakers",
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/circuitbreaker"
}
},
"filesystems": {
"title": "File system health",
"description": "Detailed health information about all mounted file systems",
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/filesystem"
}
}
}
}