forked from gov-suite/governed-service-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
health.ts
226 lines (192 loc) · 5.82 KB
/
health.ts
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
import * as safety from "https://denopkg.com/shah/[email protected]/mod.ts";
/**
* Health Check Response Format for HTTP APIs (draft-inadarei-api-health-check-01)
* See: https://tools.ietf.org/id/draft-inadarei-api-health-check-01.html
*/
/**
* Status: (required) indicates whether the service status is acceptable or not. API publishers SHOULD use following values for the field:
* “pass”: healthy,
* “fail”: unhealthy, and
* “warn”: healthy, with some concerns.
* The value of the status field is tightly related with the HTTP response code returned by the health endpoint. For “pass” and “warn” statuses
* HTTP response code in the 2xx-3xx range MUST be used. For “fail” status HTTP response code in the 4xx-5xx range MUST be used. In case of the
* “warn” status, endpoint SHOULD return HTTP status in the 2xx-3xx range and additional information SHOULD be provided, utilizing optional
* fields of the response.
*/
export type ServiceHealthState = "pass" | "fail" | "warn";
export type ServiceHealthLinks = Record<string, string>;
export interface ServiceHealthStatusable {
status: ServiceHealthState;
}
export const isServiceHealthStatus = safety.typeGuard<ServiceHealthStatusable>(
"status",
);
export interface ServiceHealthDiagnosable {
output: string;
notes?: string[];
}
export const isServiceHealthDiagnosable = safety.typeGuard<
ServiceHealthDiagnosable
>("output");
export interface ServiceHealthVersioned {
version: string;
releaseID: string;
}
export const isServiceHealthVersioned = safety.typeGuard<
ServiceHealthVersioned
>("version", "releaseID");
export interface ServiceHealthComponents {
details: Record<ServiceHealthComponentName, ServiceHealthComponentDetails>;
}
export const isServiceHealthComponents = safety.typeGuard<
ServiceHealthComponents
>("details");
export interface ServiceHealthLinkable {
links: ServiceHealthLinks;
}
export const isServiceHealthLinkable = safety.typeGuard<
ServiceHealthLinkable
>("links");
export interface ServiceHealthIdentity {
serviceID: string;
description: string;
}
export const isServiceHealthIdentity = safety.typeGuard<
ServiceHealthIdentity
>("serviceID", "description");
export interface HealthyServiceStatus
extends
ServiceHealthStatusable,
ServiceHealthVersioned,
Partial<ServiceHealthLinkable>,
Partial<ServiceHealthComponents>,
Partial<ServiceHealthIdentity> {
status: "pass";
}
export interface UnhealthyServiceStatus
extends
ServiceHealthStatusable,
ServiceHealthVersioned,
ServiceHealthDiagnosable,
ServiceHealthComponents,
ServiceHealthIdentity,
Partial<ServiceHealthLinkable> {
status: "fail" | "warn";
}
export type HealthServiceStatus = HealthyServiceStatus | UnhealthyServiceStatus;
export interface HealthServiceStatusEndpoint {
readonly headers: Record<string, string>;
readonly body: HealthServiceStatus;
}
export function isHealthy(o: unknown): o is HealthyServiceStatus {
if (isServiceHealthStatus(o)) {
if (o.status === "pass") return true;
}
return false;
}
export function isUnhealthy(o: unknown): o is UnhealthyServiceStatus {
if (isServiceHealthStatus(o)) {
if (o.status !== "pass") return true;
}
return false;
}
export type TypicalServiceHealthMetricName =
| "utilization"
| "responseTime"
| "connections"
| "uptime";
export type ServiceHealthMetricValue =
| string
| number
| Date
| Record<string, unknown>
| Array<unknown>;
export interface ServiceHealthMetric {
metricName: TypicalServiceHealthMetricName | string;
metricValue: ServiceHealthMetricValue;
metricUnit: string;
}
export type ServiceHealthComponentName = string;
export type ServiceHealthComponentType = "component" | "datastore" | "system";
export interface ServiceHealthComponent {
componentId: string;
componentType: ServiceHealthComponentType;
}
export interface HealthyServiceHealthComponentStatus
extends
ServiceHealthStatusable,
ServiceHealthComponent,
Partial<ServiceHealthMetric>,
ServiceHealthLinkable {
time: Date;
node?: string;
}
export interface UnhealthyServiceHealthComponentStatus
extends
ServiceHealthStatusable,
ServiceHealthComponent,
Partial<ServiceHealthMetric>,
ServiceHealthDiagnosable,
ServiceHealthLinkable {
time: Date;
node?: string;
}
export type ServiceHealthComponentStatus =
| HealthyServiceHealthComponentStatus
| UnhealthyServiceHealthComponentStatus;
export type ServiceHealthComponentDetails = ServiceHealthComponentStatus[];
export function defaultLinks(): ServiceHealthLinks {
return {
"schema":
"https://tools.ietf.org/id/draft-inadarei-api-health-check-01.html",
};
}
export function healthyService(
report: Omit<HealthyServiceStatus, "status">,
): HealthyServiceStatus {
const links = defaultLinks();
return {
status: "pass",
...report,
links: report.links ? { ...report.links, ...links } : links,
};
}
export function healthyComponent(
report: Omit<HealthyServiceHealthComponentStatus, "status">,
): HealthyServiceHealthComponentStatus {
return {
status: "pass",
...report,
};
}
export function healthStatusEndpoint(
report: HealthServiceStatus,
): HealthServiceStatusEndpoint {
return {
headers: {
"Content-Type": "application/health+json",
"Cache-Control": "max-age=3600",
},
body: report,
};
}
export function unhealthyService(
status: "fail" | "warn",
report: Omit<UnhealthyServiceStatus, "status">,
): UnhealthyServiceStatus {
const links = defaultLinks();
return {
status: status,
...report,
links: report.links ? { ...report.links, ...links } : links,
};
}
export function unhealthyComponent(
status: "fail" | "warn",
report: Omit<UnhealthyServiceHealthComponentStatus, "status">,
): UnhealthyServiceHealthComponentStatus {
return {
status: status,
...report,
};
}