forked from NagiosEnterprises/nagioscore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tac.c
1597 lines (1154 loc) · 57.5 KB
/
tac.c
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
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/***********************************************************************
*
* TAC.C - Nagios Tactical Monitoring Overview CGI
*
*
* This CGI program will display the contents of the Nagios
* log file.
*
* License:
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
***********************************************************************/
#include "../include/config.h"
#include "../include/common.h"
#include "../include/objects.h"
#include "../include/statusdata.h"
#include "../include/getcgi.h"
#include "../include/cgiutils.h"
#include "../include/cgiauth.h"
#define HEALTH_WARNING_PERCENTAGE 90
#define HEALTH_CRITICAL_PERCENTAGE 75
/* HOSTOUTAGE structure */
typedef struct hostoutage_struct {
host *hst;
int affected_child_hosts;
struct hostoutage_struct *next;
} hostoutage;
extern char main_config_file[MAX_FILENAME_LENGTH];
extern char url_html_path[MAX_FILENAME_LENGTH];
extern char url_images_path[MAX_FILENAME_LENGTH];
extern char url_stylesheets_path[MAX_FILENAME_LENGTH];
extern char url_media_path[MAX_FILENAME_LENGTH];
extern char url_js_path[MAX_FILENAME_LENGTH];
extern int refresh_rate;
extern int tac_cgi_hard_only;
extern char *service_critical_sound;
extern char *service_warning_sound;
extern char *service_unknown_sound;
extern char *host_down_sound;
extern char *host_unreachable_sound;
extern char *normal_sound;
extern hoststatus *hoststatus_list;
extern servicestatus *servicestatus_list;
extern int nagios_process_state;
extern int enable_page_tour;
void analyze_status_data(void);
void display_tac_overview(void);
void find_hosts_causing_outages(void);
void calculate_outage_effect_of_host(host *, int *);
int is_route_to_host_blocked(host *);
int number_of_host_services(host *);
void add_hostoutage(host *);
void free_hostoutage_list(void);
void document_header(int);
void document_footer(void);
int process_cgivars(void);
authdata current_authdata;
int embedded = FALSE;
int display_header = TRUE;
hostoutage *hostoutage_list = NULL;
int total_blocking_outages = 0;
int total_nonblocking_outages = 0;
int total_service_health = 0;
int total_host_health = 0;
int potential_service_health = 0;
int potential_host_health = 0;
double percent_service_health = 0.0;
double percent_host_health = 0.0;
int total_hosts = 0;
int total_services = 0;
int total_active_service_checks = 0;
int total_active_host_checks = 0;
int total_passive_service_checks = 0;
int total_passive_host_checks = 0;
double min_service_execution_time = -1.0;
double max_service_execution_time = -1.0;
double total_service_execution_time = 0.0;
double average_service_execution_time = -1.0;
double min_host_execution_time = -1.0;
double max_host_execution_time = -1.0;
double total_host_execution_time = 0.0;
double average_host_execution_time = -1.0;
double min_service_latency = -1.0;
double max_service_latency = -1.0;
double total_service_latency = 0.0;
double average_service_latency = -1.0;
double min_host_latency = -1.0;
double max_host_latency = -1.0;
double total_host_latency = 0.0;
double average_host_latency = -1.0;
int flapping_services = 0;
int flapping_hosts = 0;
int flap_disabled_services = 0;
int flap_disabled_hosts = 0;
int notification_disabled_services = 0;
int notification_disabled_hosts = 0;
int event_handler_disabled_services = 0;
int event_handler_disabled_hosts = 0;
int active_checks_disabled_services = 0;
int active_checks_disabled_hosts = 0;
int passive_checks_disabled_services = 0;
int passive_checks_disabled_hosts = 0;
int hosts_pending = 0;
int hosts_pending_disabled = 0;
int hosts_up_disabled = 0;
int hosts_up_unacknowledged = 0;
int hosts_up = 0;
int hosts_down_scheduled = 0;
int hosts_down_acknowledged = 0;
int hosts_down_disabled = 0;
int hosts_down_unacknowledged = 0;
int hosts_down = 0;
int hosts_unreachable_scheduled = 0;
int hosts_unreachable_acknowledged = 0;
int hosts_unreachable_disabled = 0;
int hosts_unreachable_unacknowledged = 0;
int hosts_unreachable = 0;
int services_pending = 0;
int services_pending_disabled = 0;
int services_ok_disabled = 0;
int services_ok_unacknowledged = 0;
int services_ok = 0;
int services_warning_host_problem = 0;
int services_warning_scheduled = 0;
int services_warning_acknowledged = 0;
int services_warning_disabled = 0;
int services_warning_unacknowledged = 0;
int services_warning = 0;
int services_unknown_host_problem = 0;
int services_unknown_scheduled = 0;
int services_unknown_acknowledged = 0;
int services_unknown_disabled = 0;
int services_unknown_unacknowledged = 0;
int services_unknown = 0;
int services_critical_host_problem = 0;
int services_critical_scheduled = 0;
int services_critical_acknowledged = 0;
int services_critical_disabled = 0;
int services_critical_unacknowledged = 0;
int services_critical = 0;
/*define DEBUG 1*/
int main(void) {
char *sound = NULL;
/* get the CGI variables passed in the URL */
process_cgivars();
/* reset internal variables */
reset_cgi_vars();
cgi_init(document_header, document_footer, READ_ALL_OBJECT_DATA, READ_ALL_STATUS_DATA);
/* get authentication information */
get_authentication_information(¤t_authdata);
document_header(TRUE);
if(display_header == TRUE) {
/* begin top table */
printf("<table border=0 width=100%% cellpadding=0 cellspacing=0>\n");
printf("<tr>\n");
/* left column of top table - info box */
printf("<td align=left valign=top width=33%%>\n");
display_info_table("Tactical Status Overview", TRUE, ¤t_authdata);
printf("</td>\n");
/* middle column of top table - log file navigation options */
printf("<td align=center valign=top width=33%%>\n");
printf("</td>\n");
/* right hand column of top row */
printf("<td align=right valign=top width=33%%>\n");
printf("</td>\n");
/* end of top table */
printf("</tr>\n");
printf("</table>\n");
printf("</p>\n");
}
/* analyze current host and service status data for tac overview */
analyze_status_data();
/* find all hosts that are causing network outages */
find_hosts_causing_outages();
/* embed sound tag if necessary... */
if(hosts_unreachable_unacknowledged > 0 && host_unreachable_sound != NULL)
sound = host_unreachable_sound;
else if(hosts_down_unacknowledged > 0 && host_down_sound != NULL)
sound = host_down_sound;
else if(services_critical_unacknowledged > 0 && service_critical_sound != NULL)
sound = service_critical_sound;
else if(services_warning_unacknowledged > 0 && service_warning_sound != NULL)
sound = service_warning_sound;
else if(services_unknown_unacknowledged == 0 && services_warning_unacknowledged == 0 && services_critical_unacknowledged == 0 && hosts_down_unacknowledged == 0 && hosts_unreachable_unacknowledged == 0 && normal_sound != NULL)
sound = normal_sound;
if(sound != NULL) {
printf("<object type=\"audio/x-wav\" data=\"%s%s\" height=\"1\" width=\"1\">", url_media_path, sound);
printf("<param name=\"filename\" value=\"%s%s\">", url_media_path, sound);
printf("<param name=\"autostart\" value=\"true\">");
printf("<param name=\"playcount\" value=\"1\">");
printf("</object>");
}
/**** display main tac screen ****/
display_tac_overview();
document_footer();
/* free memory allocated to the host outage list */
free_hostoutage_list();
/* free allocated memory */
free_memory();
return OK;
}
void document_header(int use_stylesheet) {
char date_time[MAX_DATETIME_LENGTH];
time_t current_time;
time_t expire_time;
printf("Cache-Control: no-store\r\n");
printf("Pragma: no-cache\r\n");
printf("Refresh: %d\r\n", refresh_rate);
time(¤t_time);
get_time_string(¤t_time, date_time, (int)sizeof(date_time), HTTP_DATE_TIME);
printf("Last-Modified: %s\r\n", date_time);
expire_time = (time_t)0L;
get_time_string(&expire_time, date_time, (int)sizeof(date_time), HTTP_DATE_TIME);
printf("Expires: %s\r\n", date_time);
printf("Content-type: text/html; charset=utf-8\r\n\r\n");
if(embedded == TRUE)
return;
printf("<HTML>\n");
printf("<HEAD>\n");
printf("<link rel=\"shortcut icon\" href=\"%sfavicon.ico\" type=\"image/ico\">\n", url_images_path);
printf("<TITLE>\n");
printf("Nagios Tactical Monitoring Overview\n");
printf("</TITLE>\n");
if(use_stylesheet == TRUE) {
printf("<LINK REL='stylesheet' TYPE='text/css' HREF='%s%s'>\n", url_stylesheets_path, COMMON_CSS);
printf("<LINK REL='stylesheet' TYPE='text/css' HREF='%s%s'>\n", url_stylesheets_path, TAC_CSS);
printf("<LINK REL='stylesheet' TYPE='text/css' HREF='%s%s'>\n", url_stylesheets_path, NAGFUNCS_CSS);
}
printf("<script type='text/javascript' src='%s%s'></script>\n", url_js_path, JQUERY_JS);
if (enable_page_tour == TRUE) {
printf("<script type='text/javascript' src='%s%s'></script>\n", url_js_path, NAGFUNCS_JS);
printf("<script type='text/javascript'>\nvar vbox, vBoxId='tac', "
"vboxText = '<a href=https://www.nagios.com/tours target=_blank>"
"Click here to watch the entire Nagios Core 4 Tour!</a>';\n");
printf("$(document).ready(function() {\n"
"var user = '%s';\nvBoxId += ';' + user;", current_authdata.username);
printf("vbox = new vidbox({pos:'lr',"
"vidurl:'https://www.youtube.com/embed/l20YRDhbOfA',text:vboxText,"
"vidid:vBoxId});");
printf("\n});\n</script>\n");
}
printf("</HEAD>\n");
printf("<BODY CLASS='tac' marginwidth=2 marginheight=2 topmargin=0 leftmargin=0 rightmargin=0>\n");
/* include user SSI header */
include_ssi_files(TAC_CGI, SSI_HEADER);
return;
}
void document_footer(void) {
if(embedded == TRUE)
return;
/* include user SSI footer */
include_ssi_files(TAC_CGI, SSI_FOOTER);
printf("</BODY>\n");
printf("</HTML>\n");
return;
}
int process_cgivars(void) {
char **variables;
int error = FALSE;
int x;
variables = getcgivars();
for(x = 0; variables[x]; x++) {
/* do some basic length checking on the variable identifier to prevent buffer overflows */
if(strlen(variables[x]) >= MAX_INPUT_BUFFER - 1) {
continue;
}
/* we found the embed option */
else if(!strcmp(variables[x], "embedded"))
embedded = TRUE;
/* we found the noheader option */
else if(!strcmp(variables[x], "noheader"))
display_header = FALSE;
/* we received an invalid argument */
else
error = TRUE;
}
/* free memory allocated to the CGI variables */
free_cgivars(variables);
return error;
}
void analyze_status_data(void) {
servicestatus *temp_servicestatus;
service *temp_service;
hoststatus *temp_hoststatus;
host *temp_host;
int problem = TRUE;
/* check all services */
for(temp_servicestatus = servicestatus_list; temp_servicestatus != NULL; temp_servicestatus = temp_servicestatus->next) {
/* see if user is authorized to view this service */
temp_service = find_service(temp_servicestatus->host_name, temp_servicestatus->description);
if(is_authorized_for_service(temp_service, ¤t_authdata) == FALSE)
continue;
/******** CHECK FEATURES *******/
/* check flapping */
if(temp_servicestatus->flap_detection_enabled == FALSE)
flap_disabled_services++;
else if(temp_servicestatus->is_flapping == TRUE)
flapping_services++;
/* check notifications */
if(temp_servicestatus->notifications_enabled == FALSE)
notification_disabled_services++;
/* check event handler */
if(temp_servicestatus->event_handler_enabled == FALSE)
event_handler_disabled_services++;
/* active check execution */
if(temp_servicestatus->checks_enabled == FALSE)
active_checks_disabled_services++;
/* passive check acceptance */
if(temp_servicestatus->accept_passive_checks == FALSE)
passive_checks_disabled_services++;
/********* CHECK STATUS ********/
problem = TRUE;
if(temp_servicestatus->status == SERVICE_OK) {
if(temp_servicestatus->checks_enabled == FALSE)
services_ok_disabled++;
else
services_ok_unacknowledged++;
services_ok++;
}
else if(temp_servicestatus->status == SERVICE_WARNING) {
temp_hoststatus = find_hoststatus(temp_servicestatus->host_name);
if(temp_hoststatus != NULL && (temp_hoststatus->status == SD_HOST_DOWN || temp_hoststatus->status == SD_HOST_UNREACHABLE)) {
services_warning_host_problem++;
problem = FALSE;
}
if(temp_servicestatus->scheduled_downtime_depth > 0) {
services_warning_scheduled++;
problem = FALSE;
}
if(temp_servicestatus->problem_has_been_acknowledged == TRUE) {
services_warning_acknowledged++;
problem = FALSE;
}
if(temp_servicestatus->checks_enabled == FALSE) {
services_warning_disabled++;
problem = FALSE;
}
if(problem == TRUE) {
if (temp_servicestatus->state_type == HARD_STATE || tac_cgi_hard_only == FALSE)
services_warning_unacknowledged++;
}
services_warning++;
}
else if(temp_servicestatus->status == SERVICE_UNKNOWN) {
temp_hoststatus = find_hoststatus(temp_servicestatus->host_name);
if(temp_hoststatus != NULL && (temp_hoststatus->status == SD_HOST_DOWN || temp_hoststatus->status == SD_HOST_UNREACHABLE)) {
services_unknown_host_problem++;
problem = FALSE;
}
if(temp_servicestatus->scheduled_downtime_depth > 0) {
services_unknown_scheduled++;
problem = FALSE;
}
if(temp_servicestatus->problem_has_been_acknowledged == TRUE) {
services_unknown_acknowledged++;
problem = FALSE;
}
if(temp_servicestatus->checks_enabled == FALSE) {
services_unknown_disabled++;
problem = FALSE;
}
if(problem == TRUE) {
if (temp_servicestatus->state_type == HARD_STATE || tac_cgi_hard_only == FALSE)
services_unknown_unacknowledged++;
}
services_unknown++;
}
else if(temp_servicestatus->status == SERVICE_CRITICAL) {
temp_hoststatus = find_hoststatus(temp_servicestatus->host_name);
if(temp_hoststatus != NULL && (temp_hoststatus->status == SD_HOST_DOWN || temp_hoststatus->status == SD_HOST_UNREACHABLE)) {
services_critical_host_problem++;
problem = FALSE;
}
if(temp_servicestatus->scheduled_downtime_depth > 0) {
services_critical_scheduled++;
problem = FALSE;
}
if(temp_servicestatus->problem_has_been_acknowledged == TRUE) {
services_critical_acknowledged++;
problem = FALSE;
}
if(temp_servicestatus->checks_enabled == FALSE) {
services_critical_disabled++;
problem = FALSE;
}
if(problem == TRUE) {
if (temp_servicestatus->state_type == HARD_STATE || tac_cgi_hard_only == FALSE)
services_critical_unacknowledged++;
}
services_critical++;
}
else if(temp_servicestatus->status == SERVICE_PENDING) {
if(temp_servicestatus->checks_enabled == FALSE)
services_pending_disabled++;
services_pending++;
}
/* get health stats */
if(temp_servicestatus->status == SERVICE_OK)
total_service_health += 2;
else if(temp_servicestatus->status == SERVICE_WARNING || temp_servicestatus->status == SERVICE_UNKNOWN)
total_service_health++;
if(temp_servicestatus->status != SERVICE_PENDING)
potential_service_health += 2;
/* calculate execution time and latency stats */
if(temp_servicestatus->check_type == CHECK_TYPE_ACTIVE) {
total_active_service_checks++;
if(min_service_latency == -1.0 || temp_servicestatus->latency < min_service_latency)
min_service_latency = temp_servicestatus->latency;
if(max_service_latency == -1.0 || temp_servicestatus->latency > max_service_latency)
max_service_latency = temp_servicestatus->latency;
if(min_service_execution_time == -1.0 || temp_servicestatus->execution_time < min_service_execution_time)
min_service_execution_time = temp_servicestatus->execution_time;
if(max_service_execution_time == -1.0 || temp_servicestatus->execution_time > max_service_execution_time)
max_service_execution_time = temp_servicestatus->execution_time;
total_service_latency += temp_servicestatus->latency;
total_service_execution_time += temp_servicestatus->execution_time;
}
else
total_passive_service_checks++;
total_services++;
}
/* check all hosts */
for(temp_hoststatus = hoststatus_list; temp_hoststatus != NULL; temp_hoststatus = temp_hoststatus->next) {
/* see if user is authorized to view this host */
temp_host = find_host(temp_hoststatus->host_name);
if(is_authorized_for_host(temp_host, ¤t_authdata) == FALSE)
continue;
/******** CHECK FEATURES *******/
/* check flapping */
if(temp_hoststatus->flap_detection_enabled == FALSE)
flap_disabled_hosts++;
else if(temp_hoststatus->is_flapping == TRUE)
flapping_hosts++;
/* check notifications */
if(temp_hoststatus->notifications_enabled == FALSE)
notification_disabled_hosts++;
/* check event handler */
if(temp_hoststatus->event_handler_enabled == FALSE)
event_handler_disabled_hosts++;
/* active check execution */
if(temp_hoststatus->checks_enabled == FALSE)
active_checks_disabled_hosts++;
/* passive check acceptance */
if(temp_hoststatus->accept_passive_checks == FALSE)
passive_checks_disabled_hosts++;
/********* CHECK STATUS ********/
problem = TRUE;
if(temp_hoststatus->status == SD_HOST_UP) {
if(temp_hoststatus->checks_enabled == FALSE)
hosts_up_disabled++;
else
hosts_up_unacknowledged++;
hosts_up++;
}
else if(temp_hoststatus->status == SD_HOST_DOWN) {
if(temp_hoststatus->scheduled_downtime_depth > 0) {
hosts_down_scheduled++;
problem = FALSE;
}
if(temp_hoststatus->problem_has_been_acknowledged == TRUE) {
hosts_down_acknowledged++;
problem = FALSE;
}
if(temp_hoststatus->checks_enabled == FALSE) {
hosts_down_disabled++;
problem = FALSE;
}
if(problem == TRUE) {
if (temp_hoststatus->state_type == HARD_STATE || tac_cgi_hard_only == FALSE)
hosts_down_unacknowledged++;
}
hosts_down++;
}
else if(temp_hoststatus->status == SD_HOST_UNREACHABLE) {
if(temp_hoststatus->scheduled_downtime_depth > 0) {
hosts_unreachable_scheduled++;
problem = FALSE;
}
if(temp_hoststatus->problem_has_been_acknowledged == TRUE) {
hosts_unreachable_acknowledged++;
problem = FALSE;
}
if(temp_hoststatus->checks_enabled == FALSE) {
hosts_unreachable_disabled++;
problem = FALSE;
}
if(problem == TRUE) {
if (temp_hoststatus->state_type == HARD_STATE || tac_cgi_hard_only == FALSE)
hosts_unreachable_unacknowledged++;
}
hosts_unreachable++;
}
else if(temp_hoststatus->status == HOST_PENDING) {
if(temp_hoststatus->checks_enabled == FALSE)
hosts_pending_disabled++;
hosts_pending++;
}
/* get health stats */
if(temp_hoststatus->status == SD_HOST_UP)
total_host_health++;
if(temp_hoststatus->status != HOST_PENDING)
potential_host_health++;
/* check type stats */
if(temp_hoststatus->check_type == CHECK_TYPE_ACTIVE) {
total_active_host_checks++;
if(min_host_latency == -1.0 || temp_hoststatus->latency < min_host_latency)
min_host_latency = temp_hoststatus->latency;
if(max_host_latency == -1.0 || temp_hoststatus->latency > max_host_latency)
max_host_latency = temp_hoststatus->latency;
if(min_host_execution_time == -1.0 || temp_hoststatus->execution_time < min_host_execution_time)
min_host_execution_time = temp_hoststatus->execution_time;
if(max_host_execution_time == -1.0 || temp_hoststatus->execution_time > max_host_execution_time)
max_host_execution_time = temp_hoststatus->execution_time;
total_host_latency += temp_hoststatus->latency;
total_host_execution_time += temp_hoststatus->execution_time;
}
else
total_passive_host_checks++;
total_hosts++;
}
/* calculate service health */
if(potential_service_health == 0)
percent_service_health = 0.0;
else
percent_service_health = ((double)total_service_health / (double)potential_service_health) * 100.0;
/* calculate host health */
if(potential_host_health == 0)
percent_host_health = 0.0;
else
percent_host_health = ((double)total_host_health / (double)potential_host_health) * 100.0;
/* calculate service latency */
if(total_service_latency == 0L)
average_service_latency = 0.0;
else
average_service_latency = ((double)total_service_latency / (double)total_active_service_checks);
/* calculate host latency */
if(total_host_latency == 0L)
average_host_latency = 0.0;
else
average_host_latency = ((double)total_host_latency / (double)total_active_host_checks);
/* calculate service execution time */
if(total_service_execution_time == 0.0)
average_service_execution_time = 0.0;
else
average_service_execution_time = ((double)total_service_execution_time / (double)total_active_service_checks);
/* calculate host execution time */
if(total_host_execution_time == 0.0)
average_host_execution_time = 0.0;
else
average_host_execution_time = ((double)total_host_execution_time / (double)total_active_host_checks);
return;
}
/* determine what hosts are causing network outages */
void find_hosts_causing_outages(void) {
hoststatus *temp_hoststatus;
hostoutage *temp_hostoutage;
host *temp_host;
/* user must be authorized for all hosts in order to see outages */
if(is_authorized_for_all_hosts(¤t_authdata) == FALSE)
return;
/* check all hosts */
for(temp_hoststatus = hoststatus_list; temp_hoststatus != NULL; temp_hoststatus = temp_hoststatus->next) {
/* check only hosts that are not up and not pending */
if(temp_hoststatus->status != SD_HOST_UP && temp_hoststatus->status != HOST_PENDING) {
/* find the host entry */
temp_host = find_host(temp_hoststatus->host_name);
if(temp_host == NULL)
continue;
/* if the route to this host is not blocked, it is a causing an outage */
if(is_route_to_host_blocked(temp_host) == FALSE)
add_hostoutage(temp_host);
}
}
/* check all hosts that are causing problems and calculate the extent of the problem */
for(temp_hostoutage = hostoutage_list; temp_hostoutage != NULL; temp_hostoutage = temp_hostoutage->next) {
/* calculate the outage effect of this particular hosts */
calculate_outage_effect_of_host(temp_hostoutage->hst, &temp_hostoutage->affected_child_hosts);
if(temp_hostoutage->affected_child_hosts > 1)
total_blocking_outages++;
else
total_nonblocking_outages++;
}
return;
}
/* adds a host outage entry */
void add_hostoutage(host *hst) {
hostoutage *new_hostoutage;
/* allocate memory for a new structure */
new_hostoutage = (hostoutage *)malloc(sizeof(hostoutage));
if(new_hostoutage == NULL)
return;
new_hostoutage->hst = hst;
new_hostoutage->affected_child_hosts = 0;
/* add the structure to the head of the list in memory */
new_hostoutage->next = hostoutage_list;
hostoutage_list = new_hostoutage;
return;
}
/* frees all memory allocated to the host outage list */
void free_hostoutage_list(void) {
hostoutage *this_hostoutage;
hostoutage *next_hostoutage;
for(this_hostoutage = hostoutage_list; this_hostoutage != NULL; this_hostoutage = next_hostoutage) {
next_hostoutage = this_hostoutage->next;
free(this_hostoutage);
}
return;
}
/* calculates network outage effect of a particular host being down or unreachable */
void calculate_outage_effect_of_host(host *hst, int *affected_hosts) {
int total_child_hosts_affected = 0;
int temp_child_hosts_affected = 0;
host *temp_host;
/* find all child hosts of this host */
for(temp_host = host_list; temp_host != NULL; temp_host = temp_host->next) {
/* skip this host if it is not a child */
if(is_host_immediate_child_of_host(hst, temp_host) == FALSE)
continue;
/* calculate the outage effect of the child */
calculate_outage_effect_of_host(temp_host, &temp_child_hosts_affected);
/* keep a running total of outage effects */
total_child_hosts_affected += temp_child_hosts_affected;
}
*affected_hosts = total_child_hosts_affected + 1;
return;
}
/* tests whether or not a host is "blocked" by upstream parents (host is already assumed to be down or unreachable) */
int is_route_to_host_blocked(host *hst) {
hostsmember *temp_hostsmember;
hoststatus *temp_hoststatus;
/* if the host has no parents, it is not being blocked by anyone */
if(hst->parent_hosts == NULL)
return FALSE;
/* check all parent hosts */
for(temp_hostsmember = hst->parent_hosts; temp_hostsmember != NULL; temp_hostsmember = temp_hostsmember->next) {
/* find the parent host's status */
temp_hoststatus = find_hoststatus(temp_hostsmember->host_name);
if(temp_hoststatus == NULL)
continue;
/* at least one parent it up (or pending), so this host is not blocked */
if(temp_hoststatus->status == SD_HOST_UP || temp_hoststatus->status == HOST_PENDING)
return FALSE;
}
return TRUE;
}
void display_tac_overview(void) {
char host_health_image[16];
char service_health_image[16];
printf("<p align=left>\n");
printf("<table border=0 align=left width=100%% cellspacing=4 cellpadding=0>\n");
printf("<tr>\n");
/* left column */
printf("<td align=left valign=top width=50%%>\n");
printf("</td>\n");
/* right column */
printf("<td align=right valign=bottom width=50%%>\n");
printf("<table border=0 cellspacing=0 cellpadding=0>\n");
printf("<tr>\n");
printf("<td valign=bottom align=right>\n");
/* display context-sensitive help */
display_context_help(CONTEXTHELP_TAC);
printf("</td>\n");
printf("<td>\n");
printf("<table border=0 cellspacing=4 cellpadding=0>\n");
printf("<tr>\n");
printf("<td class='perfTitle'> <a href='%s?type=%d' class='perfTitle'>Monitoring Performance</a></td>\n", EXTINFO_CGI, DISPLAY_PERFORMANCE);
printf("</tr>\n");
printf("<tr>\n");
printf("<td>\n");
printf("<table border=0 cellspacing=0 cellpadding=0>\n");
printf("<tr>\n");
printf("<td class='perfBox'>\n");
printf("<table border=0 cellspacing=4 cellpadding=0>\n");
printf("<tr>\n");
printf("<td align=left valign=center class='perfItem'><a href='%s?type=%d' class='perfItem'>Service Check Execution Time:</a></td>", EXTINFO_CGI, DISPLAY_PERFORMANCE);
printf("<td valign=top class='perfValue' nowrap><a href='%s?type=%d' class='perfValue'>%.2f / %.2f / %.3f sec</a></td>\n", EXTINFO_CGI, DISPLAY_PERFORMANCE, min_service_execution_time, max_service_execution_time, average_service_execution_time);
printf("</tr>\n");
printf("<tr>\n");
printf("<td align=left valign=center class='perfItem'><a href='%s?type=%d' class='perfItem'>Service Check Latency:</a></td>", EXTINFO_CGI, DISPLAY_PERFORMANCE);
printf("<td valign=top class='perfValue' nowrap><a href='%s?type=%d' class='perfValue'>%.2f / %.2f / %.3f sec</a></td>\n", EXTINFO_CGI, DISPLAY_PERFORMANCE, min_service_latency, max_service_latency, average_service_latency);
printf("</tr>\n");
printf("<tr>\n");
printf("<td align=left valign=center class='perfItem'><a href='%s?type=%d' class='perfItem'>Host Check Execution Time:</a></td>", EXTINFO_CGI, DISPLAY_PERFORMANCE);
printf("<td valign=top class='perfValue' nowrap><a href='%s?type=%d' class='perfValue'>%.2f / %.2f / %.3f sec</a></td>\n", EXTINFO_CGI, DISPLAY_PERFORMANCE, min_host_execution_time, max_host_execution_time, average_host_execution_time);
printf("</tr>\n");
printf("<tr>\n");
printf("<td align=left valign=center class='perfItem'><a href='%s?type=%d' class='perfItem'>Host Check Latency:</a></td>", EXTINFO_CGI, DISPLAY_PERFORMANCE);
printf("<td valign=top class='perfValue' nowrap><a href='%s?type=%d' class='perfValue'>%.2f / %.2f / %2.3f sec</a></td>\n", EXTINFO_CGI, DISPLAY_PERFORMANCE, min_host_latency, max_host_latency, average_host_latency);
printf("</tr>\n");
printf("<tr>\n");
printf("<td align=left valign=center class='perfItem'><a href='%s?host=all&serviceprops=%d' class='perfItem'># Active Host / Service Checks:</a></td>", STATUS_CGI, SERVICE_ACTIVE_CHECK);
printf("<td valign=top class='perfValue' nowrap><a href='%s?hostgroup=all&hostprops=%d&style=hostdetail' class='perfValue'>%d</a> / <a href='%s?host=all&serviceprops=%d' class='perfValue'>%d</a></td>\n", STATUS_CGI, HOST_ACTIVE_CHECK, total_active_host_checks, STATUS_CGI, SERVICE_ACTIVE_CHECK, total_active_service_checks);
printf("</tr>\n");
printf("<tr>\n");
printf("<td align=left valign=center class='perfItem'><a href='%s?host=all&serviceprops=%d' class='perfItem'># Passive Host / Service Checks:</a></td>", STATUS_CGI, SERVICE_PASSIVE_CHECK);
printf("<td valign=top class='perfValue' nowrap><a href='%s?hostgroup=all&hostprops=%d&style=hostdetail' class='perfValue'>%d</a> / <a href='%s?host=all&serviceprops=%d' class='perfValue'>%d</a></td>\n", STATUS_CGI, HOST_PASSIVE_CHECK, total_passive_host_checks, STATUS_CGI, SERVICE_PASSIVE_CHECK, total_passive_service_checks);
printf("</tr>\n");
printf("</table>\n");
printf("</td>\n");
printf("</tr>\n");
printf("</table>\n");
printf("</td>\n");
printf("</tr>\n");
printf("</table>\n");
printf("</td>\n");
printf("</tr>\n");
printf("</table>\n");
printf("</td>\n");
printf("</tr>\n");
printf("</table>\n");
printf("</p>\n");
printf("<br clear=all>\n");
printf("<br>\n");
printf("<table border=0 cellspacing=0 cellpadding=0 width=100%%>\n");
printf("<tr>\n");
printf("<td valign=top align=left width=50%%>\n");
/******* OUTAGES ********/
printf("<p>\n");
printf("<table class='tac' width=125 cellspacing=4 cellpadding=0 border=0>\n");
printf("<tr><td colspan=1 height=20 class='outageTitle'> Network Outages</td></tr>\n");
printf("<tr>\n");
printf("<td class='outageHeader' width=125><a href='%s' class='outageHeader'>", OUTAGES_CGI);
if(is_authorized_for_all_hosts(¤t_authdata) == FALSE)
printf("N/A");
else
printf("%d Outages", total_blocking_outages);
printf("</a></td>\n");
printf("</tr>\n");
printf("<tr>\n");
printf("<td valign=top>\n");
printf("<table border=0 width=125 cellspacing=0 cellpadding=0>\n");
printf("<tr>\n");
printf("<td valign=bottom width=25> </td>\n");
printf("<Td width=10> </td>\n");
printf("<Td valign=top width=100%%>\n");
printf("<table border=0 width=100%%>\n");
if(total_blocking_outages > 0)
printf("<tr><td width=100%% class='outageImportantProblem'><a href='%s'>%d Blocking Outages</a></td></tr>\n", OUTAGES_CGI, total_blocking_outages);
/*
if(total_nonblocking_outages>0)
printf("<tr><td width=100%% class='outageUnimportantProblem'><a href='%s'>%d Nonblocking Outages</a></td></tr>\n",OUTAGES_CGI,total_nonblocking_outages);