forked from zabbix-tools/go-zabbix
-
Notifications
You must be signed in to change notification settings - Fork 2
/
trigger.go
221 lines (157 loc) · 5.93 KB
/
trigger.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
package zabbix
import (
"fmt"
)
const (
// TriggerAlarmStateOK means a normal trigger state. Called FALSE in older Zabbix versions.
TriggerAlarmStateOK = iota
// TriggerAlarmStateProblem normally means that something happened.
TriggerAlarmStateProblem
)
const (
// TriggerStateNormal means normal trigger state
TriggerStateNormal = iota
// TriggerStateUnknown means unknown trigger state
TriggerStateUnknown
)
const (
// TriggerSeverityNotClassified is Not classified severity
TriggerSeverityNotClassified = iota
// TriggerSeverityInformation is Information severity
TriggerSeverityInformation
// TriggerSeverityWarning is Warning severity
TriggerSeverityWarning
// TriggerSeverityAverage is Average severity
TriggerSeverityAverage
// TriggerSeverityHigh is High severity
TriggerSeverityHigh
// TriggerSeverityDisaster is Disaster severity
TriggerSeverityDisaster
)
// Trigger represents a Zabbix Trigger returned from the Zabbix API.
//
// See: https://www.zabbix.com/documentation/3.4/manual/config/triggers
type Trigger struct {
// TriggerID is the ID of the Trigger.
TriggerID string
// AlarmState shows whether the trigger is in OK or problem state.
//
// AlarmState must be one of the TriggerAlarmState constants.
AlarmState int
// Description is the name of the trigger.
Description string
// Enabled shows whether the trigger is enabled or disabled.
Enabled bool
// Expression is the trigger expression
Expression string
// Hosts is an array of Hosts that the trigger belongs.
//
// Hosts is only populated if TriggerGetParams.SelectHosts is given in the
// query parameters that returned this Trigger.
Hosts []Host
// Groups is an array of Hostgroups that the trigger belongs.
//
// Groups is only populated if TriggerGetParams.SelectGroups is given in the
// query parameters that returned this Trigger.
Groups []Hostgroup
// LastChange is the time when the trigger last changed its state.
LastChange int
// Severity of the trigger.
//
// Severity must be one of the TriggerSeverity constants.
Severity int
// State of the trigger.
//
// State must be one of the TriggerState constants.
State int
// Tags is an array of trigger tags
//
// Tags is only populated if TriggerGetParams.SelectTags is given in the
// query parameters that returned this Trigger.
Tags []TriggerTag
// LastEvent is the latest event for the trigger
//
// LastEvent is only populated if TriggerGetParams.SelectLastEvent is set
LastEvent *Event
// URL is a link to the trigger graph in Zabbix
URL string
}
// TriggerTag is trigger tag
type TriggerTag struct {
Name string
Value string
}
// TriggerGetParams is params for trigger.get query
type TriggerGetParams struct {
GetParameters
// TriggerIDs filters search results to Triggers that matched the given Trigger
// IDs.
TriggerIDs []string `json:"triggerids,omitempty"`
// GroupIDs filters search results to triggers for hosts that are members of
// the given Group IDs.
GroupIDs []string `json:"groupids,omitempty"`
TemplateIDs []string `json:"templateids,omitempty"`
// HostIDs filters search results to triggers for hosts that matched the given
// Host IDs.
HostIDs []string `json:"hostids,omitempty"`
ItemIDs []string `json:"itemids,omitempty"`
ApplicationIDs []string `json:"applicationids,omitempty"`
Functions []string `json:"functions,omitempty"`
Group string `json:"group,omitempty"`
Host string `json:"host,omitempty"`
// InheritedOnly filters search results to triggers which have been
// inherited from a template.
InheritedOnly bool `json:"inherited,omitempty"`
TemplatedOnly bool `json:"templated,omitempty"`
MonitoredOnly bool `json:"monitored,omitempty"`
ActiveOnly bool `json:"active,omitempty"`
MaintenanceOnly bool `json:"maintenance,omitempty"`
WithUnacknowledgedEventsOnly bool `json:"withUnacknowledgedEvents,omitempty"`
WithAcknowledgedEventsOnly bool `json:"withAcknowledgedEvents,omitempty"`
WithLastEventUnacknowledgedOnly bool `json:"withLastEventUnacknowledged,omitempty"`
SkipDependent bool `json:"skipDependent,omitempty"`
// LastChangeSince timestamp `json:"lastChangeSince,omitempty"`
// LastChangeTill timestamp `json:"lastChangeTill,omitempty"`
RecentProblemOnly bool `json:"only_true,omitempty"`
MinSeverity int `json:"min_severity,omitempty"`
ExpandComment bool `json:"expandComment,omitempty"`
ExpandDescription bool `json:"expandDescription,omitempty"`
ExpandExpression bool `json:"expandExpression,omitempty"`
// SelectGroups causes all Hostgroups which contain the object that caused each
// Trigger to be attached in the search results.
SelectGroups SelectQuery `json:"selectGroups,omitempty"`
// SelectHosts causes all Hosts which contain the object that caused each
// Trigger to be attached in the search results.
SelectHosts SelectQuery `json:"selectHosts,omitempty"`
SelectItems SelectQuery `json:"selectItems,omitempty"`
SelectFunctions SelectQuery `json:"selectFunctions,omitempty"`
SelectDependencies SelectQuery `json:"selectDependencies,omitempty"`
SelectDiscoveryRule SelectQuery `json:"selectDiscoveryRule,omitempty"`
SelectLastEvent SelectQuery `json:"selectLastEvent,omitempty"`
SelectTags SelectQuery `json:"selectTags,omitempty"`
}
// GetTriggers queries the Zabbix API for Triggers matching the given search
// parameters.
//
// ErrTriggerNotFound is returned if the search result set is empty.
// An error is returned if a transport, parsing or API error occurs.
func (c *Session) GetTriggers(params TriggerGetParams) ([]Trigger, error) {
triggers := make([]jTrigger, 0)
err := c.Get("trigger.get", params, &triggers)
if err != nil {
return nil, err
}
if len(triggers) == 0 {
return nil, ErrNotFound
}
// map JSON Triggers to Go Triggers
out := make([]Trigger, len(triggers))
for i, jtrigger := range triggers {
trigger, err := jtrigger.Trigger()
if err != nil {
return nil, fmt.Errorf("Error mapping Trigger %d in response: %v", i, err)
}
out[i] = *trigger
}
return out, nil
}