forked from zorkian/go-datadog-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
monitors.go
287 lines (247 loc) · 9.8 KB
/
monitors.go
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
/*
* Datadog API for Go
*
* Please see the included LICENSE file for licensing information.
*
* Copyright 2013 by authors and contributors.
*/
package datadog
import (
"encoding/json"
"fmt"
"net/url"
"strconv"
"strings"
)
type Period struct {
Seconds *json.Number `json:"seconds,omitempty"`
Text *string `json:"text,omitempty"`
Value *string `json:"value,omitempty"`
Name *string `json:"name,omitempty"`
Unit *string `json:"unit,omitempty"`
}
type LogSet struct {
ID *json.Number `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
}
type TimeRange struct {
To *json.Number `json:"to,omitempty"`
From *json.Number `json:"from,omitempty"`
Live *bool `json:"live,omitempty"`
}
type QueryConfig struct {
LogSet *LogSet `json:"logset,omitempty"`
TimeRange *TimeRange `json:"timeRange,omitempty"`
QueryString *string `json:"queryString,omitempty"`
QueryIsFailed *bool `json:"queryIsFailed,omitempty"`
}
type ThresholdCount struct {
Ok *json.Number `json:"ok,omitempty"`
Critical *json.Number `json:"critical,omitempty"`
Warning *json.Number `json:"warning,omitempty"`
Unknown *json.Number `json:"unknown,omitempty"`
CriticalRecovery *json.Number `json:"critical_recovery,omitempty"`
WarningRecovery *json.Number `json:"warning_recovery,omitempty"`
Period *Period `json:"period,omitempty"`
TimeAggregator *string `json:"timeAggregator,omitempty"`
}
type ThresholdWindows struct {
RecoveryWindow *string `json:"recovery_window,omitempty"`
TriggerWindow *string `json:"trigger_window,omitempty"`
}
type NoDataTimeframe int
func (tf *NoDataTimeframe) UnmarshalJSON(data []byte) error {
s := string(data)
if s == "false" || s == "null" {
*tf = 0
} else {
i, err := strconv.ParseInt(s, 10, 32)
if err != nil {
return err
}
*tf = NoDataTimeframe(i)
}
return nil
}
type Options struct {
NoDataTimeframe NoDataTimeframe `json:"no_data_timeframe,omitempty"`
NotifyAudit *bool `json:"notify_audit,omitempty"`
NotifyNoData *bool `json:"notify_no_data,omitempty"`
RenotifyInterval *int `json:"renotify_interval,omitempty"`
NewHostDelay *int `json:"new_host_delay,omitempty"`
EvaluationDelay *int `json:"evaluation_delay,omitempty"`
Silenced map[string]int `json:"silenced,omitempty"`
TimeoutH *int `json:"timeout_h,omitempty"`
EscalationMessage *string `json:"escalation_message,omitempty"`
Thresholds *ThresholdCount `json:"thresholds,omitempty"`
ThresholdWindows *ThresholdWindows `json:"threshold_windows,omitempty"`
IncludeTags *bool `json:"include_tags,omitempty"`
RequireFullWindow *bool `json:"require_full_window,omitempty"`
Locked *bool `json:"locked,omitempty"`
EnableLogsSample *bool `json:"enable_logs_sample,omitempty"`
QueryConfig *QueryConfig `json:"queryConfig,omitempty"`
}
type TriggeringValue struct {
FromTs *int `json:"from_ts,omitempty"`
ToTs *int `json:"to_ts,omitempty"`
Value *int `json:"value,omitempty"`
}
type GroupData struct {
LastNoDataTs *int `json:"last_nodata_ts,omitempty"`
LastNotifiedTs *int `json:"last_notified_ts,omitempty"`
LastResolvedTs *int `json:"last_resolved_ts,omitempty"`
LastTriggeredTs *int `json:"last_triggered_ts,omitempty"`
Name *string `json:"name,omitempty"`
Status *string `json:"status,omitempty"`
TriggeringValue *TriggeringValue `json:"triggering_value,omitempty"`
}
type State struct {
Groups map[string]GroupData `json:"groups,omitempty"`
}
// Monitor allows watching a metric or check that you care about,
// notifying your team when some defined threshold is exceeded
type Monitor struct {
Creator *Creator `json:"creator,omitempty"`
Id *int `json:"id,omitempty"`
Type *string `json:"type,omitempty"`
Query *string `json:"query,omitempty"`
Name *string `json:"name,omitempty"`
Message *string `json:"message,omitempty"`
OverallState *string `json:"overall_state,omitempty"`
OverallStateModified *string `json:"overall_state_modified,omitempty"`
Tags []string `json:"tags"`
Options *Options `json:"options,omitempty"`
State State `json:"state,omitempty"`
}
// Creator contains the creator of the monitor
type Creator struct {
Email *string `json:"email,omitempty"`
Handle *string `json:"handle,omitempty"`
Id *int `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
}
// MuteMonitorScope specifies which scope to mute and when to end the mute
type MuteMonitorScope struct {
Scope *string `json:"scope,omitempty"`
End *int `json:"end,omitempty"`
}
// UnmuteMonitorScopes specifies which scope(s) to unmute
type UnmuteMonitorScopes struct {
Scope *string `json:"scope,omitempty"`
AllScopes *bool `json:"all_scopes,omitempty"`
}
// reqMonitors receives a slice of all monitors
type reqMonitors struct {
Monitors []Monitor `json:"monitors,omitempty"`
}
// CreateMonitor adds a new monitor to the system. This returns a pointer to a
// monitor so you can pass that to UpdateMonitor later if needed
func (client *Client) CreateMonitor(monitor *Monitor) (*Monitor, error) {
var out Monitor
// TODO: is this more pretty of frowned upon?
if err := client.doJsonRequest("POST", "/v1/monitor", monitor, &out); err != nil {
return nil, err
}
return &out, nil
}
// UpdateMonitor takes a monitor that was previously retrieved through some method
// and sends it back to the server
func (client *Client) UpdateMonitor(monitor *Monitor) error {
return client.doJsonRequest("PUT", fmt.Sprintf("/v1/monitor/%d", *monitor.Id),
monitor, nil)
}
// GetMonitor retrieves a monitor by identifier
func (client *Client) GetMonitor(id int) (*Monitor, error) {
var out Monitor
if err := client.doJsonRequest("GET", fmt.Sprintf("/v1/monitor/%d", id), nil, &out); err != nil {
return nil, err
}
return &out, nil
}
// GetMonitorsByName retrieves monitors by name
func (client *Client) GetMonitorsByName(name string) ([]Monitor, error) {
return client.GetMonitorsWithOptions(MonitorQueryOpts{Name: &name})
}
// GetMonitorsByTags retrieves monitors by a slice of tags
func (client *Client) GetMonitorsByTags(tags []string) ([]Monitor, error) {
return client.GetMonitorsWithOptions(MonitorQueryOpts{Tags: tags})
}
// GetMonitorsByMonitorTags retrieves monitors by a slice of monitor tags
func (client *Client) GetMonitorsByMonitorTags(tags []string) ([]Monitor, error) {
return client.GetMonitorsWithOptions(MonitorQueryOpts{MonitorTags: tags})
}
// DeleteMonitor removes a monitor from the system
func (client *Client) DeleteMonitor(id int) error {
return client.doJsonRequest("DELETE", fmt.Sprintf("/v1/monitor/%d", id),
nil, nil)
}
// GetMonitors returns a slice of all monitors
func (client *Client) GetMonitors() ([]Monitor, error) {
return client.GetMonitorsWithOptions(MonitorQueryOpts{})
}
// MonitorQueryOpts contains the options supported by
// https://docs.datadoghq.com/api/?lang=bash#get-all-monitor-details
type MonitorQueryOpts struct {
GroupStates []string
Name *string
Tags []string
MonitorTags []string
WithDowntimes *bool
}
// GetMonitorsWithOptions returns a slice of all monitors
// It supports all the options for querying
func (client *Client) GetMonitorsWithOptions(opts MonitorQueryOpts) ([]Monitor, error) {
var out reqMonitors
var query []string
if len(opts.Tags) > 0 {
value := fmt.Sprintf("tags=%v", strings.Join(opts.Tags, ","))
query = append(query, value)
}
if len(opts.GroupStates) > 0 {
value := fmt.Sprintf("group_states=%v", strings.Join(opts.GroupStates, ","))
query = append(query, value)
}
if len(opts.MonitorTags) > 0 {
value := fmt.Sprintf("monitor_tags=%v", strings.Join(opts.MonitorTags, ","))
query = append(query, value)
}
if v, ok := opts.GetWithDowntimesOk(); ok {
query = append(query, fmt.Sprintf("with_downtimes=%t", v))
}
if v, ok := opts.GetNameOk(); ok {
query = append(query, fmt.Sprintf("name=%s", v))
}
queryString, err := url.ParseQuery(strings.Join(query, "&"))
if err != nil {
return nil, err
}
err = client.doJsonRequest("GET", fmt.Sprintf("/v1/monitor?%v", queryString.Encode()), nil, &out.Monitors)
if err != nil {
return nil, err
}
return out.Monitors, nil
}
// MuteMonitors turns off monitoring notifications
func (client *Client) MuteMonitors() error {
return client.doJsonRequest("POST", "/v1/monitor/mute_all", nil, nil)
}
// UnmuteMonitors turns on monitoring notifications
func (client *Client) UnmuteMonitors() error {
return client.doJsonRequest("POST", "/v1/monitor/unmute_all", nil, nil)
}
// MuteMonitor turns off monitoring notifications for a monitor
func (client *Client) MuteMonitor(id int) error {
return client.doJsonRequest("POST", fmt.Sprintf("/v1/monitor/%d/mute", id), nil, nil)
}
// MuteMonitorScope turns off monitoring notifications for a monitor for a given scope
func (client *Client) MuteMonitorScope(id int, muteMonitorScope *MuteMonitorScope) error {
return client.doJsonRequest("POST", fmt.Sprintf("/v1/monitor/%d/mute", id), muteMonitorScope, nil)
}
// UnmuteMonitor turns on monitoring notifications for a monitor
func (client *Client) UnmuteMonitor(id int) error {
return client.doJsonRequest("POST", fmt.Sprintf("/v1/monitor/%d/unmute", id), nil, nil)
}
// UnmuteMonitorScopes is similar to UnmuteMonitor, but provides finer-grained control to unmuting
func (client *Client) UnmuteMonitorScopes(id int, unmuteMonitorScopes *UnmuteMonitorScopes) error {
return client.doJsonRequest("POST", fmt.Sprintf("/v1/monitor/%d/unmute", id), unmuteMonitorScopes, nil)
}