-
Notifications
You must be signed in to change notification settings - Fork 29
/
zabbix.go
670 lines (536 loc) · 13.3 KB
/
zabbix.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
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
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"os"
"reflect"
"strings"
"sync/atomic"
"time"
"github.com/reconquest/karma-go"
)
const (
// 900 is default zabbix session ttl, -60 for safety
ZabbixSessionTTL = 900 - 60
)
var (
withAuthFlag = true
withoutAuthFlag = false
)
type Params map[string]interface{}
type Request struct {
RPC string `json:"jsonrpc"`
Method string `json:"method"`
Params interface{} `json:"params"`
Auth string `json:"auth,omitempty"`
ID int64 `json:"id"`
}
type Zabbix struct {
basicURL string
apiURL string
session string
client *http.Client
requestID int64
apiVersion string
}
func NewZabbix(
address, username, password, sessionFile string,
) (*Zabbix, error) {
var err error
zabbix := &Zabbix{
client: &http.Client{},
}
if !strings.Contains(address, "://") {
address = "http://" + address
}
zabbix.basicURL = strings.TrimSuffix(address, "/")
zabbix.apiURL = zabbix.basicURL + "/api_jsonrpc.php"
if sessionFile != "" {
debugln("* reading session file")
err = zabbix.restoreSession(sessionFile)
if err != nil {
return nil, karma.Format(
err,
"can't restore zabbix session using file '%s'",
sessionFile,
)
}
} else {
debugln("* session feature is not used")
}
if zabbix.session == "" {
err = zabbix.Login(username, password)
if err != nil {
return nil, karma.Format(
err,
"can't authorize user '%s' in zabbix server",
username,
)
}
} else {
debugln("* using session instead of authorization")
}
if sessionFile != "" {
debugln("* rewriting session file")
// always rewrite session file, it will change modify date
err = zabbix.saveSession(sessionFile)
if err != nil {
return nil, karma.Format(
err,
"can't save zabbix session to file '%s'",
sessionFile,
)
}
}
if len(zabbix.apiVersion) < 1 {
err = zabbix.GetAPIVersion()
if err != nil {
return nil, karma.Format(
err,
"can't get zabbix api version",
)
}
}
return zabbix, nil
}
func (zabbix *Zabbix) restoreSession(path string) error {
file, err := os.OpenFile(
path, os.O_CREATE|os.O_RDWR, 0600,
)
if err != nil {
return karma.Format(
err, "can't open session file",
)
}
stat, err := file.Stat()
if err != nil {
return karma.Format(
err, "can't stat session file",
)
}
if time.Since(stat.ModTime()).Seconds() < ZabbixSessionTTL {
session, err := ioutil.ReadAll(file)
if err != nil {
return karma.Format(
err, "can't read session file",
)
}
zabbix.session = string(session)
} else {
debugln("* session is outdated")
}
return nil
}
func (zabbix *Zabbix) saveSession(path string) error {
err := ioutil.WriteFile(path, []byte(zabbix.session), 0600)
if err != nil {
return karma.Format(
err,
"can't write session file",
)
}
return nil
}
func (zabbix *Zabbix) GetAPIVersion() error {
var response ResponseAPIVersion
debugln("* apiinfo.version")
err := zabbix.call(
"apiinfo.version",
Params{},
&response,
withoutAuthFlag,
)
if err != nil {
return err
}
zabbix.apiVersion = response.Version
return nil
}
func (zabbix *Zabbix) Login(username, password string) error {
var response ResponseLogin
debugln("* authorizing")
err := zabbix.call(
"user.login",
Params{"user": username, "password": password},
&response,
withAuthFlag,
)
if err != nil {
return err
}
zabbix.session = response.Token
return nil
}
func (zabbix *Zabbix) Acknowledge(identifiers []string) error {
var response ResponseRaw
debugln("* acknowledging triggers")
params := Params{
"eventids": identifiers,
"message": "ack",
}
if len(strings.Split(zabbix.apiVersion, ".")) < 1 {
return karma.Format("can't parse zabbix version %s", zabbix.apiVersion)
}
majorZabbixVersion := strings.Split(zabbix.apiVersion, ".")[0]
switch majorZabbixVersion {
case "4":
//https://www.zabbix.com/documentation/4.0/manual/api/reference/event/acknowledge
params["action"] = 6
case "3":
//https://www.zabbix.com/documentation/3.4/manual/api/reference/event/acknowledge
params["action"] = 1
//default:
//https://www.zabbix.com/documentation/1.8/api/event/acknowledge
//https://www.zabbix.com/documentation/2.0/manual/appendix/api/event/acknowledge
}
err := zabbix.call(
"event.acknowledge",
params,
&response,
withAuthFlag,
)
if err != nil {
return err
}
return nil
}
func (zabbix *Zabbix) GetTriggers(extend Params) ([]Trigger, error) {
debugln("* retrieving triggers list")
params := Params{
"monitored": true,
"selectHosts": []string{"name"},
"selectGroups": []string{"groupid", "name"},
"selectLastEvent": "extend",
"selectFunctions": "extend",
"expandExpression": true,
"expandData": true,
"expandDescription": true,
"skipDependent": true,
"preservekeys": true,
}
for key, value := range extend {
params[key] = value
}
var response ResponseTriggers
err := zabbix.call("trigger.get", params, &response, withAuthFlag)
if err != nil {
return nil, err
}
var triggers []Trigger
for _, trigger := range unshuffle(response.Data) {
triggers = append(triggers, trigger.(Trigger))
}
return triggers, nil
}
func (zabbix *Zabbix) GetMaintenances(params Params) ([]Maintenance, error) {
debugln("* retrieving maintenances list")
var response ResponseMaintenances
err := zabbix.call("maintenance.get", params, &response, withAuthFlag)
if err != nil {
return nil, err
}
var maintenances []Maintenance
for _, maintenance := range response.Data {
maintenances = append(maintenances, maintenance)
}
return maintenances, nil
}
func (zabbix *Zabbix) CreateMaintenance(params Params) (Maintenances, error) {
debugln("* create maintenances list")
var response ResponseMaintenancesArray
err := zabbix.call("maintenance.create", params, &response, withAuthFlag)
return response.Data, err
}
func (zabbix *Zabbix) UpdateMaintenance(params Params) (Maintenances, error) {
debugln("* update maintenances list")
var response ResponseMaintenancesArray
err := zabbix.call("maintenance.update", params, &response, withAuthFlag)
return response.Data, err
}
func (zabbix *Zabbix) RemoveMaintenance(params interface{}) (Maintenances, error) {
debugln("* remove maintenances")
var response ResponseMaintenancesArray
err := zabbix.call("maintenance.delete", params, &response, withAuthFlag)
return response.Data, err
}
func (zabbix *Zabbix) GetItems(params Params) ([]Item, error) {
debugln("* retrieving items list")
var response ResponseItems
err := zabbix.call("item.get", params, &response, withAuthFlag)
if err != nil {
return nil, err
}
return response.Data, nil
}
func (zabbix *Zabbix) GetHTTPTests(params Params) ([]HTTPTest, error) {
debugln("* retrieving web scenarios list")
var response ResponseHTTPTests
err := zabbix.call("httptest.get", params, &response, withAuthFlag)
if err != nil {
return nil, err
}
return response.Data, nil
}
func (zabbix *Zabbix) GetUsersGroups(params Params) ([]UserGroup, error) {
debugln("* retrieving users groups list")
var response ResponseUserGroup
err := zabbix.call("usergroup.get", params, &response, withAuthFlag)
if err != nil {
return nil, err
}
return response.Data, nil
}
func (zabbix *Zabbix) AddUserToGroups(
groups []UserGroup,
user User,
) error {
for _, group := range groups {
identifiers := []string{user.ID}
for _, groupUser := range group.Users {
identifiers = append(identifiers, groupUser.ID)
}
debugf("* adding user %s to group %s", user.Alias, group.Name)
err := zabbix.call(
"usergroup.update",
Params{"usrgrpid": group.ID, "userids": identifiers},
&ResponseRaw{},
withAuthFlag,
)
if err != nil {
return karma.Format(
err,
"can't update usergroup %s", group.Name,
)
}
}
return nil
}
func (zabbix *Zabbix) RemoveUserFromGroups(
groups []UserGroup,
user User,
) error {
for _, group := range groups {
identifiers := []string{}
for _, groupUser := range group.Users {
if groupUser.ID == user.ID {
continue
}
identifiers = append(identifiers, groupUser.ID)
}
debugf("* removing user %s from group %s", user.Alias, group.Name)
err := zabbix.call(
"usergroup.update",
Params{"usrgrpid": group.ID, "userids": identifiers},
&ResponseRaw{},
withAuthFlag,
)
if err != nil {
return karma.Format(
err,
"can't update usergroup %s", group.Name,
)
}
}
return nil
}
func (zabbix *Zabbix) GetUsers(params Params) ([]User, error) {
debugln("* retrieving users list")
var response ResponseUsers
err := zabbix.call("user.get", params, &response, withAuthFlag)
if err != nil {
return nil, err
}
return response.Data, nil
}
func (zabbix *Zabbix) GetHosts(params Params) ([]Host, error) {
debugf("* retrieving hosts list")
var response ResponseHosts
err := zabbix.call("host.get", params, &response, withAuthFlag)
if err != nil {
return nil, err
}
return response.Data, nil
}
func (zabbix *Zabbix) RemoveHosts(params interface{}) (Hosts, error) {
debugf("* remove hosts list")
var response ResponseHostsArray
err := zabbix.call("host.delete", params, &response, withAuthFlag)
return response.Data, err
}
func (zabbix *Zabbix) GetGroups(params Params) ([]Group, error) {
debugf("* retrieving groups list")
var response ResponseGroups
err := zabbix.call("hostgroup.get", params, &response, withAuthFlag)
return response.Data, err
}
func (zabbix *Zabbix) GetGraphURL(identifier string) string {
return zabbix.getGraphURL([]string{identifier}, "showgraph", "0")
}
func (zabbix *Zabbix) GetNormalGraphURL(identifiers []string) string {
return zabbix.getGraphURL(identifiers, "batchgraph", "0")
}
func (zabbix *Zabbix) GetStackedGraphURL(identifiers []string) string {
return zabbix.getGraphURL(identifiers, "batchgraph", "1")
}
func (zabbix *Zabbix) getGraphURL(
identifiers []string,
action string,
graphType string,
) string {
encodedIdentifiers := []string{}
for _, identifier := range identifiers {
encodedIdentifiers = append(
encodedIdentifiers,
"itemids%5B%5D="+identifier,
)
}
return zabbix.basicURL + fmt.Sprintf(
"/history.php?action=%s&graphtype=%s&%s",
action,
graphType,
strings.Join(encodedIdentifiers, "&"),
)
}
func (zabbix *Zabbix) GetHistory(extend Params) ([]History, error) {
debugf("* retrieving items history")
params := Params{
"output": "extend",
"sortfield": "clock",
"sortorder": "DESC",
}
for key, value := range extend {
params[key] = value
}
var response ResponseHistory
err := zabbix.call("history.get", params, &response, withAuthFlag)
if err != nil {
return nil, err
}
return response.Data, nil
}
func (zabbix *Zabbix) call(
method string, params interface{}, response Response, authFlag bool,
) error {
debugf("~> %s", method)
debugParams(params)
request := Request{
RPC: "2.0",
Method: method,
Params: params,
ID: atomic.AddInt64(&zabbix.requestID, 1),
}
if authFlag {
request.Auth = zabbix.session
}
buffer, err := json.Marshal(request)
if err != nil {
return karma.Format(
err,
"can't encode request to JSON",
)
}
payload, err := http.NewRequest(
"POST",
zabbix.apiURL,
bytes.NewReader(buffer),
)
if err != nil {
return karma.Format(
err,
"can't create http request",
)
}
payload.ContentLength = int64(len(buffer))
payload.Header.Add("Content-Type", "application/json-rpc")
payload.Header.Add("User-Agent", "zabbixctl")
resource, err := zabbix.client.Do(payload)
if err != nil {
return karma.Format(
err,
"http request to zabbix api failed",
)
}
body, err := ioutil.ReadAll(resource.Body)
if err != nil {
return karma.Format(
err,
"can't read zabbix api response body",
)
}
debugf("<~ %s", resource.Status)
if traceMode {
var tracing bytes.Buffer
err = json.Indent(&tracing, body, "", " ")
if err != nil {
return karma.Format(err, "can't indent api response body")
}
tracef("<~ %s", tracing.String())
}
err = json.Unmarshal(body, response)
if err != nil {
// There is can be bullshit case when zabbix sends empty `result`
// array and json.Unmarshal triggers the error with message about
// failed type conversion to map[].
//
// So, we must check that err is not this case.
var raw ResponseRaw
rawErr := json.Unmarshal(body, &raw)
if rawErr != nil {
// return original error
return err
}
if result, ok := raw.Result.([]interface{}); ok && len(result) == 0 {
return nil
}
return err
}
err = response.Error()
if err != nil {
return karma.Format(
err,
"zabbix returned error while working with api method %s",
method,
)
}
return nil
}
func debugParams(params interface{}, prefix ...string) {
switch params.(type) {
case Params:
p, _ := params.(Params)
for key, value := range p {
if valueParams, ok := value.(Params); ok {
debugParams(valueParams, append(prefix, key)...)
continue
}
if key == "password" {
value = "**********"
}
debugf(
"** %s%s: %v",
strings.Join(append(prefix, ""), "."),
key, value,
)
}
case interface{}:
if p, ok := params.([]string); ok {
for _, value := range p {
debugf("** %v", value)
}
}
}
}
func unshuffle(target interface{}) []interface{} {
tears := reflect.ValueOf(target)
var values []interface{}
for _, key := range tears.MapKeys() {
values = append(
values,
tears.MapIndex(key).Interface(),
)
}
return values
}