-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
openapi.yaml
708 lines (708 loc) · 19.6 KB
/
openapi.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
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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
---
info:
title: Kener API
version: 1.0.0
description: |
# Kener Self-hosted node js status page
![Kener](https://kener.ing/newbg.png "kener")
API specification for Kener status page and incident management system. This API spec was created using [Frogment](https://www.frogment.app)
contact:
name: Raj Nandan Sharma
email: [email protected]
url: https://github.com/rajnandan1/kener/issues
license:
name: MIT
url: https://opensource.org/licenses/MIT
openapi: 3.0.0
servers:
- url: https://your-kener-host.com
description: Kener host URL
tags:
- name: Monitors
description: APIs to interact with monitors
- name: Incidents
description: APIs to integrate incidents
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
description: enter your api key here
schemas:
MonitorStatus:
type: object
description: Monitor Status
required:
- status
- latency
- tag
properties:
status:
type: string
example: UP
enum:
- UP
- DOWN
- DEGRADED
latency:
type: number
description: In seconds
example: 100
timestampInSeconds:
type: integer
description: UTC timestamp in seconds
example: 1731251760
tag:
type: string
example: earth
description: Tag of a monitor
example:
status: UP
timestampInSeconds: 1731251760
latency: 100
tag: earth
StatusResponse:
type: object
description: Status of a monitor given a tag
properties:
status:
type: string
example: UP
enum:
- UP
- DOWN
- DEGRADED
uptime:
type: string
example: '100'
lastUpdatedAt:
type: integer
example: 1731251760
example:
status: UP
lastUpdatedAt: 1731251760
uptime: '100'
Incident:
type: object
description: body of an incident
required:
- title
- tags
properties:
startDatetime:
type: integer
description: UTC timestamp in seconds
example: 1731901920
endDatetime:
type: integer
description: UTC timestamp in seconds
example: 1704123938
title:
type: string
example: Outage in mumbai
description: title of the incident
body:
type: string
example: body of the incident
description: body of the incident
tags:
type: array
items:
type: string
example: earth
description: comma separated tags of monitors
example:
- earth
- google
impact:
type: string
example: DOWN
description: Impact of the incident
enum:
- DOWN
- DEGRADED
isMaintenance:
type: boolean
description: is this incident because of maintenance
example: false
isIdentified:
type: boolean
description: has the incident been indentified
example: true
isResolved:
type: boolean
description: has the incident been resovled
example: true
example:
startDatetime: 1731901920
endDatetime: 1704123938
title: title of the incident
body: body of the incident
tags:
- earth
- google
impact: DOWN
isMaintenance: false
isIdentified: true
isResolved: true
IncidentResponse:
description: Incident response schema
allOf:
- "$ref": "#/components/schemas/Incident"
- type: object
properties:
createdAt:
type: integer
description: UTC timestamp in seconds, incident created at
example: 1731901920
closedAt:
type: integer
nullable: true
description: UTC timestamp in seconds, incident closed at
example: 1731901920
incidentNumber:
type: integer
description: id of the incident
example: 4
example:
createdAt: 1731901920
closedAt: 1731901920
incidentNumber: 4
Comment:
type: object
description: Comment of an incident
required:
- body
properties:
body:
type: string
example: comment 1
example:
body: comment 2
CommentResponse:
type: object
description: Comment Response
properties:
commentID:
type: integer
description: ID of the comment
example: 1873376745
body:
type: string
description: body of the comment
example: comment 3
createdAt:
type: integer
description: timestamp when comment was created
example: 1704123938
example:
commentID: 1873376745
body: comment 4
createdAt: 1704123938
IncidentStatus:
type: object
description: Status of the incident
properties:
isIdentified:
type: boolean
description: Has the incident been indetified
example: true
isResolved:
type: boolean
description: has the incident been resolved
example: true
endDatetime:
type: integer
description: Incident end time
example: 1731901920
example:
isIdentified: true
isResolved: true
endDatetime: 1731901920
responses:
Response401:
description: Bad API keys response
content:
application/json:
schema:
type: object
properties:
error:
type: string
description: Invalid token response
example: invalid token
example:
error: invalid token
Response400:
description: bad request
content:
application/json:
schema:
type: object
properties:
error:
type: string
description: bad request while calling kener apis
example: unknown tags
example:
error: unknown tags
examples:
GetMonitorStatusExample200:
summary: response of get status of a monitor
description: Some Description
value:
status: UP
uptime: '100'
lastUpdatedAt: 1731901920
DegradedRequestBody:
summary: update to degraded
description: Some Description
value:
status: DEGRADED
timestampInSeconds: 1731251760
latency: 100
tag: earth
CreateIncidentResponse:
summary: create incident response
description: create incident response
value:
createdAt: 1731901920
closedAt: 1731901920
incidentNumber: 4
startDatetime: 1731901920
endDatetime: 1704123938
title: title of the incident
body: body of the incident
tags:
- earth
- google
impact: DOWN
isMaintenance: false
isIdentified: true
isResolved: true
CreateIncidentRequest:
summary: create incident request body
description: Some Description
value:
startDatetime: 1731901920
endDatetime: 1704123938
title: title of the incident
body: body of the incident
tags:
- earth
- google
impact: DOWN
isMaintenance: false
isIdentified: true
isResolved: true
SearchIncidentsResponse:
summary: array of incidents
description: Some Description
value:
- createdAt: 1731901920
closedAt: 1731901920
incidentNumber: 4
startDatetime: 1731901920
endDatetime: 1704123938
title: title of the incident
body: body of the incident
tags:
- earth
- google
impact: DOWN
isMaintenance: false
isIdentified: true
isResolved: true
- createdAt: 1731901920
closedAt: 1731901920
incidentNumber: 4
startDatetime: 1731901920
endDatetime: 1704123938
title: title of the incident
body: body of the incident
tags:
- earth
- google
impact: DOWN
isMaintenance: false
isIdentified: true
isResolved: true
CommentsResponse:
summary: list of comments
description: Some Description
value:
- commentID: 1873376745
body: comment 4
createdAt: 1704123938
- commentID: 1873376745
body: comment 4
createdAt: 1704123938
CommentRequestBody:
summary: request body for a comment
description: request body for a comment to add in an incident
value:
body: This is a comment
CreateCommentResponse:
summary: create comment response body sample
description: create comment response body sample
value:
commentID: 1873376745
body: comment 4
createdAt: 1704123938
paths:
"/api/status":
post:
operationId: updateMonitorStatus
summary: Update status of a monitor
description: Update status of an incident at a given timestamp
tags:
- Monitors
security:
- bearerAuth: []
requestBody:
required: true
description: request body to update an incident
content:
application/json:
schema:
"$ref": "#/components/schemas/MonitorStatus"
examples:
degraded:
"$ref": "#/components/examples/DegradedRequestBody"
responses:
'200':
description: Status updated successfully
content:
application/json:
schema:
type: object
properties:
status:
type: integer
example: 200
message:
type: string
example: success at 1731251760
example:
status: 200
message: success at 1731251760
'400':
"$ref": "#/components/responses/Response400"
'401':
"$ref": "#/components/responses/Response401"
get:
operationId: getMonitorStatus
summary: Get status of a monitor
description: get status of a monitor at timestamp
tags:
- Monitors
security:
- bearerAuth: []
parameters:
- name: tag
in: query
required: true
description: monitor tag to get an incident
schema:
type: string
example: earth
responses:
'200':
description: Monitor status retrieved successfully
content:
application/json:
schema:
"$ref": "#/components/schemas/StatusResponse"
examples:
successExample:
"$ref": "#/components/examples/GetMonitorStatusExample200"
'400':
"$ref": "#/components/responses/Response400"
'401':
"$ref": "#/components/responses/Response401"
"/api/incident":
post:
operationId: createIncident
summary: Create a new incident
description: API to create incidents
tags:
- Incidents
security:
- bearerAuth: []
requestBody:
required: true
description: request body to manually create an incident
content:
application/json:
schema:
"$ref": "#/components/schemas/Incident"
examples:
sample:
"$ref": "#/components/examples/CreateIncidentRequest"
responses:
'200':
description: Incident created successfully
content:
application/json:
schema:
"$ref": "#/components/schemas/IncidentResponse"
examples:
success:
"$ref": "#/components/examples/CreateIncidentResponse"
'400':
"$ref": "#/components/responses/Response400"
'401':
"$ref": "#/components/responses/Response401"
get:
operationId: searchIncidents
summary: Search for incidents
description: API to get incidents
tags:
- Incidents
security:
- bearerAuth: []
parameters:
- name: state
in: query
description: state of the incident. Can be open or close
schema:
type: string
description: state of the incident. Can be open or close
enum:
- open
- closed
default: open
example: open
- name: tags
in: query
description: Comma separated monitor tags
schema:
type: string
description: Comma separated monitor tags
example: earth,google
- name: page
in: query
description: page number
schema:
type: integer
description: page number
default: 1
minimum: 1
example: 1
- name: per_page
in: query
description: how many per page
schema:
type: integer
default: 10
description: how many per page
maximum: 100
example: 10
- name: created_after_utc
description: start time
in: query
schema:
type: integer
description: start time
example: 1731866475
- name: created_before_utc
description: end time
in: query
schema:
type: integer
description: end time
example: 1731866475
- name: title_like
description: title of the incident
in: query
schema:
type: string
description: title of the incident
example: outage
responses:
'200':
description: Search results retrieved successfully
content:
application/json:
schema:
type: array
items:
"$ref": "#/components/schemas/IncidentResponse"
examples:
success:
"$ref": "#/components/examples/SearchIncidentsResponse"
'400':
"$ref": "#/components/responses/Response400"
'401':
"$ref": "#/components/responses/Response401"
"/api/incident/{incidentNumber}":
parameters:
- name: incidentNumber
in: path
required: true
description: incident number as an integer to get incident by id
schema:
type: integer
example: 4
get:
operationId: getIncident
summary: Get an incident by number
description: API to get an incident by incident number
tags:
- Incidents
security:
- bearerAuth: []
responses:
'200':
description: Incident retrieved successfully
content:
application/json:
schema:
"$ref": "#/components/schemas/IncidentResponse"
examples:
success:
"$ref": "#/components/examples/CreateIncidentResponse"
'400':
"$ref": "#/components/responses/Response400"
'401':
"$ref": "#/components/responses/Response401"
patch:
operationId: updateIncident
summary: Update an incident
description: API to update an incident by incident number
tags:
- Incidents
security:
- bearerAuth: []
requestBody:
required: true
description: search for an incident
content:
application/json:
schema:
"$ref": "#/components/schemas/Incident"
examples:
sample:
"$ref": "#/components/examples/CreateIncidentRequest"
responses:
'200':
description: Incident updated successfully
content:
application/json:
schema:
"$ref": "#/components/schemas/IncidentResponse"
examples:
success:
"$ref": "#/components/examples/CreateIncidentResponse"
'400':
"$ref": "#/components/responses/Response400"
'401':
"$ref": "#/components/responses/Response401"
"/api/incident/{incidentNumber}/comment":
parameters:
- name: incidentNumber
in: path
required: true
description: incident number to fetch comment for
schema:
type: integer
example: 4
post:
operationId: addIncidentComment
summary: Add a comment to an incident
description: API to create comment for an incident
tags:
- Incidents
security:
- bearerAuth: []
requestBody:
required: true
description: body to add a comment
content:
application/json:
schema:
"$ref": "#/components/schemas/Comment"
examples:
sample:
"$ref": "#/components/examples/CommentRequestBody"
responses:
'200':
description: Comment added successfully
content:
application/json:
schema:
"$ref": "#/components/schemas/CommentResponse"
examples:
sample:
"$ref": "#/components/examples/CreateCommentResponse"
'400':
"$ref": "#/components/responses/Response400"
'401':
"$ref": "#/components/responses/Response401"
get:
operationId: getIncidentComments
summary: Get comments for an incident
description: API to get comments for an incident
tags:
- Incidents
security:
- bearerAuth: []
responses:
'200':
description: Comments retrieved successfully
content:
application/json:
schema:
type: array
items:
"$ref": "#/components/schemas/CommentResponse"
examples:
success:
"$ref": "#/components/examples/CommentsResponse"
'400':
"$ref": "#/components/responses/Response400"
'401':
"$ref": "#/components/responses/Response401"
"/api/incident/{incidentNumber}/status":
parameters:
- name: incidentNumber
in: path
required: true
description: incident number to fetch status for
schema:
type: integer
example: 4
post:
operationId: updateIncidentStatus
summary: Update the status of an incident
description: API to update status of an incident
tags:
- Incidents
security:
- bearerAuth: []
requestBody:
required: true
description: request body to update status of an incident
content:
application/json:
schema:
"$ref": "#/components/schemas/IncidentStatus"
example:
isIdentified: true
isResolved: true
endDatetime: 1731901920
responses:
'200':
description: Incident status updated successfully
content:
application/json:
schema:
"$ref": "#/components/schemas/IncidentResponse"
examples:
success:
"$ref": "#/components/examples/CreateIncidentResponse"
'400':
"$ref": "#/components/responses/Response400"
'401':
"$ref": "#/components/responses/Response401"