-
Notifications
You must be signed in to change notification settings - Fork 5
/
check_bundle.go
305 lines (248 loc) · 9.13 KB
/
check_bundle.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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
// Copyright 2016 Circonus, Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Check bundle API support - Fetch, Create, Update, Delete, and Search
// See: https://login.circonus.com/resources/api/calls/check_bundle
package apiclient
import (
"encoding/json"
"fmt"
"net/url"
"regexp"
"sort"
"strings"
"github.com/circonus-labs/go-apiclient/config"
"github.com/pkg/errors"
)
// CheckBundleMetric individual metric configuration
type CheckBundleMetric struct {
Name string `json:"name"` // string
Type string `json:"type"` // string
Status string `json:"status,omitempty"` // string
Result *string `json:"result,omitempty"` // string or null, NOTE not settable - return/information value only
Units *string `json:"units,omitempty"` // string or null
Tags []string `json:"tags"` // [] len >= 0
}
// CheckBundleConfig contains the check type specific configuration settings
// as k/v pairs (see https://login.circonus.com/resources/api/calls/check_bundle
// for the specific settings available for each distinct check type)
type CheckBundleConfig map[config.Key]string
// CheckBundle defines a check bundle. See https://login.circonus.com/resources/api/calls/check_bundle for more information.
type CheckBundle struct {
CID string `json:"_cid,omitempty"` // string
Status string `json:"status,omitempty"` // string
DisplayName string `json:"display_name"` // string
LastModifedBy string `json:"_last_modifed_by,omitempty"` // string
Target string `json:"target"` // string
Type string `json:"type"` // string
Notes *string `json:"notes,omitempty"` // string or null
Config CheckBundleConfig `json:"config"` // NOTE contents of config are check type specific, map len >= 0
Brokers []string `json:"brokers"` // [] len >= 0
Checks []string `json:"_checks,omitempty"` // [] len >= 0
CheckUUIDs []string `json:"_check_uuids,omitempty"` // [] len >= 0
ReverseConnectURLs []string `json:"_reverse_connection_urls,omitempty"` // [] len >= 0
Tags []string `json:"tags,omitempty"` // [] len >= 0
MetricFilters [][]string `json:"metric_filters,omitempty"` // [][type,rule_regx,comment]
Metrics []CheckBundleMetric `json:"metrics"` // [] >= 0
Timeout float32 `json:"timeout,omitempty"` // float32
Period uint `json:"period,omitempty"` // uint
Created uint `json:"_created,omitempty"` // uint
LastModified uint `json:"_last_modified,omitempty"` // uint
MetricLimit int `json:"metric_limit,omitempty"` // int
}
// NewCheckBundle returns new CheckBundle (with defaults, if applicable)
func NewCheckBundle() *CheckBundle {
return &CheckBundle{
Config: make(CheckBundleConfig, config.DefaultConfigOptionsSize),
MetricLimit: config.DefaultCheckBundleMetricLimit,
Period: config.DefaultCheckBundlePeriod,
Timeout: config.DefaultCheckBundleTimeout,
Status: config.DefaultCheckBundleStatus,
}
}
// FetchCheckBundle retrieves check bundle with passed cid.
func (a *API) FetchCheckBundle(cid CIDType) (*CheckBundle, error) {
if cid == nil || *cid == "" {
return nil, errors.New("invalid check bundle CID (none)")
}
var bundleCID string
if !strings.HasPrefix(*cid, config.CheckBundlePrefix) {
bundleCID = fmt.Sprintf("%s/%s", config.CheckBundlePrefix, *cid)
} else {
bundleCID = *cid
}
matched, err := regexp.MatchString(config.CheckBundleCIDRegex, bundleCID)
if err != nil {
return nil, err
}
if !matched {
return nil, errors.Errorf("invalid check bundle CID (%v)", bundleCID)
}
result, err := a.Get(bundleCID)
if err != nil {
return nil, errors.Wrap(err, "fetching check bundle")
}
if a.Debug {
a.Log.Printf("fetch check bundle, received JSON: %s", string(result))
}
checkBundle := &CheckBundle{}
if err := json.Unmarshal(result, checkBundle); err != nil {
return nil, errors.Wrap(err, "parsing check bundle")
}
return checkBundle, nil
}
// FetchCheckBundles retrieves all check bundles available to the API Token.
func (a *API) FetchCheckBundles() (*[]CheckBundle, error) {
result, err := a.Get(config.CheckBundlePrefix)
if err != nil {
return nil, errors.Wrap(err, "fetching check bundles")
}
var checkBundles []CheckBundle
if err := json.Unmarshal(result, &checkBundles); err != nil {
return nil, errors.Wrap(err, "parsing check bundles")
}
return &checkBundles, nil
}
// UpdateCheckBundle updates passed check bundle.
func (a *API) UpdateCheckBundle(cfg *CheckBundle) (*CheckBundle, error) {
if cfg == nil {
return nil, errors.New("invalid check bundle config (nil)")
}
bundleCID := cfg.CID
matched, err := regexp.MatchString(config.CheckBundleCIDRegex, bundleCID)
if err != nil {
return nil, err
}
if !matched {
return nil, errors.Errorf("invalid check bundle CID (%s)", bundleCID)
}
if len(cfg.Tags) > 0 {
cfg.Tags = fixTags(cfg.Tags)
}
jsonCfg, err := json.Marshal(cfg)
if err != nil {
return nil, err
}
if a.Debug {
a.Log.Printf("update check bundle, sending JSON: %s", string(jsonCfg))
}
result, err := a.Put(bundleCID, jsonCfg)
if err != nil {
return nil, errors.Wrap(err, "updating check bundle")
}
checkBundle := &CheckBundle{}
if err := json.Unmarshal(result, checkBundle); err != nil {
return nil, errors.Wrap(err, "parsing check bundle")
}
return checkBundle, nil
}
// CreateCheckBundle creates a new check bundle (check).
func (a *API) CreateCheckBundle(cfg *CheckBundle) (*CheckBundle, error) {
if cfg == nil {
return nil, errors.New("invalid check bundle config (nil)")
}
if len(cfg.Tags) > 0 {
cfg.Tags = fixTags(cfg.Tags)
}
jsonCfg, err := json.Marshal(cfg)
if err != nil {
return nil, err
}
if a.Debug {
a.Log.Printf("create check bundle, sending JSON: %s", string(jsonCfg))
}
result, err := a.Post(config.CheckBundlePrefix, jsonCfg)
if err != nil {
return nil, errors.Wrap(err, "creating check bundle")
}
checkBundle := &CheckBundle{}
if err := json.Unmarshal(result, checkBundle); err != nil {
return nil, errors.Wrap(err, "parsing check bundle")
}
return checkBundle, nil
}
// DeleteCheckBundle deletes passed check bundle.
func (a *API) DeleteCheckBundle(cfg *CheckBundle) (bool, error) {
if cfg == nil {
return false, errors.New("invalid check bundle config (nil)")
}
return a.DeleteCheckBundleByCID(CIDType(&cfg.CID))
}
// DeleteCheckBundleByCID deletes check bundle with passed cid.
func (a *API) DeleteCheckBundleByCID(cid CIDType) (bool, error) {
if cid == nil || *cid == "" {
return false, errors.New("invalid check bundle CID (none)")
}
var bundleCID string
if !strings.HasPrefix(*cid, config.CheckBundlePrefix) {
bundleCID = fmt.Sprintf("%s/%s", config.CheckBundlePrefix, *cid)
} else {
bundleCID = *cid
}
matched, err := regexp.MatchString(config.CheckBundleCIDRegex, bundleCID)
if err != nil {
return false, err
}
if !matched {
return false, errors.Errorf("invalid check bundle CID (%v)", bundleCID)
}
_, err = a.Delete(bundleCID)
if err != nil {
return false, errors.Wrap(err, "deleting check bundle")
}
return true, nil
}
// SearchCheckBundles returns check bundles matching the specified
// search query and/or filter. If nil is passed for both parameters
// all check bundles will be returned.
func (a *API) SearchCheckBundles(searchCriteria *SearchQueryType, filterCriteria *SearchFilterType) (*[]CheckBundle, error) {
q := url.Values{}
if searchCriteria != nil && *searchCriteria != "" {
q.Set("search", string(*searchCriteria))
}
if filterCriteria != nil && len(*filterCriteria) > 0 {
for filter, criteria := range *filterCriteria {
for _, val := range criteria {
q.Add(filter, val)
}
}
}
if q.Encode() == "" {
return a.FetchCheckBundles()
}
reqURL := url.URL{
Path: config.CheckBundlePrefix,
RawQuery: q.Encode(),
}
resp, err := a.Get(reqURL.String())
if err != nil {
return nil, errors.Wrap(err, "searching check bundles")
}
var results []CheckBundle
if err := json.Unmarshal(resp, &results); err != nil {
return nil, errors.Wrap(err, "parsing check bundles")
}
return &results, nil
}
func fixTags(tags []string) []string {
if len(tags) == 0 {
return tags
}
unique := make(map[string]bool)
var result []string
for _, tag := range tags {
// remove blanks
if tag == "" {
continue
}
// lowercase
tag = strings.ToLower(tag)
// remove duplicates
if _, found := unique[tag]; !found {
unique[tag] = true
result = append(result, tag)
}
}
sort.Strings(result)
return result
}