-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandler.php
458 lines (434 loc) · 16.6 KB
/
handler.php
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
<?php
/*
* Icinga HUD
*
* handler.php
*
* contains functions used by webpage templates for downloading raw data,
* processing it, and formatting it four output
*
* Copyright Seth Galitzer <[email protected]>
*
*/
function getJSON($myquery) {
/* getJSON()
*
* parameters: $myquery - filter to be passed to CGI
*
* Connect to server using URL, path, and credentials provided in config.php,
* download result and return as keyed array.
*/
require "config.php";
$url = "$icingaurl/$icingacgi?$myquery";
$data = curl_init($url);
curl_setopt_array($data,
array(
CURLOPT_USERPWD => "$icingauser:$icingapass",
CURLOPT_PORT => "$icingaport",
CURLOPT_HTTPAUTH => 1,
CURLAUTH_BASIC => 1,
CURLOPT_RETURNTRANSFER => 1
));
$raw = curl_exec($data);
curl_close($data);
return json_decode($raw, TRUE);
};
function getHostInfo($input) {
/* getHostInfo()
*
* parameters: $input - keyed array containing raw data returned from CGI; this
* should be a list of hosts
*
* Take raw data array and add it to new array with only necessary values
* and return that array.
*/
$ret = array();
foreach($input["status"]["host_status"] as $host) {
array_push($ret,
array(
"host_name" => $host["host_name"],
"status" => $host["status"],
"status_information" => $host["status_information"]
)
);
};
return $ret;
};
function printHostInfo($info) {
/* printHostInfo()
*
* parameters: $info - keyed array with processed data needed for this operation
*
* Take processed data array containing host status and output as nice html
* with appropriate formatting.
*/
$hosts = getHostInfo($info);
$i=1;
print "<div class=\"row\">\n";
foreach($hosts as $host){
print " <div class=\"col-lg-2\">\n";
print " <div class=\"alert alert-danger\">\n";
print " <a href=\"host.php?host=$host[host_name]\" class=\"alert-link\"><strong>$host[host_name]</strong> - ($host[status])</a><br>\n";
print " $host[status_information]\n";
print " </div><!-- alert -->\n";
print " </div><!-- col -->\n";
if(($i%6) == 0) {
print "</div><!-- row -->\n";
print "<div class=\"clearfix visible-lg-block\"></div>\n";
print "<div class=\"row\">\n";
$i=1;
} else {
$i+=1;
}
};
print "</div><!-- row -->\n";
};
function getServiceInfo($input) {
/* getServiceInfo()
*
* parameters: $input - keyed array containing raw data returned from CGI; this
* should be a list of hosts and services
*
* Take raw data array and add it to new array with only necessary values
* and return that array.
*/
$ret = array();
foreach($input["status"]["service_status"] as $host) {
array_push($ret,
array(
"host_name" => $host["host_name"],
"service" => $host["service_display_name"],
"last_check" => $host["last_check"],
"status" => $host["status"],
"acknowledged" => $host["has_been_acknowledged"],
"status_information" => $host["status_information"]
)
);
};
return $ret;
};
function printServiceInfo($info) {
/* printServiceInfo()
*
* parameters: $info - keyed array with processed data needed for this operation
*
* Take processed data array containing host and service status and output as
* nice html with appropriate formatting.
*/
$services = getServiceInfo($info);
$i=1;
print "<div class=\"row\">\n";
foreach($services as $service) {
if(strpos($service["status_information"], "CHECK_NRPE") !== 0) {
print " <div class=\"col-lg-2\">\n";
if(strcmp($service["status"],"WARNING") == 0) {
print " <div class=\"alert alert-warning\">\n";
} elseif (strcmp($service["status"],"CRITICAL") == 0) {
print " <div class=\"alert alert-danger\">\n";
} else {
print " <div class=\"alert alert-info\">\n";
};
print " <a href=\"host.php?host=$service[host_name]\" class=\"alert-link\"><strong>$service[host_name]</strong></a><br>\n";
print " $service[service] - $service[status]<br>\n";
print " $service[status_information]\n";
print " </div><!-- alert -->\n";
print " </div><!-- col -->\n";
if(($i%6) == 0) {
print "</div><!-- row -->\n";
print "<div class=\"clearfix visible-lg-block\"></div>\n";
print "<div class=\"row\">\n";
$i=1;
} else {
$i+=1;
};
};
};
print "</div><!-- row -->\n";
};
function getHostgroupInfo($input) {
/* getHostgroupInfo()
*
* parameters: $input - keyed array containing raw data returned from CGI; this
* should be a list of hostgroups with host and service status
*
* Take raw data array and add it to new array with only necessary values
* and return that array.
*/
$ret = array();
foreach($input["status"]["hostgroup_summary"] as $hostgrp) {
array_push($ret,
array(
"hostgroup_name" => $hostgrp["hostgroup_name"],
"hosts_up" => $hostgrp["hosts_up"],
"hosts_down" => $hostgrp["hosts_down"],
"services_ok" => $hostgrp["services_ok"],
"services_warning" => $hostgrp["services_warning_unacknowledged"],
"services_critical" => $hostgrp["services_critical_unacknowledged"]
)
);
};
return $ret;
};
function printHostgroupInfo($info) {
/* printHostgroupInfo()
*
* parameters: $info - keyed array with processed data needed for this operation
*
* Take processed data array containing hostgroup and service status and output
* as nice html with appropriate formatting.
*/
$hostgrps = getHostgroupInfo($info);
$i=1;
print "<div class=\"row\">\n";
foreach($hostgrps as $hostgrp) {
$cnt = $hostgrp["hosts_up"] + $hostgrp["hosts_down"];
print " <div class=\"col-lg-2\">\n";
if(($hostgrp["hosts_down"] > 0) ||
($hostgrp["services_critical"] > 0)) {
print " <div class=\"alert alert-danger\">\n";
} elseif ($hostgrp["services_warning"] > 0) {
print " <div class=\"alert alert-warning\">\n";
} else {
print " <div class=\"alert alert-success\">\n";
};
print " <a href=\"hostgroup.php?hostgroup=$hostgrp[hostgroup_name]\" class=\"alert-link\"><strong>$hostgrp[hostgroup_name]</strong> ($cnt hosts)</a><br>\n";
print " <div class=\"row\">\n";
print " <div class=\"col-lg-6\">\n";
if($hostgrp["hosts_down"] > 0) {
print " <div class=\"alert alert-danger\">\n";
} else {
print " <div class=\"alert alert-success\">\n";
}
print " <strong>Hosts</strong><br>\n";
print " UP: $hostgrp[hosts_up]<br>\n";
print " DOWN: $hostgrp[hosts_down]<br>\n";
print " </div><!-- alert -->\n";
print " </div><!-- col -->\n";
print " <div class=\"col-lg-6\">\n";
if($hostgrp["services_critical"] > 0) {
print " <div class=\"alert alert-danger\">\n";
} elseif ($hostgrp["services_warning"] > 0) {
print " <div class=\"alert alert-warning\">\n";
} else {
print " <div class=\"alert alert-success\">\n";
}
print " <strong>Services</strong><br>\n";
print " OK: $hostgrp[services_ok]<br>\n";
print " WARN: $hostgrp[services_warning]<br>\n";
print " CRIT: $hostgrp[services_critical]<br>\n";
print " </div><!-- alert -->\n";
print " </div><!-- col -->\n";
print " </div><!-- row -->\n";
print " </div><!-- alert -->\n";
print " </div><!-- col -->\n";
if(($i%6) == 0) {
print "</div><!-- row -->\n";
print "<div class=\"clearfix visible-lg-block\"></div>\n";
print "<div class=\"row\">\n";
$i=1;
} else {
$i+=1;
};
};
print "</div><!-- row -->\n";
};
function getHostgroupDetails($input) {
/* getHostgorupDetails()
*
* parameters: $input - keyed array containing raw data returned from CGI; this
* should be a list of hosts and services from a specific hostgroup
*
* Take raw data array and add it to new array with only necessary values
* and return that array.
*/
$ret = array();
foreach($input["status"]["hostgroup_overview"][0]["members"] as $host) {
array_push($ret,
array(
"host_name" => $host["host_name"],
"host_status" => $host["host_status"],
"services_ok" => $host["services_status_ok"],
"services_warning" => $host["services_status_warning"],
"services_critical" => $host["services_status_critical"],
"services_unknown" => $host["services_status_unknown"]
)
);
};
return $ret;
};
function printHostgroupDetails($info) {
/* printHostgroupDetails()
*
* parameters: $info - keyed array with processed data needed for this operation
*
* Take processed data array containing hosts and service status from a specific
* hostgroup and output as nice html with appropriate formatting.
*/
$hosts = getHostgroupDetails($info);
$i=1;
print "<div class=\"row\">\n";
foreach($hosts as $host) {
print " <div class=\"col-lg-2\">\n";
if($host["host_status"] == "DOWN") {
print " <div class=\"alert alert-danger\">\n";
} else {
print " <div class=\"alert alert-success\">\n";
};
print " <a href=\"host.php?host=$host[host_name]\" class=\"alert-link\"><strong>$host[host_name] - $host[host_status]</strong></a><br>\n";
print " <div class=\"row\">\n";
print " <div class=\"col-lg-12\">\n";
if($host["services_critical"] > 0) {
print " <div class=\"alert alert-danger\">\n";
} elseif ($host["services_warning"] > 0) {
print " <div class=\"alert alert-warning\">\n";
} elseif ($host["services_unknown"] > 0) {
print " <div class=\"alert alert-info\">\n";
} else {
print " <div class=\"alert alert-success\">\n";
}
print " <strong>Services</strong><br>\n";
print " <table class=\"table-condensed\">\n";
print " <tr>\n";
print " <td>OK: $host[services_ok]</td>\n";
print " <td>CRITICAL: $host[services_critical]</td>\n";
print " </tr>\n";
print " <tr>\n";
print " <td>WARNING: $host[services_warning]</td>\n";
print " <td>UNKOWN: $host[services_unknown]</td>\n";
print " </tr>\n";
print " </table>\n";
print " </div><!-- alert -->\n";
print " </div><!-- col -->\n";
print " </div><!-- row -->\n";
print " </div><!-- alert -->\n";
print " </div><!-- col -->\n";
if(($i%6) == 0) {
print "</div><!-- row -->\n";
print "<div class=\"clearfix visible-lg-block\"></div>\n";
print "<div class=\"row\">\n";
$i=1;
} else {
$i+=1;
};
};
print "</div><!-- row -->\n";
};
function countHostsInGroup($raw) {
/* countHostsInGroup()
*
* parameters: $raw - a keyed array with data; this should contain a list of
* hosts in a specific hostgroup.
*
* Count the records in the given array and return that value.
*/
return count(getHostgroupDetails($raw));
}
function countHostgroups($raw) {
/* countHostgroups()
*
* parameters: $raw - a keyed array with data; this should contain a list of
* hostgroups
*
* Count the records in the given array and return that value.
*/
return count(getHostgroupInfo($raw));
}
function getHostDetails($input) {
/* getHostDetails()
*
* parameters: $input - keyed array containing raw data returned from CGI; this
* should be a list of services and their status for a specific host
*
* Take raw data array and add it to new array with only necessary values
* and return that array.
*/
$ret = array();
foreach($input["status"]["service_status"] as $host) {
array_push($ret,
array(
"service_name" => $host["service_display_name"],
"status" => $host["status"],
"last_check" => $host["last_check"],
"duration" => $host["duration"],
"acknowledged" => $host["has_been_acknowledged"],
"info" => $host["status_information"]
)
);
};
return $ret;
};
function printHostDetails($info) {
/* printHostDetails()
*
* parameters: $info - keyed array with processed data needed for this operation
*
* Take processed data array containing services and their status for a specific
* host and output as nice html with appropriate formatting.
*/
$svcs = getHostDetails($info);
print "<table class=\"table table-striped\">\n";
print " <tr><th>Service</th><th>Status</th><th>Ack</th><th>Last Check</th><th>Duration</th><th>Details</th></tr>\n";
foreach($svcs as $svc) {
print " <tr";
if($svc["status"] == "CRITICAL") {
print " class=\"danger\"";
} elseif($svc["status"] == "WARNING") {
print " class=\"warning\"";
} elseif($svc["status"] == "UNKNOWN") {
print " class=\"info\"";
}
print ">\n";
print " <td>$svc[service_name]</td>\n";
print " <td>$svc[status]</td>\n";
print " <td>";
if($svc["acknowledged"]) {
print "YES";
} elseif (!($svc["acknowledged"]) && ($svc["status"] != "OK")) {
print "NO";
}
print "</td>\n";
print " <td>$svc[last_check]</td>\n";
print " <td>$svc[duration]</td>\n";
print " <td>$svc[info]</td>\n";
print " </tr>\n";
}
print "</table>\n";
}
function printServiceDetails($info) {
/* printServiceDetails()
*
* parameters: $info - keyed array with processed data needed for this operation
*
* Take processed data array containing host and service status from a specific
* hostgroup and output as nice html with appropriate formatting.
*/
$svcs = getServiceInfo($info);
print "<table class=\"table table-striped\">\n";
print " <tr><th>Host</th><th>Service</th><th>Status</th><th>Ack</th><th>Last Check</th><th>Details</th></tr>\n";
foreach($svcs as $svc) {
print " <tr";
if($svc["status"] == "CRITICAL") {
print " class=\"danger\"";
} elseif($svc["status"] == "WARNING") {
print " class=\"warning\"";
} elseif($svc["status"] == "UNKNOWN") {
print " class=\"info\"";
}
print ">\n";
print " <td>$svc[host_name]</td>\n";
print " <td>$svc[service]</td>\n";
print " <td>$svc[status]</td>\n";
print " <td>";
if($svc["acknowledged"]) {
print "YES";
} elseif (!($svc["acknowledged"]) && ($svc["status"] != "OK")) {
print "NO";
}
print "</td>\n";
print " <td>$svc[last_check]</td>\n";
print " <td>$svc[status_information]</td>\n";
print " </tr>\n";
}
print "</table>\n";
}
?>