-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalerts.go
More file actions
412 lines (362 loc) · 11.2 KB
/
alerts.go
File metadata and controls
412 lines (362 loc) · 11.2 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
package flashduty
import (
"context"
"fmt"
"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,
}
result, err := postData[struct {
Items []AlertEvent `json:"items"`
}](c, ctx, "/alert/event/list", requestBody, "failed to list alert events")
if err != nil {
return nil, err
}
events := []AlertEvent{}
if result != nil {
events = result.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
}
result, err := postData[struct {
Items []Alert `json:"items"`
Total int `json:"total"`
HasNextPage bool `json:"has_next_page"`
SearchAfterCtx string `json:"search_after_ctx,omitempty"`
}](c, ctx, "/alert/list", requestBody, "failed to list alerts")
if err != nil {
return nil, err
}
alerts := []Alert{}
total := 0
hasNextPage := false
searchAfterCtx := ""
if result != nil {
alerts = result.Items
total = result.Total
hasNextPage = result.HasNextPage
searchAfterCtx = result.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,
}
alert, err := postOptionalData[Alert](c, ctx, "/alert/info", requestBody, "failed to get alert detail")
if err != nil {
return nil, err
}
if alert == nil {
return nil, fmt.Errorf("alert not found: %s", input.AlertID)
}
return &GetAlertDetailOutput{Alert: *alert}, 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,
}
result, err := postData[struct {
Items []Alert `json:"items"`
}](c, ctx, "/alert/list-by-ids", requestBody, "failed to list alerts by IDs")
if err != nil {
return nil, err
}
alerts := []Alert{}
if result != nil {
alerts = result.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
}
return postEmpty(c, ctx, "/alert/merge", requestBody, "failed to merge alerts to incident")
}
// 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
}
result, err := postData[struct {
Items []RawTimelineItem `json:"items"`
HasNextPage bool `json:"has_next_page"`
}](c, ctx, "/alert/feed", requestBody, "failed to get alert feed")
if err != nil {
return nil, err
}
if result == nil || len(result.Items) == 0 {
return &GetAlertFeedOutput{
Items: []TimelineEvent{},
HasNextPage: false,
}, nil
}
// Enrich with person names
personIDs := collectTimelinePersonIDs(result.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.Items, personMap)
return &GetAlertFeedOutput{
Items: enrichedItems,
HasNextPage: result.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
}
result, err := postData[struct {
Items []AlertEvent `json:"items"`
Total int `json:"total"`
HasNextPage bool `json:"has_next_page"`
SearchAfterCtx string `json:"search_after_ctx,omitempty"`
}](c, ctx, "/alert-event/list", requestBody, "failed to list alert events")
if err != nil {
return nil, err
}
events := []AlertEvent{}
total := 0
hasNextPage := false
searchAfterCtx := ""
if result != nil {
events = result.Items
total = result.Total
hasNextPage = result.HasNextPage
searchAfterCtx = result.SearchAfterCtx
}
return &ListAlertEventsGlobalOutput{
AlertEvents: events,
Total: total,
HasNextPage: hasNextPage,
SearchAfterCtx: searchAfterCtx,
}, nil
}