@algolia/monitoring 5.2.4-beta.5 → 5.10.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -7
- package/dist/browser.d.ts +194 -63
- package/dist/builds/browser.js +24 -22
- package/dist/builds/browser.js.map +1 -1
- package/dist/builds/browser.min.js +1 -1
- package/dist/builds/browser.min.js.map +1 -1
- package/dist/builds/browser.umd.js +4 -4
- package/dist/builds/fetch.js +388 -0
- package/dist/builds/fetch.js.map +1 -0
- package/dist/builds/node.cjs +21 -20
- package/dist/builds/node.cjs.map +1 -1
- package/dist/builds/node.js +22 -20
- package/dist/builds/node.js.map +1 -1
- package/dist/fetch.d.ts +437 -0
- package/dist/node.d.cts +196 -64
- package/dist/node.d.ts +196 -64
- package/dist/src/monitoringClient.cjs +19 -19
- package/dist/src/monitoringClient.cjs.map +1 -1
- package/dist/src/monitoringClient.js +19 -19
- package/dist/src/monitoringClient.js.map +1 -1
- package/index.d.ts +0 -1
- package/index.js +1 -2
- package/package.json +16 -11
- package/model/badRequest.ts +0 -5
- package/model/clientMethodProps.ts +0 -132
- package/model/errorBase.ts +0 -8
- package/model/forbidden.ts +0 -5
- package/model/incident.ts +0 -15
- package/model/incidentEntry.ts +0 -12
- package/model/incidentsResponse.ts +0 -7
- package/model/index.ts +0 -27
- package/model/indexingMetric.ts +0 -7
- package/model/indexingTimeResponse.ts +0 -7
- package/model/infrastructureResponse.ts +0 -7
- package/model/inventoryResponse.ts +0 -7
- package/model/latencyMetric.ts +0 -7
- package/model/latencyResponse.ts +0 -7
- package/model/metric.ts +0 -3
- package/model/metrics.ts +0 -30
- package/model/period.ts +0 -3
- package/model/probesMetric.ts +0 -13
- package/model/region.ts +0 -21
- package/model/server.ts +0 -33
- package/model/serverStatus.ts +0 -3
- package/model/status.ts +0 -6
- package/model/statusResponse.ts +0 -7
- package/model/timeEntry.ts +0 -13
- package/model/type.ts +0 -3
- package/model/unauthorized.ts +0 -5
package/dist/node.d.cts
CHANGED
|
@@ -1,25 +1,10 @@
|
|
|
1
1
|
import * as _algolia_client_common from '@algolia/client-common';
|
|
2
|
-
import { ClientOptions } from '@algolia/client-common';
|
|
3
|
-
|
|
4
|
-
type BadRequest = {
|
|
5
|
-
reason?: string;
|
|
6
|
-
};
|
|
7
|
-
|
|
8
|
-
/**
|
|
9
|
-
* Error.
|
|
10
|
-
*/
|
|
11
|
-
type ErrorBase = Record<string, any> & {
|
|
12
|
-
message?: string;
|
|
13
|
-
};
|
|
14
|
-
|
|
15
|
-
type Forbidden = {
|
|
16
|
-
reason?: string;
|
|
17
|
-
};
|
|
2
|
+
import { CreateClientOptions, RequestOptions, ClientOptions } from '@algolia/client-common';
|
|
18
3
|
|
|
19
4
|
/**
|
|
20
5
|
* Status of the cluster.
|
|
21
6
|
*/
|
|
22
|
-
type Status = '
|
|
7
|
+
type Status = 'operational' | 'degraded_performance' | 'partial_outage' | 'major_outage';
|
|
23
8
|
|
|
24
9
|
/**
|
|
25
10
|
* Incident details.
|
|
@@ -41,7 +26,9 @@ type IncidentEntry = {
|
|
|
41
26
|
};
|
|
42
27
|
|
|
43
28
|
type IncidentsResponse = {
|
|
44
|
-
incidents?:
|
|
29
|
+
incidents?: {
|
|
30
|
+
[key: string]: Array<IncidentEntry>;
|
|
31
|
+
};
|
|
45
32
|
};
|
|
46
33
|
|
|
47
34
|
type TimeEntry = {
|
|
@@ -56,7 +43,9 @@ type TimeEntry = {
|
|
|
56
43
|
};
|
|
57
44
|
|
|
58
45
|
type IndexingMetric = {
|
|
59
|
-
indexing?:
|
|
46
|
+
indexing?: {
|
|
47
|
+
[key: string]: Array<TimeEntry>;
|
|
48
|
+
};
|
|
60
49
|
};
|
|
61
50
|
|
|
62
51
|
type IndexingTimeResponse = {
|
|
@@ -78,23 +67,33 @@ type Metrics = {
|
|
|
78
67
|
/**
|
|
79
68
|
* CPU idleness in %.
|
|
80
69
|
*/
|
|
81
|
-
cpu_usage?:
|
|
70
|
+
cpu_usage?: {
|
|
71
|
+
[key: string]: Array<ProbesMetric>;
|
|
72
|
+
};
|
|
82
73
|
/**
|
|
83
74
|
* RAM used for indexing in MB.
|
|
84
75
|
*/
|
|
85
|
-
ram_indexing_usage?:
|
|
76
|
+
ram_indexing_usage?: {
|
|
77
|
+
[key: string]: Array<ProbesMetric>;
|
|
78
|
+
};
|
|
86
79
|
/**
|
|
87
80
|
* RAM used for search in MB.
|
|
88
81
|
*/
|
|
89
|
-
ram_search_usage?:
|
|
82
|
+
ram_search_usage?: {
|
|
83
|
+
[key: string]: Array<ProbesMetric>;
|
|
84
|
+
};
|
|
90
85
|
/**
|
|
91
86
|
* Solid-state disk (SSD) usage expressed as % of RAM. 0% means no SSD usage. A value of 50% indicates 32 GB SSD usage for a machine with 64 RAM.
|
|
92
87
|
*/
|
|
93
|
-
ssd_usage?:
|
|
88
|
+
ssd_usage?: {
|
|
89
|
+
[key: string]: Array<ProbesMetric>;
|
|
90
|
+
};
|
|
94
91
|
/**
|
|
95
92
|
* Average build time of the indices in seconds.
|
|
96
93
|
*/
|
|
97
|
-
avg_build_time?:
|
|
94
|
+
avg_build_time?: {
|
|
95
|
+
[key: string]: Array<ProbesMetric>;
|
|
96
|
+
};
|
|
98
97
|
};
|
|
99
98
|
|
|
100
99
|
type InfrastructureResponse = {
|
|
@@ -133,28 +132,28 @@ type Server = {
|
|
|
133
132
|
};
|
|
134
133
|
|
|
135
134
|
type InventoryResponse = {
|
|
136
|
-
inventory?: Server
|
|
135
|
+
inventory?: Array<Server>;
|
|
137
136
|
};
|
|
138
137
|
|
|
139
138
|
type LatencyMetric = {
|
|
140
|
-
latency?:
|
|
139
|
+
latency?: {
|
|
140
|
+
[key: string]: Array<TimeEntry>;
|
|
141
|
+
};
|
|
141
142
|
};
|
|
142
143
|
|
|
143
144
|
type LatencyResponse = {
|
|
144
145
|
metrics?: LatencyMetric;
|
|
145
146
|
};
|
|
146
147
|
|
|
147
|
-
type Metric = '*' | 'avg_build_time' | 'cpu_usage' | 'ram_indexing_usage' | 'ram_search_usage' | 'ssd_usage';
|
|
148
|
-
|
|
149
|
-
type Period = 'day' | 'hour' | 'minute' | 'month' | 'week';
|
|
150
|
-
|
|
151
148
|
type StatusResponse = {
|
|
152
|
-
status?:
|
|
149
|
+
status?: {
|
|
150
|
+
[key: string]: Status;
|
|
151
|
+
};
|
|
153
152
|
};
|
|
154
153
|
|
|
155
|
-
type
|
|
156
|
-
|
|
157
|
-
|
|
154
|
+
type Metric = 'avg_build_time' | 'ssd_usage' | 'ram_search_usage' | 'ram_indexing_usage' | 'cpu_usage' | '*';
|
|
155
|
+
|
|
156
|
+
type Period = 'minute' | 'hour' | 'day' | 'week' | 'month';
|
|
158
157
|
|
|
159
158
|
/**
|
|
160
159
|
* Properties for the `customDelete` method.
|
|
@@ -167,7 +166,9 @@ type CustomDeleteProps = {
|
|
|
167
166
|
/**
|
|
168
167
|
* Query parameters to apply to the current query.
|
|
169
168
|
*/
|
|
170
|
-
parameters?:
|
|
169
|
+
parameters?: {
|
|
170
|
+
[key: string]: any;
|
|
171
|
+
};
|
|
171
172
|
};
|
|
172
173
|
/**
|
|
173
174
|
* Properties for the `customGet` method.
|
|
@@ -180,7 +181,9 @@ type CustomGetProps = {
|
|
|
180
181
|
/**
|
|
181
182
|
* Query parameters to apply to the current query.
|
|
182
183
|
*/
|
|
183
|
-
parameters?:
|
|
184
|
+
parameters?: {
|
|
185
|
+
[key: string]: any;
|
|
186
|
+
};
|
|
184
187
|
};
|
|
185
188
|
/**
|
|
186
189
|
* Properties for the `customPost` method.
|
|
@@ -193,7 +196,9 @@ type CustomPostProps = {
|
|
|
193
196
|
/**
|
|
194
197
|
* Query parameters to apply to the current query.
|
|
195
198
|
*/
|
|
196
|
-
parameters?:
|
|
199
|
+
parameters?: {
|
|
200
|
+
[key: string]: any;
|
|
201
|
+
};
|
|
197
202
|
/**
|
|
198
203
|
* Parameters to send with the custom request.
|
|
199
204
|
*/
|
|
@@ -210,7 +215,9 @@ type CustomPutProps = {
|
|
|
210
215
|
/**
|
|
211
216
|
* Query parameters to apply to the current query.
|
|
212
217
|
*/
|
|
213
|
-
parameters?:
|
|
218
|
+
parameters?: {
|
|
219
|
+
[key: string]: any;
|
|
220
|
+
};
|
|
214
221
|
/**
|
|
215
222
|
* Parameters to send with the custom request.
|
|
216
223
|
*/
|
|
@@ -221,7 +228,7 @@ type CustomPutProps = {
|
|
|
221
228
|
*/
|
|
222
229
|
type GetClusterIncidentsProps = {
|
|
223
230
|
/**
|
|
224
|
-
* Subset of clusters, separated by
|
|
231
|
+
* Subset of clusters, separated by commas.
|
|
225
232
|
*/
|
|
226
233
|
clusters: string;
|
|
227
234
|
};
|
|
@@ -230,7 +237,7 @@ type GetClusterIncidentsProps = {
|
|
|
230
237
|
*/
|
|
231
238
|
type GetClusterStatusProps = {
|
|
232
239
|
/**
|
|
233
|
-
* Subset of clusters, separated by
|
|
240
|
+
* Subset of clusters, separated by commas.
|
|
234
241
|
*/
|
|
235
242
|
clusters: string;
|
|
236
243
|
};
|
|
@@ -239,7 +246,7 @@ type GetClusterStatusProps = {
|
|
|
239
246
|
*/
|
|
240
247
|
type GetIndexingTimeProps = {
|
|
241
248
|
/**
|
|
242
|
-
* Subset of clusters, separated by
|
|
249
|
+
* Subset of clusters, separated by commas.
|
|
243
250
|
*/
|
|
244
251
|
clusters: string;
|
|
245
252
|
};
|
|
@@ -248,7 +255,7 @@ type GetIndexingTimeProps = {
|
|
|
248
255
|
*/
|
|
249
256
|
type GetLatencyProps = {
|
|
250
257
|
/**
|
|
251
|
-
* Subset of clusters, separated by
|
|
258
|
+
* Subset of clusters, separated by commas.
|
|
252
259
|
*/
|
|
253
260
|
clusters: string;
|
|
254
261
|
};
|
|
@@ -270,36 +277,161 @@ type GetMetricsProps = {
|
|
|
270
277
|
*/
|
|
271
278
|
type GetReachabilityProps = {
|
|
272
279
|
/**
|
|
273
|
-
* Subset of clusters, separated by
|
|
280
|
+
* Subset of clusters, separated by commas.
|
|
274
281
|
*/
|
|
275
282
|
clusters: string;
|
|
276
283
|
};
|
|
277
284
|
|
|
278
|
-
declare const apiClientVersion = "1.
|
|
279
|
-
|
|
280
|
-
/**
|
|
281
|
-
* The client type.
|
|
282
|
-
*/
|
|
283
|
-
type MonitoringClient = ReturnType<typeof monitoringClient>;
|
|
284
|
-
declare function monitoringClient(appId: string, apiKey: string, options?: ClientOptions): {
|
|
285
|
+
declare const apiClientVersion = "1.10.0";
|
|
286
|
+
declare function createMonitoringClient({ appId: appIdOption, apiKey: apiKeyOption, authMode, algoliaAgents, ...options }: CreateClientOptions): {
|
|
285
287
|
transporter: _algolia_client_common.Transporter;
|
|
288
|
+
/**
|
|
289
|
+
* The `appId` currently in use.
|
|
290
|
+
*/
|
|
286
291
|
appId: string;
|
|
292
|
+
/**
|
|
293
|
+
* Clears the cache of the transporter for the `requestsCache` and `responsesCache` properties.
|
|
294
|
+
*/
|
|
287
295
|
clearCache(): Promise<void>;
|
|
288
|
-
|
|
296
|
+
/**
|
|
297
|
+
* Get the value of the `algoliaAgent`, used by our libraries internally and telemetry system.
|
|
298
|
+
*/
|
|
299
|
+
readonly _ua: string;
|
|
300
|
+
/**
|
|
301
|
+
* Adds a `segment` to the `x-algolia-agent` sent with every requests.
|
|
302
|
+
*
|
|
303
|
+
* @param segment - The algolia agent (user-agent) segment to add.
|
|
304
|
+
* @param version - The version of the agent.
|
|
305
|
+
*/
|
|
289
306
|
addAlgoliaAgent(segment: string, version?: string): void;
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
307
|
+
/**
|
|
308
|
+
* Helper method to switch the API key used to authenticate the requests.
|
|
309
|
+
*
|
|
310
|
+
* @param params - Method params.
|
|
311
|
+
* @param params.apiKey - The new API Key to use.
|
|
312
|
+
*/
|
|
313
|
+
setClientApiKey({ apiKey }: {
|
|
314
|
+
apiKey: string;
|
|
315
|
+
}): void;
|
|
316
|
+
/**
|
|
317
|
+
* This method allow you to send requests to the Algolia REST API.
|
|
318
|
+
* @param customDelete - The customDelete object.
|
|
319
|
+
* @param customDelete.path - Path of the endpoint, anything after \"/1\" must be specified.
|
|
320
|
+
* @param customDelete.parameters - Query parameters to apply to the current query.
|
|
321
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
322
|
+
*/
|
|
323
|
+
customDelete({ path, parameters }: CustomDeleteProps, requestOptions?: RequestOptions): Promise<Record<string, unknown>>;
|
|
324
|
+
/**
|
|
325
|
+
* This method allow you to send requests to the Algolia REST API.
|
|
326
|
+
* @param customGet - The customGet object.
|
|
327
|
+
* @param customGet.path - Path of the endpoint, anything after \"/1\" must be specified.
|
|
328
|
+
* @param customGet.parameters - Query parameters to apply to the current query.
|
|
329
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
330
|
+
*/
|
|
331
|
+
customGet({ path, parameters }: CustomGetProps, requestOptions?: RequestOptions): Promise<Record<string, unknown>>;
|
|
332
|
+
/**
|
|
333
|
+
* This method allow you to send requests to the Algolia REST API.
|
|
334
|
+
* @param customPost - The customPost object.
|
|
335
|
+
* @param customPost.path - Path of the endpoint, anything after \"/1\" must be specified.
|
|
336
|
+
* @param customPost.parameters - Query parameters to apply to the current query.
|
|
337
|
+
* @param customPost.body - Parameters to send with the custom request.
|
|
338
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
339
|
+
*/
|
|
340
|
+
customPost({ path, parameters, body }: CustomPostProps, requestOptions?: RequestOptions): Promise<Record<string, unknown>>;
|
|
341
|
+
/**
|
|
342
|
+
* This method allow you to send requests to the Algolia REST API.
|
|
343
|
+
* @param customPut - The customPut object.
|
|
344
|
+
* @param customPut.path - Path of the endpoint, anything after \"/1\" must be specified.
|
|
345
|
+
* @param customPut.parameters - Query parameters to apply to the current query.
|
|
346
|
+
* @param customPut.body - Parameters to send with the custom request.
|
|
347
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
348
|
+
*/
|
|
349
|
+
customPut({ path, parameters, body }: CustomPutProps, requestOptions?: RequestOptions): Promise<Record<string, unknown>>;
|
|
350
|
+
/**
|
|
351
|
+
* Retrieves known incidents for the selected clusters.
|
|
352
|
+
* @param getClusterIncidents - The getClusterIncidents object.
|
|
353
|
+
* @param getClusterIncidents.clusters - Subset of clusters, separated by commas.
|
|
354
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
355
|
+
*/
|
|
356
|
+
getClusterIncidents({ clusters }: GetClusterIncidentsProps, requestOptions?: RequestOptions): Promise<IncidentsResponse>;
|
|
357
|
+
/**
|
|
358
|
+
* Retrieves the status of selected clusters.
|
|
359
|
+
* @param getClusterStatus - The getClusterStatus object.
|
|
360
|
+
* @param getClusterStatus.clusters - Subset of clusters, separated by commas.
|
|
361
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
362
|
+
*/
|
|
363
|
+
getClusterStatus({ clusters }: GetClusterStatusProps, requestOptions?: RequestOptions): Promise<StatusResponse>;
|
|
364
|
+
/**
|
|
365
|
+
* Retrieves known incidents for all clusters.
|
|
366
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
367
|
+
*/
|
|
368
|
+
getIncidents(requestOptions?: RequestOptions): Promise<IncidentsResponse>;
|
|
369
|
+
/**
|
|
370
|
+
* Retrieves average times for indexing operations for selected clusters.
|
|
371
|
+
* @param getIndexingTime - The getIndexingTime object.
|
|
372
|
+
* @param getIndexingTime.clusters - Subset of clusters, separated by commas.
|
|
373
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
374
|
+
*/
|
|
375
|
+
getIndexingTime({ clusters }: GetIndexingTimeProps, requestOptions?: RequestOptions): Promise<IndexingTimeResponse>;
|
|
376
|
+
/**
|
|
377
|
+
* Retrieves the average latency for search requests for selected clusters.
|
|
378
|
+
* @param getLatency - The getLatency object.
|
|
379
|
+
* @param getLatency.clusters - Subset of clusters, separated by commas.
|
|
380
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
381
|
+
*/
|
|
382
|
+
getLatency({ clusters }: GetLatencyProps, requestOptions?: RequestOptions): Promise<LatencyResponse>;
|
|
383
|
+
/**
|
|
384
|
+
* Retrieves metrics related to your Algolia infrastructure, aggregated over a selected time window. Access to this API is available as part of the [Premium or Elevate plans](https://www.algolia.com/pricing). You must authenticate requests with the `x-algolia-application-id` and `x-algolia-api-key` headers (using the Monitoring API key).
|
|
385
|
+
* @param getMetrics - The getMetrics object.
|
|
386
|
+
* @param getMetrics.metric - Metric to report. For more information about the individual metrics, see the description of the API response. To include all metrics, use `*`.
|
|
387
|
+
* @param getMetrics.period - Period over which to aggregate the metrics: - `minute`. Aggregate the last minute. 1 data point per 10 seconds. - `hour`. Aggregate the last hour. 1 data point per minute. - `day`. Aggregate the last day. 1 data point per 10 minutes. - `week`. Aggregate the last week. 1 data point per hour. - `month`. Aggregate the last month. 1 data point per day.
|
|
388
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
389
|
+
*/
|
|
390
|
+
getMetrics({ metric, period }: GetMetricsProps, requestOptions?: RequestOptions): Promise<InfrastructureResponse>;
|
|
391
|
+
/**
|
|
392
|
+
* Test whether clusters are reachable or not.
|
|
393
|
+
* @param getReachability - The getReachability object.
|
|
394
|
+
* @param getReachability.clusters - Subset of clusters, separated by commas.
|
|
395
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
396
|
+
*/
|
|
397
|
+
getReachability({ clusters }: GetReachabilityProps, requestOptions?: RequestOptions): Promise<{
|
|
398
|
+
[key: string]: {
|
|
399
|
+
[key: string]: boolean;
|
|
400
|
+
};
|
|
401
|
+
}>;
|
|
402
|
+
/**
|
|
403
|
+
* Retrieves the servers that belong to clusters. The response depends on whether you authenticate your API request: - With authentication, the response lists the servers assigned to your Algolia application\'s cluster. - Without authentication, the response lists the servers for all Algolia clusters.
|
|
404
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
405
|
+
*/
|
|
406
|
+
getServers(requestOptions?: RequestOptions): Promise<InventoryResponse>;
|
|
407
|
+
/**
|
|
408
|
+
* Retrieves the status of all Algolia clusters and instances.
|
|
409
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
410
|
+
*/
|
|
411
|
+
getStatus(requestOptions?: RequestOptions): Promise<StatusResponse>;
|
|
412
|
+
};
|
|
413
|
+
|
|
414
|
+
type BadRequest = {
|
|
415
|
+
reason?: string;
|
|
416
|
+
};
|
|
417
|
+
|
|
418
|
+
/**
|
|
419
|
+
* Error.
|
|
420
|
+
*/
|
|
421
|
+
type ErrorBase = Record<string, any> & {
|
|
422
|
+
message?: string;
|
|
303
423
|
};
|
|
304
424
|
|
|
425
|
+
type Forbidden = {
|
|
426
|
+
reason?: string;
|
|
427
|
+
};
|
|
428
|
+
|
|
429
|
+
type Unauthorized = {
|
|
430
|
+
reason?: string;
|
|
431
|
+
};
|
|
432
|
+
|
|
433
|
+
type MonitoringClient = ReturnType<typeof createMonitoringClient>;
|
|
434
|
+
|
|
435
|
+
declare function monitoringClient(appId: string, apiKey: string, options?: ClientOptions): MonitoringClient;
|
|
436
|
+
|
|
305
437
|
export { type BadRequest, type CustomDeleteProps, type CustomGetProps, type CustomPostProps, type CustomPutProps, type ErrorBase, type Forbidden, type GetClusterIncidentsProps, type GetClusterStatusProps, type GetIndexingTimeProps, type GetLatencyProps, type GetMetricsProps, type GetReachabilityProps, type Incident, type IncidentEntry, type IncidentsResponse, type IndexingMetric, type IndexingTimeResponse, type InfrastructureResponse, type InventoryResponse, type LatencyMetric, type LatencyResponse, type Metric, type Metrics, type MonitoringClient, type Period, type ProbesMetric, type Region, type Server, type ServerStatus, type Status, type StatusResponse, type TimeEntry, type Type, type Unauthorized, apiClientVersion, monitoringClient };
|