├── .gitignore ├── LICENSE ├── README.md ├── action.go ├── action_test.go ├── event.go ├── go.mod ├── go.sum ├── history.go ├── history_test.go ├── host.go ├── host_test.go ├── hostgroup.go ├── hostgroup_test.go ├── hostinterface.go ├── hostinterface_test.go ├── mediatype.go ├── mediatype_test.go ├── problem.go ├── problem_test.go ├── template.go ├── template_test.go ├── user.go ├── user_test.go ├── usergroup.go ├── usergroup_test.go ├── usermacro.go ├── usermacro_test.go ├── zabbix.go └── zabbix_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | .project 2 | .vscode 3 | .idea 4 | .env 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/README.md -------------------------------------------------------------------------------- /action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/action.go -------------------------------------------------------------------------------- /action_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/action_test.go -------------------------------------------------------------------------------- /event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/event.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/go.sum -------------------------------------------------------------------------------- /history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/history.go -------------------------------------------------------------------------------- /history_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/history_test.go -------------------------------------------------------------------------------- /host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/host.go -------------------------------------------------------------------------------- /host_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/host_test.go -------------------------------------------------------------------------------- /hostgroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/hostgroup.go -------------------------------------------------------------------------------- /hostgroup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/hostgroup_test.go -------------------------------------------------------------------------------- /hostinterface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/hostinterface.go -------------------------------------------------------------------------------- /hostinterface_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/hostinterface_test.go -------------------------------------------------------------------------------- /mediatype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/mediatype.go -------------------------------------------------------------------------------- /mediatype_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/mediatype_test.go -------------------------------------------------------------------------------- /problem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/problem.go -------------------------------------------------------------------------------- /problem_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/problem_test.go -------------------------------------------------------------------------------- /template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/template.go -------------------------------------------------------------------------------- /template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/template_test.go -------------------------------------------------------------------------------- /user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/user.go -------------------------------------------------------------------------------- /user_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/user_test.go -------------------------------------------------------------------------------- /usergroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/usergroup.go -------------------------------------------------------------------------------- /usergroup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/usergroup_test.go -------------------------------------------------------------------------------- /usermacro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/usermacro.go -------------------------------------------------------------------------------- /usermacro_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/usermacro_test.go -------------------------------------------------------------------------------- /zabbix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/zabbix.go -------------------------------------------------------------------------------- /zabbix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixys/nxs-go-zabbix/HEAD/zabbix_test.go --------------------------------------------------------------------------------