-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalerts.go
More file actions
527 lines (462 loc) · 14 KB
/
alerts.go
File metadata and controls
527 lines (462 loc) · 14 KB
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
package flashduty
import (
"context"
"fmt"
"net/http"
"strings"
)
// ListAlertEventsInput contains parameters for listing alert events
type ListAlertEventsInput struct {
AlertID string // Required: alert ID
// Deprecated: /alert/event/list does not accept time-range filtering.
StartTime int64
// Deprecated: /alert/event/list does not accept time-range filtering.
EndTime int64
// Deprecated: /alert/event/list does not accept pagination.
Limit int
// Deprecated: /alert/event/list does not accept pagination.
Page int
}
// ListAlertEventsOutput contains alert events
type ListAlertEventsOutput struct {
AlertEvents []AlertEvent `json:"alert_events"`
}
// ListAlertEvents queries raw alert events
func (c *Client) ListAlertEvents(ctx context.Context, input *ListAlertEventsInput) (*ListAlertEventsOutput, error) {
if input == nil {
return nil, fmt.Errorf("alert event query input is required")
}
if input.AlertID == "" {
return nil, fmt.Errorf("alert_id is required")
}
requestBody := map[string]any{
"alert_id": input.AlertID,
}
resp, err := c.makeRequest(ctx, "POST", "/alert/event/list", requestBody)
if err != nil {
return nil, fmt.Errorf("failed to list alert events: %w", err)
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
return nil, handleAPIError(c.logger, resp)
}
var result struct {
Error *DutyError `json:"error,omitempty"`
Data *struct {
Items []AlertEvent `json:"items"`
} `json:"data,omitempty"`
}
if err := parseResponse(c.logger, resp, &result); err != nil {
return nil, err
}
if result.Error != nil {
return nil, result.Error
}
events := []AlertEvent{}
if result.Data != nil {
events = result.Data.Items
}
return &ListAlertEventsOutput{
AlertEvents: events,
}, nil
}
// ListAlertsInput contains parameters for listing alerts
type ListAlertsInput struct {
StartTime int64 // Required
EndTime int64 // Required
AlertSeverity string // Optional
IsActive *bool // Optional (pointer to distinguish unset from false)
ChannelIDs []int64 // Optional
IntegrationIDs []int64 // Optional
AlertKeys []string // Optional
EverMuted *bool // Optional
Title string // Optional
Labels map[string]string // Optional
Limit int // Optional (default 20)
Page int // Optional (default 1)
OrderBy string // Optional
Asc bool // Optional
SearchAfterCtx string // Optional: cursor for deep pagination
}
// ListAlertsOutput contains the result of listing alerts
type ListAlertsOutput struct {
Alerts []Alert `json:"alerts"`
Total int `json:"total"`
HasNextPage bool `json:"has_next_page"`
SearchAfterCtx string `json:"search_after_ctx,omitempty"`
}
// ListAlerts queries alerts by filters
func (c *Client) ListAlerts(ctx context.Context, input *ListAlertsInput) (*ListAlertsOutput, error) {
if input == nil {
return nil, fmt.Errorf("alert list input is required")
}
limit := input.Limit
if limit <= 0 {
limit = defaultQueryLimit
}
page := input.Page
if page <= 0 {
page = 1
}
requestBody := map[string]any{
"start_time": input.StartTime,
"end_time": input.EndTime,
"limit": limit,
"p": page,
}
if input.AlertSeverity != "" {
requestBody["alert_severity"] = input.AlertSeverity
}
if input.IsActive != nil {
requestBody["is_active"] = *input.IsActive
}
if len(input.ChannelIDs) > 0 {
requestBody["channel_ids"] = input.ChannelIDs
}
if len(input.IntegrationIDs) > 0 {
requestBody["integration_ids"] = input.IntegrationIDs
}
if len(input.AlertKeys) > 0 {
requestBody["alert_keys"] = input.AlertKeys
}
if input.EverMuted != nil {
requestBody["ever_muted"] = *input.EverMuted
}
if input.Title != "" {
requestBody["title"] = input.Title
}
if len(input.Labels) > 0 {
requestBody["labels"] = input.Labels
}
if input.OrderBy != "" {
requestBody["orderby"] = input.OrderBy
}
if input.Asc {
requestBody["asc"] = true
}
if input.SearchAfterCtx != "" {
requestBody["search_after_ctx"] = input.SearchAfterCtx
}
resp, err := c.makeRequest(ctx, "POST", "/alert/list", requestBody)
if err != nil {
return nil, fmt.Errorf("failed to list alerts: %w", err)
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
return nil, handleAPIError(c.logger, resp)
}
var result struct {
Error *DutyError `json:"error,omitempty"`
Data *struct {
Items []Alert `json:"items"`
Total int `json:"total"`
HasNextPage bool `json:"has_next_page"`
SearchAfterCtx string `json:"search_after_ctx,omitempty"`
} `json:"data,omitempty"`
}
if err := parseResponse(c.logger, resp, &result); err != nil {
return nil, err
}
if result.Error != nil {
return nil, result.Error
}
alerts := []Alert{}
total := 0
hasNextPage := false
searchAfterCtx := ""
if result.Data != nil {
alerts = result.Data.Items
total = result.Data.Total
hasNextPage = result.Data.HasNextPage
searchAfterCtx = result.Data.SearchAfterCtx
}
return &ListAlertsOutput{
Alerts: alerts,
Total: total,
HasNextPage: hasNextPage,
SearchAfterCtx: searchAfterCtx,
}, nil
}
// GetAlertDetailInput contains parameters for getting alert detail
type GetAlertDetailInput struct {
AlertID string // Required
}
// GetAlertDetailOutput contains full alert detail
type GetAlertDetailOutput struct {
Alert Alert `json:"alert"`
}
// GetAlertDetail fetches detailed information for a single alert
func (c *Client) GetAlertDetail(ctx context.Context, input *GetAlertDetailInput) (*GetAlertDetailOutput, error) {
if input == nil {
return nil, fmt.Errorf("alert detail input is required")
}
requestBody := map[string]any{
"alert_id": input.AlertID,
}
resp, err := c.makeRequest(ctx, "POST", "/alert/info", requestBody)
if err != nil {
return nil, fmt.Errorf("failed to get alert detail: %w", err)
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
return nil, handleAPIError(c.logger, resp)
}
var result struct {
Error *DutyError `json:"error,omitempty"`
Data *Alert `json:"data,omitempty"`
}
if err := parseResponse(c.logger, resp, &result); err != nil {
return nil, err
}
if result.Error != nil {
return nil, result.Error
}
if result.Data == nil {
return nil, fmt.Errorf("alert not found: %s", input.AlertID)
}
return &GetAlertDetailOutput{Alert: *result.Data}, nil
}
// ListAlertsByIDs fetches alerts by their IDs
func (c *Client) ListAlertsByIDs(ctx context.Context, alertIDs []string) (*ListAlertsOutput, error) {
requestBody := map[string]any{
"alert_ids": alertIDs,
}
resp, err := c.makeRequest(ctx, "POST", "/alert/list-by-ids", requestBody)
if err != nil {
return nil, fmt.Errorf("failed to list alerts by IDs: %w", err)
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
return nil, handleAPIError(c.logger, resp)
}
var result struct {
Error *DutyError `json:"error,omitempty"`
Data *struct {
Items []Alert `json:"items"`
} `json:"data,omitempty"`
}
if err := parseResponse(c.logger, resp, &result); err != nil {
return nil, err
}
if result.Error != nil {
return nil, result.Error
}
alerts := []Alert{}
if result.Data != nil {
alerts = result.Data.Items
}
return &ListAlertsOutput{
Alerts: alerts,
Total: len(alerts),
}, nil
}
// MergeAlertsInput contains parameters for merging alerts into an incident
type MergeAlertsInput struct {
AlertIDs []string // Required
IncidentID string // Required
Comment string // Optional
Title string // Optional
}
// MergeAlertsToIncident merges alerts into an existing incident
func (c *Client) MergeAlertsToIncident(ctx context.Context, input *MergeAlertsInput) error {
if input == nil {
return fmt.Errorf("merge alerts input is required")
}
requestBody := map[string]any{
"alert_ids": input.AlertIDs,
"incident_id": input.IncidentID,
}
if input.Comment != "" {
requestBody["comment"] = input.Comment
}
if input.Title != "" {
requestBody["title"] = input.Title
}
resp, err := c.makeRequest(ctx, "POST", "/alert/merge", requestBody)
if err != nil {
return fmt.Errorf("failed to merge alerts to incident: %w", err)
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
return handleAPIError(c.logger, resp)
}
var result FlashdutyResponse
if err := parseResponse(c.logger, resp, &result); err != nil {
return err
}
if result.Error != nil {
return result.Error
}
return nil
}
// GetAlertFeedInput contains parameters for getting alert feed/timeline
type GetAlertFeedInput struct {
AlertID string // Required
Limit int // Optional (default 20)
Page int // Optional (default 1)
Asc bool // Optional
Types []string // Optional: filter by event type
}
// GetAlertFeedOutput contains alert feed events
type GetAlertFeedOutput struct {
Items []TimelineEvent `json:"items"`
HasNextPage bool `json:"has_next_page"`
}
// GetAlertFeed fetches the feed/timeline for an alert with enriched person names
func (c *Client) GetAlertFeed(ctx context.Context, input *GetAlertFeedInput) (*GetAlertFeedOutput, error) {
if input == nil {
return nil, fmt.Errorf("alert feed input is required")
}
limit := input.Limit
if limit <= 0 {
limit = defaultQueryLimit
}
page := input.Page
if page <= 0 {
page = 1
}
requestBody := map[string]any{
"alert_id": input.AlertID,
"limit": limit,
"p": page,
"asc": input.Asc,
}
if len(input.Types) > 0 {
requestBody["types"] = input.Types
}
resp, err := c.makeRequest(ctx, "POST", "/alert/feed", requestBody)
if err != nil {
return nil, fmt.Errorf("failed to get alert feed: %w", err)
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
return nil, handleAPIError(c.logger, resp)
}
var result struct {
Error *DutyError `json:"error,omitempty"`
Data *struct {
Items []RawTimelineItem `json:"items"`
HasNextPage bool `json:"has_next_page"`
} `json:"data,omitempty"`
}
if err := parseResponse(c.logger, resp, &result); err != nil {
return nil, err
}
if result.Error != nil {
return nil, result.Error
}
if result.Data == nil || len(result.Data.Items) == 0 {
return &GetAlertFeedOutput{
Items: []TimelineEvent{},
HasNextPage: false,
}, nil
}
// Enrich with person names
personIDs := collectTimelinePersonIDs(result.Data.Items)
personMap, err := c.fetchPersonInfos(ctx, personIDs)
if err != nil {
return nil, fmt.Errorf("failed to load person details for feed: %w", err)
}
enrichedItems := enrichTimelineItems(result.Data.Items, personMap)
return &GetAlertFeedOutput{
Items: enrichedItems,
HasNextPage: result.Data.HasNextPage,
}, nil
}
// ListAlertEventsGlobalInput contains parameters for listing alert events globally
type ListAlertEventsGlobalInput struct {
StartTime int64 // Required
EndTime int64 // Required
IntegrationTypes []string // Optional
IntegrationIDs []int64 // Optional
ChannelIDs []int64 // Optional
Severities []string // Optional: serialized as a comma-separated list
OrderBy string // Optional
Limit int // Optional (default 20)
Page int // Optional (default 1)
SearchAfterCtx string // Optional
}
// ListAlertEventsGlobalOutput contains global alert event results
type ListAlertEventsGlobalOutput struct {
AlertEvents []AlertEvent `json:"alert_events"`
Total int `json:"total"`
HasNextPage bool `json:"has_next_page"`
SearchAfterCtx string `json:"search_after_ctx,omitempty"`
}
// ListAlertEventsGlobal queries alert events globally across all alerts
func (c *Client) ListAlertEventsGlobal(ctx context.Context, input *ListAlertEventsGlobalInput) (*ListAlertEventsGlobalOutput, error) {
if input == nil {
return nil, fmt.Errorf("alert event global query input is required")
}
limit := input.Limit
if limit <= 0 {
limit = defaultQueryLimit
}
page := input.Page
if page <= 0 {
page = 1
}
requestBody := map[string]any{
"start_time": input.StartTime,
"end_time": input.EndTime,
"limit": limit,
"p": page,
}
if len(input.IntegrationTypes) > 0 {
requestBody["integration_types"] = input.IntegrationTypes
}
if len(input.IntegrationIDs) > 0 {
requestBody["integration_ids"] = input.IntegrationIDs
}
if len(input.ChannelIDs) > 0 {
requestBody["channel_ids"] = input.ChannelIDs
}
if len(input.Severities) > 0 {
requestBody["severities"] = strings.Join(input.Severities, ",")
}
if input.OrderBy != "" {
requestBody["orderby"] = input.OrderBy
}
if input.SearchAfterCtx != "" {
requestBody["search_after_ctx"] = input.SearchAfterCtx
}
resp, err := c.makeRequest(ctx, "POST", "/alert-event/list", requestBody)
if err != nil {
return nil, fmt.Errorf("failed to list alert events: %w", err)
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
return nil, handleAPIError(c.logger, resp)
}
var result struct {
Error *DutyError `json:"error,omitempty"`
Data *struct {
Items []AlertEvent `json:"items"`
Total int `json:"total"`
HasNextPage bool `json:"has_next_page"`
SearchAfterCtx string `json:"search_after_ctx,omitempty"`
} `json:"data,omitempty"`
}
if err := parseResponse(c.logger, resp, &result); err != nil {
return nil, err
}
if result.Error != nil {
return nil, result.Error
}
events := []AlertEvent{}
total := 0
hasNextPage := false
searchAfterCtx := ""
if result.Data != nil {
events = result.Data.Items
total = result.Data.Total
hasNextPage = result.Data.HasNextPage
searchAfterCtx = result.Data.SearchAfterCtx
}
return &ListAlertEventsGlobalOutput{
AlertEvents: events,
Total: total,
HasNextPage: hasNextPage,
SearchAfterCtx: searchAfterCtx,
}, nil
}