forked from claranet/go-zabbix-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
doc.go
44 lines (33 loc) · 1.4 KB
/
doc.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
/*
Package zabbix provides bindings to interoperate between programs written in Go
language and the Zabbix monitoring API.
Tested on Zabbix 3.2 but should work since 2.0 version.
This package aims to support multiple zabbix resources from its API like trigger, application, host group, host, item, template..
Install it: `go get github.com/claranet/go-zabbix-api`
Getting started
package main
import (
"fmt"
"github.com/claranet/go-zabbix-api"
)
func main() {
user := "MyZabbixUsername"
pass := "MyZabbixPassword"
api := zabbix.NewAPI("http://localhost/api_jsonrpc.php")
api.Login(user, pass)
res, err := api.Version()
if err != nil {
panic(err)
}
fmt.Printf("Connected to zabbix api v%s\n", res)
}
Run test
You should run tests before using this package – Zabbix API doesn't match documentation in few details, which are changing in patch releases. Tests are not expected to be destructive, but you are advised to run them against not-production instance or at least make a backup.
export TEST_ZABBIX_URL=http://localhost:8080/zabbix/api_jsonrpc.php
export TEST_ZABBIX_USER=Admin
export TEST_ZABBIX_PASSWORD=zabbix
export TEST_ZABBIX_VERBOSE=1
go test -v
`TEST_ZABBIX_URL` may contain HTTP basic auth username and password: `http://username:password@host/api_jsonrpc.php`. Also, in some setups URL should be like `http://host/zabbix/api_jsonrpc.php`.
*/
package zabbix