File: ix01.html

package info (click to toggle)
icinga 1.0.2-2%2Bsqueeze1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 33,952 kB
  • ctags: 13,294
  • sloc: xml: 154,821; ansic: 99,198; sh: 14,585; sql: 5,852; php: 5,126; perl: 2,838; makefile: 1,268
file content (1509 lines) | stat: -rw-r--r-- 86,827 bytes parent folder | download | duplicates (2)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Index</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.1">
<meta name="keywords" content="Supervision, Icinga, Nagios, Linux">
<link rel="home" href="index.html" title="Icinga Version 1.0.2 Documentation">
<link rel="up" href="index.html" title="Icinga Version 1.0.2 Documentation">
<link rel="prev" href="db_model.html" title="IDOUtils Database Model">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<CENTER><IMG src="../images/logofullsize.png" border="0" alt="Icinga" title="Icinga"></CENTER>
<div class="navheader">
<table width="100%" summary="Navigation header">
<tr><th colspan="3" align="center">Index</th></tr>
<tr>
<td width="20%" align="left">
<a accesskey="p" href="db_model.html">Prev</a> </td>
<th width="60%" align="center"> </th>
<td width="20%" align="right"> </td>
</tr>
</table>
<hr>
</div>
<div class="index" title="Index">
<div class="titlepage"><div><div><h2 class="title">
<a name="id2011870"></a>Index</h2></div></div></div>
<div class="index">
<div class="indexdiv">
<h3>A</h3>
<dl>
<dt>accept_passive_host_checks=</dt>
<dd><dl><dt>Passive Host Check Acceptance, <a class="indexterm" href="configmain.html#configmain-accept_passive_host_checks">Main Configuration File Options</a>
</dt></dl></dd>
<dt>accept_passive_service_checks=</dt>
<dd><dl><dt>Passive Service Check Acceptance, <a class="indexterm" href="configmain.html#configmain-accept_passive_service_checks">Main Configuration File Options</a>
</dt></dl></dd>
<dt>Acknowledgements, <a class="indexterm" href="about.html#acknowledgements">About Icinga</a>
</dt>
<dt>action_url_target=</dt>
<dd><dl><dt>Action URL Target, <a class="indexterm" href="configcgi.html#configcgi-action_url_target">CGI Configuration File Options</a>
</dt></dl></dd>
<dt>Active Checks</dt>
<dd><dl>
<dt>at regular intervals, <a class="indexterm" href="activechecks.html#active_checks">Active Checks</a>
</dt>
<dt>on demand, <a class="indexterm" href="activechecks.html#active_checks">Active Checks</a>
</dt>
</dl></dd>
<dt>Adaptive Monitoring, <a class="indexterm" href="adaptive.html#adaptive_monitoring">Adaptive Monitoring</a>
</dt>
<dt>additional_freshness_latency=</dt>
<dd><dl><dt>Additional Freshness Threshold Latency, <a class="indexterm" href="configmain.html#configmain-additional_freshness_latency">Main Configuration File Options</a>
</dt></dl></dd>
<dt>Addons</dt>
<dd><dl>
<dt>IDOutils, <a class="indexterm" href="addons.html#addons-idoutils">Icinga Addons</a>
</dt>
<dt>MKLiveStatus-Integration, <a class="indexterm" href="int-mklivestatus.html">MKLiveStatus Integration</a>
</dt>
<dt>NRPE, <a class="indexterm" href="addons.html#addons-nrpe">Icinga Addons</a>
</dt>
<dt>NSCA, <a class="indexterm" href="addons.html#addons-nsca">Icinga Addons</a>
</dt>
</dl></dd>
<dt>admin_email=</dt>
<dd><dl><dt>Administrator Email Address, <a class="indexterm" href="configmain.html#configmain-admin_email">Main Configuration File Options</a>
</dt></dl></dd>
<dt>admin_pager=</dt>
<dd><dl><dt>Administrator Pager, <a class="indexterm" href="configmain.html#configmain-admin_pager">Main Configuration File Options</a>
</dt></dl></dd>
<dt>API/Icinga, <a class="indexterm" href="icinga-api.html">Installation and use of the Icinga API</a>
</dt>
<dt>audio_alerts=</dt>
<dd><dl><dt>Audio Alerts, <a class="indexterm" href="configcgi.html#configcgi-audio_alerts">CGI Configuration File Options</a>
</dt></dl></dd>
<dt>authorized_for_all_hosts=</dt>
<dd><dl><dt>Global Host Information, <a class="indexterm" href="configcgi.html#configcgi-authorized_for_all_hosts">CGI Configuration File Options</a>
</dt></dl></dd>
<dt>authorized_for_all_services=</dt>
<dd><dl><dt>Global Service Information, <a class="indexterm" href="configcgi.html#configcgi-authorized_for_all_services">CGI Configuration File Options</a>
</dt></dl></dd>
<dt>authorized_for_all_service_commands=</dt>
<dd><dl><dt>Global Service Command, <a class="indexterm" href="configcgi.html#configcgi-authorized_for_all_service_commands">CGI Configuration File Options</a>
</dt></dl></dd>
<dt>authorized_for_configuration_information=</dt>
<dd><dl><dt>Configuration Information, <a class="indexterm" href="configcgi.html#configcgi-authorized_for_configuration_information">CGI Configuration File Options</a>
</dt></dl></dd>
<dt>authorized_for_host_commands=</dt>
<dd><dl><dt>Global Host Command, <a class="indexterm" href="configcgi.html#configcgi-authorized_for_all_host_commands">CGI Configuration File Options</a>
</dt></dl></dd>
<dt>authorized_for_system_commands=</dt>
<dd><dl><dt>System/Process Command, <a class="indexterm" href="configcgi.html#configcgi-authorized_for_system_commands">CGI Configuration File Options</a>
</dt></dl></dd>
<dt>authorized_for_system_information=</dt>
<dd><dl><dt>System/Process Information, <a class="indexterm" href="configcgi.html#configcgi-authorized_for_system_information">CGI Configuration File Options</a>
</dt></dl></dd>
<dt>auto_reschedule_checks=</dt>
<dd><dl><dt>Auto-Rescheduling Option, <a class="indexterm" href="configmain.html#configmain-auto_reschedule_checks">Main Configuration File Options</a>
</dt></dl></dd>
<dt>auto_rescheduling_interval=</dt>
<dd><dl><dt>Auto-Rescheduling, <a class="indexterm" href="configmain.html#configmain-auto_rescheduling_interval">Main Configuration File Options</a>
</dt></dl></dd>
<dt>auto_rescheduling_windows=</dt>
<dd><dl><dt>Auto-Rescheduling Window, <a class="indexterm" href="configmain.html#configmain-auto_rescheduling_window">Main Configuration File Options</a>
</dt></dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>B</h3>
<dl>
<dt>Beginners, Advice for, <a class="indexterm" href="beginners.html#advice_for_beginners">Advice for beginners</a>
</dt>
<dt>broker_module=</dt>
<dd><dl><dt>Event Broker Modules, <a class="indexterm" href="configmain.html#configmain-broker_module">Main Configuration File Options</a>
</dt></dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>C</h3>
<dl>
<dt>Cached Checks, <a class="indexterm" href="cachedchecks.html#cached_checks">Cached Checks</a>
</dt>
<dt>cached_host_check_horizon=</dt>
<dd><dl><dt>Cached Host Check Horizon, <a class="indexterm" href="configmain.html#configmain-cached_host_check_horizon">Main Configuration File Options</a>
</dt></dl></dd>
<dt>cached_service_check_horizon=</dt>
<dd><dl><dt>Cached Service Check, <a class="indexterm" href="configmain.html#configmain-cached_service_check_horizon">Main Configuration File Options</a>
</dt></dl></dd>
<dt>cfg_dir=</dt>
<dd><dl><dt>Object Configuration Directory, <a class="indexterm" href="configmain.html#configmain-cfg_dir">Main Configuration File Options</a>
</dt></dl></dd>
<dt>cfg_file=</dt>
<dd><dl><dt>Object Configuration File, <a class="indexterm" href="configmain.html#configmain-cfg_file">Main Configuration File Options</a>
</dt></dl></dd>
<dt>CGI Authentication</dt>
<dd><dl>
<dt>Authenticated Contact, <a class="indexterm" href="cgiauth.html#cgiauth-definitions">Authentication And
  Authorization In The CGIs</a>
</dt>
<dt>Authenticated User, <a class="indexterm" href="cgiauth.html#cgiauth-definitions">Authentication And
  Authorization In The CGIs</a>
</dt>
<dt>Authentication On Secured Web Servers, <a class="indexterm" href="cgiauth.html#cgiauth-secure_web_servers">Authentication And
  Authorization In The CGIs</a>
</dt>
<dt>Default Permissions To CGI Information, <a class="indexterm" href="cgiauth.html#cgiauth-default_rights">Authentication And
  Authorization In The CGIs</a>
</dt>
<dt>Enabling Authentication/Authorization Functionality In The
    CGIs, <a class="indexterm" href="cgiauth.html#cgiauth-enable_cgi_auth">Authentication And
  Authorization In The CGIs</a>
</dt>
<dt>Granting Additional Permissions To CGI Information, <a class="indexterm" href="cgiauth.html#cgiauth-additional_rights">Authentication And
  Authorization In The CGIs</a>
</dt>
<dt>Setting Up Authenticated Users, <a class="indexterm" href="cgiauth.html#cgiauth-config_web_users">Authentication And
  Authorization In The CGIs</a>
</dt>
</dl></dd>
<dt>CGI Authorization, <a class="indexterm" href="cgiauth.html#cgi_authentication">Authentication And
  Authorization In The CGIs</a>
</dt>
<dt>CGI Configuration File Options, <a class="indexterm" href="configcgi.html#config_cgi">CGI Configuration File Options</a>
</dt>
<dt>CGI security</dt>
<dd><dl>
<dt>Additional Techniques, <a class="indexterm" href="cgisecurity.html#cgisecurity.xml-additionaltechniques">Enhanced CGI Security and
  Authentication</a>
</dt>
<dt>Enhanced CGI Security and Authentication, <a class="indexterm" href="cgisecurity.html#cgi_security">Enhanced CGI Security and
  Authentication</a>
</dt>
<dt>Implementing Digest Authentication, <a class="indexterm" href="cgisecurity.html#cgisecurity.xml-implementation-digest">Enhanced CGI Security and
  Authentication</a>
</dt>
<dt>Implementing Forced TLS/SSL, <a class="indexterm" href="cgisecurity.html#cgisecurity.xml-implementation-ssl">Enhanced CGI Security and
  Authentication</a>
</dt>
<dt>Implementing IP subnet lockdown, <a class="indexterm" href="cgisecurity.html#cgisecurity.xml-implementation-lockdown">Enhanced CGI Security and
  Authentication</a>
</dt>
</dl></dd>
<dt>CGIs</dt>
<dd><dl>
<dt>Alert Histogram CGI, <a class="indexterm" href="cgis.html#cgis-histogram_cgi">Information On The CGIs</a>
</dt>
<dt>Alert History CGI, <a class="indexterm" href="cgis.html#cgis-history_cgi">Information On The CGIs</a>
</dt>
<dt>Alert Summary CGI, <a class="indexterm" href="cgis.html#cgis-summary_cgi">Information On The CGIs</a>
</dt>
<dt>Availability Reporting CGI, <a class="indexterm" href="cgis.html#cgis-avail_cgi">Information On The CGIs</a>
</dt>
<dt>Command CGI, <a class="indexterm" href="cgis.html#cgis-cmd_cgi">Information On The CGIs</a>
</dt>
<dt>Configuration CGI, <a class="indexterm" href="cgis.html#cgis-config_cgi">Information On The CGIs</a>
</dt>
<dt>Event log CGI, <a class="indexterm" href="cgis.html#cgis-showlog_cgi">Information On The CGIs</a>
</dt>
<dt>Extended Information CGI, <a class="indexterm" href="cgis.html#cgis-extinfo_cgi">Information On The CGIs</a>
</dt>
<dt>Network Outages CGI, <a class="indexterm" href="cgis.html#cgis-outages_cgi">Information On The CGIs</a>
</dt>
<dt>Notfication CGI, <a class="indexterm" href="cgis.html#cgis-notifications_cgi">Information On The CGIs</a>
</dt>
<dt>Status CGI, <a class="indexterm" href="cgis.html#cgis-status_cgi">Information On The CGIs</a>
</dt>
<dt>Status Map CGI, <a class="indexterm" href="cgis.html#cgis-statusmap_cgi">Information On The CGIs</a>
</dt>
<dt>Tactical Overview CGI, <a class="indexterm" href="cgis.html#cgis-tac_cgi">Information On The CGIs</a>
</dt>
<dt>Trends CGI, <a class="indexterm" href="cgis.html#cgis-trends_cgi">Information On The CGIs</a>
</dt>
<dt>WAP Interface CGI, <a class="indexterm" href="cgis.html#cgis-statuswml_cgi">Information On The CGIs</a>
</dt>
</dl></dd>
<dt>Changelog Icinga Web, <a class="indexterm" href="whatsnew.html#changelog-web">Changelog of the Icinga Web</a>
</dt>
<dt>Changelog of Icinga Core, <a class="indexterm" href="whatsnew.html#changelog-core">Changelog of the Icinga Core</a>
</dt>
<dt>check_external_commands=</dt>
<dd><dl><dt>External Command Check, <a class="indexterm" href="configmain.html#configmain-check_external_commands">Main Configuration File Options</a>
</dt></dl></dd>
<dt>check_for_orphaned_hosts=</dt>
<dd><dl><dt>Orphaned Host Check Option, <a class="indexterm" href="configmain.html#configmain-check_for_orphaned_hosts">Main Configuration File Options</a>
</dt></dl></dd>
<dt>check_for_orphaned_services=</dt>
<dd><dl><dt>Orphaned Service Check, <a class="indexterm" href="configmain.html#configmain-check_for_orphaned_services">Main Configuration File Options</a>
</dt></dl></dd>
<dt>check_host_freshness=</dt>
<dd><dl><dt>Host Freshness Checking Option, <a class="indexterm" href="configmain.html#configmain-check_host_freshness">Main Configuration File Options</a>
</dt></dl></dd>
<dt>check_result_path=</dt>
<dd><dl><dt>Check Result Path, <a class="indexterm" href="configmain.html#configmain-check_result_path">Main Configuration File Options</a>
</dt></dl></dd>
<dt>check_result_reaper_frequency=</dt>
<dd><dl><dt>Check Result Reaper, <a class="indexterm" href="configmain.html#configmain-check_result_reaper_frequency">Main Configuration File Options</a>
</dt></dl></dd>
<dt>check_service_freshness=</dt>
<dd><dl><dt>Service Freshness Checking, <a class="indexterm" href="configmain.html#configmain-check_service_freshness">Main Configuration File Options</a>
</dt></dl></dd>
<dt>child_processes_fork_twice=</dt>
<dd><dl><dt>Child Processes Fork, <a class="indexterm" href="configmain.html#configmain-child_processes_fork_twice">Main Configuration File Options</a>
</dt></dl></dd>
<dt>Cluster</dt>
<dd><dl><dt>Monitoring Service and Host Clusters, <a class="indexterm" href="clusters.html#monitoring_clusters">Monitoring Service and Host Clusters</a>
</dt></dl></dd>
<dt>Command Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-command"> Object Definitions</a>
</dt>
<dt>command_check_interval=</dt>
<dd><dl><dt>External Command Check, <a class="indexterm" href="configmain.html#configmain-command_check_interval">Main Configuration File Options</a>
</dt></dl></dd>
<dt>command_file=</dt>
<dd><dl><dt>External Command File, <a class="indexterm" href="configmain.html#configmain-command_file">Main Configuration File Options</a>
</dt></dl></dd>
<dt>Compatibility, <a class="indexterm" href="about.html#compatibility">About Icinga</a>
</dt>
<dt>Configuration</dt>
<dd><dl>
<dt>check-config, <a class="indexterm" href="verifyconfig.html#verify_config">Verifying Your Configuration</a>
</dt>
<dt>show-errors, <a class="indexterm" href="verifyconfig.html#verify_config">Verifying Your Configuration</a>
</dt>
<dt>Verifying Your Configuration, <a class="indexterm" href="verifyconfig.html#verify_config">Verifying Your Configuration</a>
</dt>
</dl></dd>
<dt>Configuration Overview, <a class="indexterm" href="config.html#config_overview">Configuration Overview</a>
</dt>
<dt>Contact Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-contact"> Object Definitions</a>
</dt>
<dt>Contactgroup Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-contactgroup"> Object Definitions</a>
</dt>
<dt>Custom CGI Headers and Footers, <a class="indexterm" href="cgiincludes.html#cgi_includes">Custom CGI Headers and
  Footers</a>
</dt>
<dt>Custom Object Variables, <a class="indexterm" href="customobjectvars.html#custom_object_vars">Custom Object Variables</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>D</h3>
<dl>
<dt>date_format=</dt>
<dd><dl><dt>Date Format, <a class="indexterm" href="configmain.html#configmain-date_format">Main Configuration File Options</a>
</dt></dl></dd>
<dt>debug_file=</dt>
<dd><dl><dt>Debug File, <a class="indexterm" href="configmain.html#configmain-debug_file">Main Configuration File Options</a>
</dt></dl></dd>
<dt>debug_level=</dt>
<dd><dl><dt>Debug Level, <a class="indexterm" href="configmain.html#configmain-debug_level">Main Configuration File Options</a>
</dt></dl></dd>
<dt>debug_verbosity=</dt>
<dd><dl><dt>Debug Verbosity, <a class="indexterm" href="configmain.html#configmain-debug_verbosity">Main Configuration File Options</a>
</dt></dl></dd>
<dt>default_statusmap_layout=</dt>
<dd><dl><dt>Default Statusmap Layout, <a class="indexterm" href="configcgi.html#configcgi-default_statusmap_layout">CGI Configuration File Options</a>
</dt></dl></dd>
<dt>default_user_name=</dt>
<dd><dl><dt>Default User Name, <a class="indexterm" href="configcgi.html#configcgi-default_user_name">CGI Configuration File Options</a>
</dt></dl></dd>
<dt>Dependencies</dt>
<dd><dl>
<dt>hard dependencies, <a class="indexterm" href="dependencies.html#dependencies-hard_dependencies">Host and Service Dependencies</a>
</dt>
<dt>Host and Service Dependencies, <a class="indexterm" href="dependencies.html#host_srv_dependencies">Host and Service Dependencies</a>
</dt>
<dt>Predictive Dependency Checks, <a class="indexterm" href="dependencychecks.html#dependency_checks">Predictive Dependency Checks</a>
</dt>
<dt>Same Host Dependencies, <a class="indexterm" href="objecttricks.html#objecttricks-same_host_dependency">Time-Saving Tricks For Object Definitions</a>
</dt>
</dl></dd>
<dt>Distributed Monitoring, <a class="indexterm" href="distributed.html#distributed_monitoring">Distributed Monitoring</a>
</dt>
<dt>Downloading The Latest Version, <a class="indexterm" href="about.html#downloading">About Icinga</a>
</dt>
<dt>Downtime</dt>
<dd><dl><dt>Scheduled Downtime, <a class="indexterm" href="downtime.html#schedule_downtime">Scheduled Downtime</a>
</dt></dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>E</h3>
<dl>
<dt>Embedded Perl</dt>
<dd><dl><dt>Developing Plugins For Use With Embedded Perl, <a class="indexterm" href="epnplugins.html#epn_plugins">Developing Plugins For Use With Embedded Perl</a>
</dt></dl></dd>
<dt>Embedded Perl Interpreter</dt>
<dd><dl><dt>Using ..., <a class="indexterm" href="embeddedperl.html#embedded_perl">Using The Embedded Perl
  Interpreter</a>
</dt></dl></dd>
<dt>enabled_embedded_perl=</dt>
<dd><dl><dt>Embedded Perl Interpreter, <a class="indexterm" href="configmain.html#configmain-enable_embedded_perl">Main Configuration File Options</a>
</dt></dl></dd>
<dt>enable_environment_macros=</dt>
<dd><dl><dt>Environment Macros Option, <a class="indexterm" href="configmain.html#configmain-enable_environment_macros">Main Configuration File Options</a>
</dt></dl></dd>
<dt>enable_event_handlers=</dt>
<dd><dl><dt>Event Handler Option, <a class="indexterm" href="configmain.html#configmain-enable_event_handlers">Main Configuration File Options</a>
</dt></dl></dd>
<dt>enable_flap_detection=</dt>
<dd><dl><dt>Flap Detection Option, <a class="indexterm" href="configmain.html#configmain-enable_flap_detection">Main Configuration File Options</a>
</dt></dl></dd>
<dt>enable_notifications=</dt>
<dd><dl><dt>Notifications Option, <a class="indexterm" href="configmain.html#configmain-enable_notifications">Main Configuration File Options</a>
</dt></dl></dd>
<dt>enable_predictive_host_dependency_checks=</dt>
<dd><dl><dt>Predictive Host Dependency, <a class="indexterm" href="configmain.html#configmain-enable_predictive_host_dependency_checks">Main Configuration File Options</a>
</dt></dl></dd>
<dt>enable_predictive_service_dependency_checks=</dt>
<dd><dl><dt>Predictive Service, <a class="indexterm" href="configmain.html#configmain-enable_predictive_service_dependency_checks">Main Configuration File Options</a>
</dt></dl></dd>
<dt>enable_splunk_integration=</dt>
<dd><dl><dt>Splunk Integration Option, <a class="indexterm" href="configcgi.html#configcgi-enable_splunk_integration">CGI Configuration File Options</a>
</dt></dl></dd>
<dt>Escalations</dt>
<dd><dl>
<dt>Escalation condition, <a class="indexterm" href="escalation_condition.html">Escalation Condition</a>
</dt>
<dt>Notification Escalations, <a class="indexterm" href="escalations.html#notification_escalations">Notification Escalations</a>
</dt>
</dl></dd>
<dt>escape_html_tags=</dt>
<dd><dl><dt>Escape HTML Tags Option, <a class="indexterm" href="configcgi.html#configcgi-escape_html_tags">CGI Configuration File Options</a>
</dt></dl></dd>
<dt>Event Handlers, <a class="indexterm" href="eventhandlers.html#event_handlers">Event Handlers</a>
</dt>
<dd><dl><dt>Example, <a class="indexterm" href="eventhandlers.html#eventhandlers-example">Event Handlers</a>
</dt></dl></dd>
<dt>event_broker_options=</dt>
<dd><dl><dt>Event Broker Options, <a class="indexterm" href="configmain.html#configmain-event_broker_options">Main Configuration File Options</a>
</dt></dl></dd>
<dt>event_handler_timeout=</dt>
<dd><dl><dt>Event Handler Timeout, <a class="indexterm" href="configmain.html#configmain-event_handler_timeout">Main Configuration File Options</a>
</dt></dl></dd>
<dt>execute_host_checks=</dt>
<dd><dl><dt>Host Check Execution Option, <a class="indexterm" href="configmain.html#configmain-execute_host_checks">Main Configuration File Options</a>
</dt></dl></dd>
<dt>execute_service_checks=</dt>
<dd><dl><dt>Service Check Execution, <a class="indexterm" href="configmain.html#configmain-execute_service_checks">Main Configuration File Options</a>
</dt></dl></dd>
<dt>External Commands, <a class="indexterm" href="extcommands.html#external_commands">External Commands</a>, <a class="indexterm" href="adaptive.html#adaptive_monitoring">Adaptive Monitoring</a>
</dt>
<dt>external_command_buffer_slots=</dt>
<dd><dl><dt>External Command Buffer, <a class="indexterm" href="configmain.html#configmain-external_command_buffer_slots">Main Configuration File Options</a>
</dt></dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>F</h3>
<dl>
<dt>Failover</dt>
<dd><dl><dt>Redundant and Failover Network Monitoring, <a class="indexterm" href="redundancy.html#redundancy_failover">Redundant and Failover Network Monitoring</a>
</dt></dl></dd>
<dt>Fast Startup Options, <a class="indexterm" href="faststartup.html#fast_startup">Fast Startup Options</a>
</dt>
<dt>Flapping</dt>
<dd><dl><dt>Detection and Handling of State Flapping, <a class="indexterm" href="flapping.html#state_flapping">Detection and Handling of State Flapping</a>
</dt></dl></dd>
<dt>free_child_process_memory=</dt>
<dd><dl><dt>Child Process Memory, <a class="indexterm" href="configmain.html#configmain-free_child_process_memory">Main Configuration File Options</a>
</dt></dl></dd>
<dt>Freshness</dt>
<dd><dl><dt>Service and Host Freshness Checks, <a class="indexterm" href="freshness.html#freshness_checks">Service and Host Freshness Checks</a>
</dt></dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>G</h3>
<dl>
<dt>global_host_event_handler=</dt>
<dd><dl><dt>Global Host Event Handler, <a class="indexterm" href="configmain.html#configmain-global_host_event_handler">Main Configuration File Options</a>
</dt></dl></dd>
<dt>global_service_event_handler=</dt>
<dd><dl><dt>Global Service Event Handler, <a class="indexterm" href="configmain.html#configmain-global_service_event_handler">Main Configuration File Options</a>
</dt></dl></dd>
<dt>Gnokii, <a class="indexterm" href="notifications.html#explanation_notifications">Notifications</a>
</dt>
<dt>Graphing Performance Info With MRTG, <a class="indexterm" href="mrtggraphs.html#mrtg_graphs">Graphing Performance Info With MRTG</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>H</h3>
<dl>
<dt>high_host_flap_threshold=</dt>
<dd><dl><dt>High Host Flap Threshold, <a class="indexterm" href="configmain.html#configmain-high_host_flap_threshold">Main Configuration File Options</a>
</dt></dl></dd>
<dt>high_service_flap_threshold=</dt>
<dd><dl><dt>High Service Flap, <a class="indexterm" href="configmain.html#configmain-high_service_flap_threshold">Main Configuration File Options</a>
</dt></dl></dd>
<dt>Host Checks, <a class="indexterm" href="hostchecks.html#host_checks">Host Checks</a>
</dt>
<dt>Host Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-host"> Object Definitions</a>
</dt>
<dt>Host Dependency Definitions, <a class="indexterm" href="objecttricks.html#objecttricks-hostdependency">Time-Saving Tricks For Object Definitions</a>
</dt>
<dt>Host Escalation Definitions, <a class="indexterm" href="objecttricks.html#objecttricks-hostescalation">Time-Saving Tricks For Object Definitions</a>
</dt>
<dt>Hostdependency Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-hostdependency"> Object Definitions</a>
</dt>
<dt>Hostescalation Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-hostescalation"> Object Definitions</a>
</dt>
<dt>Hostextinfo Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-hostextinfo"> Object Definitions</a>
</dt>
<dt>Hostgroup Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-hostgroup"> Object Definitions</a>
</dt>
<dt>Hostgroups, <a class="indexterm" href="objecttricks.html#objecttricks-hostgroup">Time-Saving Tricks For Object Definitions</a>
</dt>
<dt>host_check_timeout=</dt>
<dd><dl><dt>Host Check Timeout, <a class="indexterm" href="configmain.html#configmain-host_check_timeout">Main Configuration File Options</a>
</dt></dl></dd>
<dt>host_freshness_check_interval=</dt>
<dd><dl><dt>Host Freshness Check, <a class="indexterm" href="configmain.html#configmain-host_freshness_check_interval">Main Configuration File Options</a>
</dt></dl></dd>
<dt>host_inter_check_delay_method=</dt>
<dd><dl><dt>Host Inter-Check Delay, <a class="indexterm" href="configmain.html#configmain-host_inter_check_delay_method">Main Configuration File Options</a>
</dt></dl></dd>
<dt>host_perfdata_command=</dt>
<dd><dl><dt>Host Performance Data Processing, <a class="indexterm" href="configmain.html#configmain-host_perfdata_command">Main Configuration File Options</a>
</dt></dl></dd>
<dt>host_perfdata_file=</dt>
<dd><dl><dt>Host Performance Data File, <a class="indexterm" href="configmain.html#configmain-host_perfdata_file">Main Configuration File Options</a>
</dt></dl></dd>
<dt>host_perfdata_file_mode=</dt>
<dd><dl><dt>Host Performance Data File, <a class="indexterm" href="configmain.html#configmain-host_perfdata_file_mode">Main Configuration File Options</a>
</dt></dl></dd>
<dt>host_perfdata_file_processing_command=</dt>
<dd><dl><dt>Host Performance Data File, <a class="indexterm" href="configmain.html#configmain-host_perfdata_file_processing_command">Main Configuration File Options</a>
</dt></dl></dd>
<dt>host_perfdata_file_processing_interval=</dt>
<dd><dl><dt>Host Performance Data File, <a class="indexterm" href="configmain.html#configmain-host_perfdata_file_processing_interval">Main Configuration File Options</a>
</dt></dl></dd>
<dt>host_perfdata_file_template=</dt>
<dd><dl><dt>Host Performance Data File, <a class="indexterm" href="configmain.html#configmain-host_perfdata_file_template">Main Configuration File Options</a>
</dt></dl></dd>
<dt>How Do I Use Plugin X?, <a class="indexterm" href="plugins.html#plugins-howto">Icinga Plugins</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>I</h3>
<dl>
<dt>Icinga command line options</dt>
<dd><dl>
<dt>option -d (daemon mode), <a class="indexterm" href="startstop.html#start_stop">Starting and Stopping Icinga</a>
</dt>
<dt>option -p (precache objects), <a class="indexterm" href="faststartup.html#fast_startup">Fast Startup Options</a>
</dt>
<dt>option -S (timing and scheduling info including scheduling queue), <a class="indexterm" href="faststartup.html#fast_startup">Fast Startup Options</a>
</dt>
<dt>option -s (timing and scheduling info), <a class="indexterm" href="faststartup.html#fast_startup">Fast Startup Options</a>
</dt>
<dt>option -u (use precached objects), <a class="indexterm" href="faststartup.html#fast_startup">Fast Startup Options</a>
</dt>
<dt>option -v (verify configuration), <a class="indexterm" href="verifyconfig.html#verify_config">Verifying Your Configuration</a>
</dt>
<dt>option -x (don't check for circular paths), <a class="indexterm" href="faststartup.html#fast_startup">Fast Startup Options</a>
</dt>
</dl></dd>
<dt>Icinga-API, <a class="indexterm" href="icinga-api.html">Installation and use of the Icinga API</a>
</dt>
<dt>Icingastats</dt>
<dd><dl><dt>Using The Icingastats Utility, <a class="indexterm" href="icingastats.html#icinga_stats">Using The Icingastats Utility</a>
</dt></dl></dd>
<dt>icinga_group=</dt>
<dd><dl><dt>Icinga Group, <a class="indexterm" href="configmain.html#configmain-icinga_group">Main Configuration File Options</a>
</dt></dl></dd>
<dt>icinga_user=</dt>
<dd><dl><dt>Icinga User, <a class="indexterm" href="configmain.html#configmain-icinga_user">Main Configuration File Options</a>
</dt></dl></dd>
<dt>IDOUtils</dt>
<dd><dl>
<dt>Central Tables, <a class="indexterm" href="db_model.html#dbm_ct">Central Tables</a>
</dt>
<dt>Configuration Tables, <a class="indexterm" href="db_model.html#dbm_cf"> Configuration Tables</a>
</dt>
<dt>Current Status Tables, <a class="indexterm" href="db_model.html#dbm_cu"> Current Status Tables</a>
</dt>
<dt>Debugging Tables, <a class="indexterm" href="db_model.html#dbm_dt"> Debugging Tables</a>
</dt>
<dt>Historical Tables, <a class="indexterm" href="db_model.html#dbm_ht">Historical Tables</a>
</dt>
</dl></dd>
<dt>illegal_macro_output_chars=</dt>
<dd><dl><dt>Illegal Macro Output, <a class="indexterm" href="configmain.html#configmain-illegal_macro_output_chars">Main Configuration File Options</a>
</dt></dl></dd>
<dt>illegal_object_name_chars=</dt>
<dd><dl><dt>Illegal Object Name, <a class="indexterm" href="configmain.html#configmain-illegal_object_name_chars">Main Configuration File Options</a>
</dt></dl></dd>
<dt>Installation of the Webinterface, <a class="indexterm" href="icinga-web-scratch.html">Installation of the Icinga Web Frontend</a>
</dt>
<dt>Integration Overview, <a class="indexterm" href="integration.html#Icinga_integration">Integration Overview</a>
</dt>
<dt>interval_length=</dt>
<dd><dl><dt>Timing Interval Length, <a class="indexterm" href="configmain.html#configmain-interval_length">Main Configuration File Options</a>
</dt></dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>L</h3>
<dl>
<dt>Large Installation Tweaks, <a class="indexterm" href="largeinstalltweaks.html#large_install_tweaks">Large Installation Tweaks</a>
</dt>
<dt>Licensing, <a class="indexterm" href="about.html#licensing">About Icinga</a>
</dt>
<dt>lock_author=</dt>
<dd><dl><dt>Lock Author Names, <a class="indexterm" href="configcgi.html#configcgi-lock_author_names">CGI Configuration File Options</a>
</dt></dl></dd>
<dt>lock_file=</dt>
<dd><dl><dt>Lock File, <a class="indexterm" href="configmain.html#configmain-lock_file">Main Configuration File Options</a>
</dt></dl></dd>
<dt>log_archive_path=</dt>
<dd><dl><dt>Log Archive Path, <a class="indexterm" href="configmain.html#configmain-log_archive_path">Main Configuration File Options</a>
</dt></dl></dd>
<dt>log_event_handlers=</dt>
<dd><dl><dt>Event Handler Logging Option, <a class="indexterm" href="configmain.html#configmain-log_event_handlers">Main Configuration File Options</a>
</dt></dl></dd>
<dt>log_external_commands=</dt>
<dd><dl><dt>External Command Logging, <a class="indexterm" href="configmain.html#configmain-log_external_commands">Main Configuration File Options</a>
</dt></dl></dd>
<dt>log_file=</dt>
<dd><dl><dt>Log File, <a class="indexterm" href="configmain.html#configmain-log_file">Main Configuration File Options</a>
</dt></dl></dd>
<dt>log_host_retries=</dt>
<dd><dl><dt>Host Check Retry Logging Option, <a class="indexterm" href="configmain.html#configmain-log_host_retries">Main Configuration File Options</a>
</dt></dl></dd>
<dt>log_initial_states=</dt>
<dd><dl><dt>Initial States Logging Option, <a class="indexterm" href="configmain.html#configmain-log_initial_states">Main Configuration File Options</a>
</dt></dl></dd>
<dt>log_notifications=</dt>
<dd><dl><dt>Notification Logging Option, <a class="indexterm" href="configmain.html#configmain-log_notifications">Main Configuration File Options</a>
</dt></dl></dd>
<dt>log_passive_checks=</dt>
<dd><dl><dt>Passive Check Logging Option, <a class="indexterm" href="configmain.html#configmain-log_passive_checks">Main Configuration File Options</a>
</dt></dl></dd>
<dt>log_rotation_method=</dt>
<dd><dl><dt>Log Rotation Method, <a class="indexterm" href="configmain.html#configmain-log_rotation_method">Main Configuration File Options</a>
</dt></dl></dd>
<dt>log_service_retries=</dt>
<dd><dl><dt>Service Check Retry Logging, <a class="indexterm" href="configmain.html#configmain-log_service_retries">Main Configuration File Options</a>
</dt></dl></dd>
<dt>low_host_flap_threshold=</dt>
<dd><dl><dt>Low Host Flap Threshold, <a class="indexterm" href="configmain.html#configmain-low_host_flap_threshold">Main Configuration File Options</a>
</dt></dl></dd>
<dt>low_service_flap_threshold=</dt>
<dd><dl><dt>Low Service Flap, <a class="indexterm" href="configmain.html#configmain-low_service_flap_threshold">Main Configuration File Options</a>
</dt></dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>M</h3>
<dl>
<dt>Macros</dt>
<dd><dl>
<dt>$ADMINEMAIL$, <a class="indexterm" href="macrolist.html#macrolist-adminemail">Standard Macros in Icinga</a>
</dt>
<dt>$ADMINPAGER$, <a class="indexterm" href="macrolist.html#macrolist-adminpager">Standard Macros in Icinga</a>
</dt>
<dt>$ARGn$, <a class="indexterm" href="macrolist.html#macrolist-arg">Standard Macros in Icinga</a>
</dt>
<dt>$COMMANDFILE$, <a class="indexterm" href="macrolist.html#macrolist-commandfile">Standard Macros in Icinga</a>
</dt>
<dt>$COMMENTDATAFILE$, <a class="indexterm" href="macrolist.html#macrolist-commentdatafile">Standard Macros in Icinga</a>
</dt>
<dt>$CONTACTADDRESSn$, <a class="indexterm" href="macrolist.html#macrolist-contactaddress">Standard Macros in Icinga</a>
</dt>
<dt>$CONTACTALIAS$, <a class="indexterm" href="macrolist.html#macrolist-contactalias">Standard Macros in Icinga</a>
</dt>
<dt>$CONTACTEMAIL$, <a class="indexterm" href="macrolist.html#macrolist-contactemail">Standard Macros in Icinga</a>
</dt>
<dt>$CONTACTGROUPALIAS$, <a class="indexterm" href="macrolist.html#macrolist-contactgroupalias">Standard Macros in Icinga</a>
</dt>
<dt>$CONTACTGROUPMEMBERS$, <a class="indexterm" href="macrolist.html#macrolist-contactgroupmembers">Standard Macros in Icinga</a>
</dt>
<dt>$CONTACTGROUPNAME$, <a class="indexterm" href="macrolist.html#macrolist-contactgroupname">Standard Macros in Icinga</a>
</dt>
<dt>$CONTACTGROUPNAMES$, <a class="indexterm" href="macrolist.html#macrolist-contactgroupnames">Standard Macros in Icinga</a>
</dt>
<dt>$CONTACTNAME$, <a class="indexterm" href="macrolist.html#macrolist-contactname">Standard Macros in Icinga</a>
</dt>
<dt>$CONTACTPAGER$, <a class="indexterm" href="macrolist.html#macrolist-contactpager">Standard Macros in Icinga</a>
</dt>
<dt>$DATE$, <a class="indexterm" href="macrolist.html#macrolist-date">Standard Macros in Icinga</a>
</dt>
<dt>$DOWNTIMEDATAFILE$, <a class="indexterm" href="macrolist.html#macrolist-downtimedatafile">Standard Macros in Icinga</a>
</dt>
<dt>$EVENTSTARTTIME$, <a class="indexterm" href="macrolist.html#macrolist-eventstarttime">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTACKAUTHOR$, <a class="indexterm" href="macrolist.html#macrolist-hostackauthor">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTACKAUTHORALIAS$, <a class="indexterm" href="macrolist.html#macrolist-hostackauthoralias">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTACKAUTHORNAME$, <a class="indexterm" href="macrolist.html#macrolist-hostackauthorname">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTACKCOMMENT$, <a class="indexterm" href="macrolist.html#macrolist-hostackcomment">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTACTIONURL$, <a class="indexterm" href="macrolist.html#macrolist-hostactionurl">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTADDRESS$, <a class="indexterm" href="macrolist.html#macrolist-hostaddress">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTALIAS$, <a class="indexterm" href="macrolist.html#macrolist-hostalias">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTATTEMPT$, <a class="indexterm" href="macrolist.html#macrolist-hostattempt">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTCHECKCOMMAND$, <a class="indexterm" href="macrolist.html#macrolist-hostcheckcommand">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTDISPLAYNAME$, <a class="indexterm" href="macrolist.html#macrolist-hostdisplayname">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTDOWNTIME$, <a class="indexterm" href="macrolist.html#macrolist-hostdowntime">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTDURATION$, <a class="indexterm" href="macrolist.html#macrolist-hostduration">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTDURATIONSEC$, <a class="indexterm" href="macrolist.html#macrolist-hostdurationsec">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTEVENTID$, <a class="indexterm" href="macrolist.html#macrolist-hosteventid">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTEXECUTIONTIME$, <a class="indexterm" href="macrolist.html#macrolist-hostexecutiontime">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTGROUPACTIONURL$, <a class="indexterm" href="macrolist.html#macrolist-hostgroupactionurl">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTGROUPALIAS$, <a class="indexterm" href="macrolist.html#macrolist-hostgroupalias">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTGROUPMEMBERS$, <a class="indexterm" href="macrolist.html#macrolist-hostgroupmembers">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTGROUPNAME$, <a class="indexterm" href="macrolist.html#macrolist-hostgroupname">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTGROUPNAMES$, <a class="indexterm" href="macrolist.html#macrolist-hostgroupnames">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTGROUPNOTES$, <a class="indexterm" href="macrolist.html#macrolist-hostgroupnotes">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTGROUPNOTESURL$, <a class="indexterm" href="macrolist.html#macrolist-hostgroupnotesurl">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTLATENCY$, <a class="indexterm" href="macrolist.html#macrolist-hostlatency">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTNAME$, <a class="indexterm" href="macrolist.html#macrolist-hostname">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTNOTES$, <a class="indexterm" href="macrolist.html#macrolist-hostnotes">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTNOTESURL$, <a class="indexterm" href="macrolist.html#macrolist-hostnotesurl">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTNOTIFICATIONID$, <a class="indexterm" href="macrolist.html#macrolist-hostnotificationid">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTNOTIFICATIONNUMBER$, <a class="indexterm" href="macrolist.html#macrolist-hostnotificationnumber">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTOUTPUT$, <a class="indexterm" href="macrolist.html#macrolist-hostoutput">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTPERCENTCHANGE$, <a class="indexterm" href="macrolist.html#macrolist-hostpercentchange">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTPERFDATA$, <a class="indexterm" href="macrolist.html#macrolist-hostperfdata">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTPERFDATAFILE$, <a class="indexterm" href="macrolist.html#macrolist-hostperfdatafile">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTPROBLEMID$, <a class="indexterm" href="macrolist.html#macrolist-hostproblemid">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTSTATE$, <a class="indexterm" href="macrolist.html#macrolist-hoststate">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTSTATEID$, <a class="indexterm" href="macrolist.html#macrolist-hoststateid">Standard Macros in Icinga</a>
</dt>
<dt>$HOSTSTATETYPE$, <a class="indexterm" href="macrolist.html#macrolist-hoststatetype">Standard Macros in Icinga</a>
</dt>
<dt>$LASTHOSTCHECK$, <a class="indexterm" href="macrolist.html#macrolist-lasthostcheck">Standard Macros in Icinga</a>
</dt>
<dt>$LASTHOSTDOWN$, <a class="indexterm" href="macrolist.html#macrolist-lasthostdown">Standard Macros in Icinga</a>
</dt>
<dt>$LASTHOSTEVENTID$, <a class="indexterm" href="macrolist.html#macrolist-lasthosteventid">Standard Macros in Icinga</a>
</dt>
<dt>$LASTHOSTPROBLEMID$, <a class="indexterm" href="macrolist.html#macrolist-lasthostproblemid">Standard Macros in Icinga</a>
</dt>
<dt>$LASTHOSTSTATE$, <a class="indexterm" href="macrolist.html#macrolist-lasthoststate">Standard Macros in Icinga</a>
</dt>
<dt>$LASTHOSTSTATECHANGE$, <a class="indexterm" href="macrolist.html#macrolist-lasthoststatechange">Standard Macros in Icinga</a>
</dt>
<dt>$LASTHOSTSTATEID$, <a class="indexterm" href="macrolist.html#macrolist-lasthoststateid">Standard Macros in Icinga</a>
</dt>
<dt>$LASTHOSTUNREACHABLE$, <a class="indexterm" href="macrolist.html#macrolist-lasthostunreachable">Standard Macros in Icinga</a>
</dt>
<dt>$LASTHOSTUP$, <a class="indexterm" href="macrolist.html#macrolist-lasthostup">Standard Macros in Icinga</a>
</dt>
<dt>$LASTSERVICECHECK$, <a class="indexterm" href="macrolist.html#macrolist-lastservicecheck">Standard Macros in Icinga</a>
</dt>
<dt>$LASTSERVICECRITICAL$, <a class="indexterm" href="macrolist.html#macrolist-lastservicecritical">Standard Macros in Icinga</a>
</dt>
<dt>$LASTSERVICEEVENTID$, <a class="indexterm" href="macrolist.html#macrolist-lastserviceeventid">Standard Macros in Icinga</a>
</dt>
<dt>$LASTSERVICEOK$, <a class="indexterm" href="macrolist.html#macrolist-lastserviceok">Standard Macros in Icinga</a>
</dt>
<dt>$LASTSERVICEPROBLEMID$, <a class="indexterm" href="macrolist.html#macrolist-lastserviceproblemid">Standard Macros in Icinga</a>
</dt>
<dt>$LASTSERVICESTATE$, <a class="indexterm" href="macrolist.html#macrolist-lastservicestate">Standard Macros in Icinga</a>
</dt>
<dt>$LASTSERVICESTATECHANGE$, <a class="indexterm" href="macrolist.html#macrolist-lastservicestatechange">Standard Macros in Icinga</a>
</dt>
<dt>$LASTSERVICESTATEID$, <a class="indexterm" href="macrolist.html#macrolist-lastservicestateid">Standard Macros in Icinga</a>
</dt>
<dt>$LASTSERVICEUNKNOWN$, <a class="indexterm" href="macrolist.html#macrolist-lastserviceunknown">Standard Macros in Icinga</a>
</dt>
<dt>$LASTSERVICEWARNING$, <a class="indexterm" href="macrolist.html#macrolist-lastservicewarning">Standard Macros in Icinga</a>
</dt>
<dt>$LOGFILE$, <a class="indexterm" href="macrolist.html#macrolist-logfile">Standard Macros in Icinga</a>
</dt>
<dt>$LONGDATETIME$, <a class="indexterm" href="macrolist.html#macrolist-longdatetime">Standard Macros in Icinga</a>
</dt>
<dt>$LONGHOSTOUTPUT$, <a class="indexterm" href="macrolist.html#macrolist-longhostoutput">Standard Macros in Icinga</a>
</dt>
<dt>$LONGSERVICEOUTPUT$, <a class="indexterm" href="macrolist.html#macrolist-longserviceoutput">Standard Macros in Icinga</a>
</dt>
<dt>$MAINCONFIGFILE$, <a class="indexterm" href="macrolist.html#macrolist-mainconfigfile">Standard Macros in Icinga</a>
</dt>
<dt>$MAXHOSTATTEMPTS$, <a class="indexterm" href="macrolist.html#macrolist-maxhostattempts">Standard Macros in Icinga</a>
</dt>
<dt>$MAXSERVICEATTEMPTS$, <a class="indexterm" href="macrolist.html#macrolist-maxserviceattempts">Standard Macros in Icinga</a>
</dt>
<dt>$NOTIFICATIONAUTHOR$, <a class="indexterm" href="macrolist.html#macrolist-notificationauthor">Standard Macros in Icinga</a>
</dt>
<dt>$NOTIFICATIONAUTHORALIAS$, <a class="indexterm" href="macrolist.html#macrolist-notificationauthoralias">Standard Macros in Icinga</a>
</dt>
<dt>$NOTIFICATIONAUTHORNAME$, <a class="indexterm" href="macrolist.html#macrolist-notificationauthorname">Standard Macros in Icinga</a>
</dt>
<dt>$NOTIFICATIONCOMMENT$, <a class="indexterm" href="macrolist.html#macrolist-notificationcomment">Standard Macros in Icinga</a>
</dt>
<dt>$NOTIFICATIONISESCALATED$, <a class="indexterm" href="macrolist.html#macrolist-notificationisescalated">Standard Macros in Icinga</a>
</dt>
<dt>$NOTIFICATIONRECIPIENTS$, <a class="indexterm" href="macrolist.html#macrolist-notificationrecipients">Standard Macros in Icinga</a>
</dt>
<dt>$NOTIFICATIONTYPE$, <a class="indexterm" href="macrolist.html#macrolist-notificationtype">Standard Macros in Icinga</a>
</dt>
<dt>$OBJECTCACHEFILE$, <a class="indexterm" href="macrolist.html#macrolist-objectcachefile">Standard Macros in Icinga</a>
</dt>
<dt>$PROCESSSTARTTIME$, <a class="indexterm" href="macrolist.html#macrolist-processstarttime">Standard Macros in Icinga</a>
</dt>
<dt>$RESOURCEFILE$, <a class="indexterm" href="macrolist.html#macrolist-resourcefile">Standard Macros in Icinga</a>
</dt>
<dt>$RETENTIONDATAFILE$, <a class="indexterm" href="macrolist.html#macrolist-retentiondatafile">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEACKAUTHOR$, <a class="indexterm" href="macrolist.html#macrolist-serviceackauthor">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEACKAUTHORALIAS$, <a class="indexterm" href="macrolist.html#macrolist-serviceackauthoralias">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEACKAUTHORNAME$, <a class="indexterm" href="macrolist.html#macrolist-serviceackauthorname">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEACKCOMMENT$, <a class="indexterm" href="macrolist.html#macrolist-serviceackcomment">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEACTIONURL$, <a class="indexterm" href="macrolist.html#macrolist-serviceactionurl">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEATTEMPT$, <a class="indexterm" href="macrolist.html#macrolist-serviceattempt">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICECHECKCOMMAND$, <a class="indexterm" href="macrolist.html#macrolist-servicecheckcommand">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEDESC$, <a class="indexterm" href="macrolist.html#macrolist-servicedesc">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEDISPLAYNAME$, <a class="indexterm" href="macrolist.html#macrolist-servicedisplayname">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEDOWNTIME$, <a class="indexterm" href="macrolist.html#macrolist-servicedowntime">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEDURATION$, <a class="indexterm" href="macrolist.html#macrolist-serviceduration">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEDURATIONSEC$, <a class="indexterm" href="macrolist.html#macrolist-servicedurationsec">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEEVENTID$, <a class="indexterm" href="macrolist.html#macrolist-serviceeventid">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEEXECUTIONTIME$, <a class="indexterm" href="macrolist.html#macrolist-serviceexecutiontime">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEGROUPACTIONURL$, <a class="indexterm" href="macrolist.html#macrolist-servicegroupactionurl">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEGROUPALIAS$, <a class="indexterm" href="macrolist.html#macrolist-servicegroupalias">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEGROUPMEMBERS$, <a class="indexterm" href="macrolist.html#macrolist-servicegroupmembers">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEGROUPNAME$, <a class="indexterm" href="macrolist.html#macrolist-servicegroupname">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEGROUPNAMES$, <a class="indexterm" href="macrolist.html#macrolist-servicegroupnames">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEGROUPNOTES$, <a class="indexterm" href="macrolist.html#macrolist-servicegroupnotes">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEGROUPNOTESURL$, <a class="indexterm" href="macrolist.html#macrolist-servicegroupnotesurl">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEISVOLATILE$, <a class="indexterm" href="macrolist.html#macrolist-serviceisvolatile">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICELATENCY$, <a class="indexterm" href="macrolist.html#macrolist-servicelatency">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICENOTES$, <a class="indexterm" href="macrolist.html#macrolist-servicenotes">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICENOTESURL$, <a class="indexterm" href="macrolist.html#macrolist-servicenotesurl">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICENOTIFICATIONID$, <a class="indexterm" href="macrolist.html#macrolist-servicenotificationid">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICENOTIFICATIONNUMBER$, <a class="indexterm" href="macrolist.html#macrolist-servicenotificationnumber">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEOUTPUT$, <a class="indexterm" href="macrolist.html#macrolist-serviceoutput">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEPERCENTCHANGE$, <a class="indexterm" href="macrolist.html#macrolist-servicepercentchange">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEPERFDATA$, <a class="indexterm" href="macrolist.html#macrolist-serviceperfdata">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEPERFDATAFILE$, <a class="indexterm" href="macrolist.html#macrolist-serviceperfdatafile">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICEPROBLEMID$, <a class="indexterm" href="macrolist.html#macrolist-serviceproblemid">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICESTATE$, <a class="indexterm" href="macrolist.html#macrolist-servicestate">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICESTATEID$, <a class="indexterm" href="macrolist.html#macrolist-servicestateid">Standard Macros in Icinga</a>
</dt>
<dt>$SERVICESTATETYPE$, <a class="indexterm" href="macrolist.html#macrolist-servicestatetype">Standard Macros in Icinga</a>
</dt>
<dt>$SHORTDATETIME$, <a class="indexterm" href="macrolist.html#macrolist-shortdatetime">Standard Macros in Icinga</a>
</dt>
<dt>$STATUSDATAFILE$, <a class="indexterm" href="macrolist.html#macrolist-statusdatafile">Standard Macros in Icinga</a>
</dt>
<dt>$TEMPFILE$, <a class="indexterm" href="macrolist.html#macrolist-tempfile">Standard Macros in Icinga</a>
</dt>
<dt>$TEMPPATH$, <a class="indexterm" href="macrolist.html#macrolist-temppath">Standard Macros in Icinga</a>
</dt>
<dt>$TIME$, <a class="indexterm" href="macrolist.html#macrolist-time">Standard Macros in Icinga</a>
</dt>
<dt>$TIMET$, <a class="indexterm" href="macrolist.html#macrolist-timet">Standard Macros in Icinga</a>
</dt>
<dt>$TOTALHOSTPROBLEMS$, <a class="indexterm" href="macrolist.html#macrolist-totalhostproblems">Standard Macros in Icinga</a>
</dt>
<dt>$TOTALHOSTPROBLEMSUNHANDLED$, <a class="indexterm" href="macrolist.html#macrolist-totalhostproblemsunhandled">Standard Macros in Icinga</a>
</dt>
<dt>$TOTALHOSTSDOWN$, <a class="indexterm" href="macrolist.html#macrolist-totalhostsdown">Standard Macros in Icinga</a>
</dt>
<dt>$TOTALHOSTSDOWNUNHANDLED$, <a class="indexterm" href="macrolist.html#macrolist-totalhostsdownunhandled">Standard Macros in Icinga</a>
</dt>
<dt>$TOTALHOSTSERVICES$, <a class="indexterm" href="macrolist.html#macrolist-totalhostservices">Standard Macros in Icinga</a>
</dt>
<dt>$TOTALHOSTSERVICESCRITICAL$, <a class="indexterm" href="macrolist.html#macrolist-totalhostservicescritical">Standard Macros in Icinga</a>
</dt>
<dt>$TOTALHOSTSERVICESOK$, <a class="indexterm" href="macrolist.html#macrolist-totalhostservicesok">Standard Macros in Icinga</a>
</dt>
<dt>$TOTALHOSTSERVICESUNKNOWN$, <a class="indexterm" href="macrolist.html#macrolist-totalhostservicesunknown">Standard Macros in Icinga</a>
</dt>
<dt>$TOTALHOSTSERVICESWARNING$, <a class="indexterm" href="macrolist.html#macrolist-totalhostserviceswarning">Standard Macros in Icinga</a>
</dt>
<dt>$TOTALHOSTSUNREACHABLE$, <a class="indexterm" href="macrolist.html#macrolist-totalhostsunreachable">Standard Macros in Icinga</a>
</dt>
<dt>$TOTALHOSTSUNREACHABLEUNHANDLED$, <a class="indexterm" href="macrolist.html#macrolist-totalhostsunreachableunhandled">Standard Macros in Icinga</a>
</dt>
<dt>$TOTALHOSTSUP$, <a class="indexterm" href="macrolist.html#macrolist-totalhostsup">Standard Macros in Icinga</a>
</dt>
<dt>$TOTALSERVICEPROBLEMS$, <a class="indexterm" href="macrolist.html#macrolist-totalserviceproblems">Standard Macros in Icinga</a>
</dt>
<dt>$TOTALSERVICEPROBLEMSUNHANDLED$, <a class="indexterm" href="macrolist.html#macrolist-totalserviceproblemsunhandled">Standard Macros in Icinga</a>
</dt>
<dt>$TOTALSERVICESCRITICAL$, <a class="indexterm" href="macrolist.html#macrolist-totalservicescritical">Standard Macros in Icinga</a>
</dt>
<dt>$TOTALSERVICESCRITICALUNHANDLED$, <a class="indexterm" href="macrolist.html#macrolist-totalservicescriticalunhandled">Standard Macros in Icinga</a>
</dt>
<dt>$TOTALSERVICESOK$, <a class="indexterm" href="macrolist.html#macrolist-totalservicesok">Standard Macros in Icinga</a>
</dt>
<dt>$TOTALSERVICESUNKNOWN$, <a class="indexterm" href="macrolist.html#macrolist-totalservicesunknown">Standard Macros in Icinga</a>
</dt>
<dt>$TOTALSERVICESUNKNOWNUNHANDLED$, <a class="indexterm" href="macrolist.html#macrolist-totalservicesunknownunhandled">Standard Macros in Icinga</a>
</dt>
<dt>$TOTALSERVICESWARNING$, <a class="indexterm" href="macrolist.html#macrolist-totalserviceswarning">Standard Macros in Icinga</a>
</dt>
<dt>$TOTALSERVICESWARNINGUNHANDLED$, <a class="indexterm" href="macrolist.html#macrolist-totalserviceswarningunhandled">Standard Macros in Icinga</a>
</dt>
<dt>$USERn$, <a class="indexterm" href="macrolist.html#macrolist-user">Standard Macros in Icinga</a>
</dt>
<dt>Standard Macros in Icinga, <a class="indexterm" href="macrolist.html#macro_list">Standard Macros in Icinga</a>
</dt>
<dt>Summary Macros, <a class="indexterm" href="macrolist.html#macrolist-summary_macros">Standard Macros in Icinga</a>
</dt>
<dt>Understanding Macros and How They Work, <a class="indexterm" href="macros.html#macro_overview">Understanding Macros and How They Work</a>
</dt>
</dl></dd>
<dt>Main Configuration File Options, <a class="indexterm" href="configmain.html#config_main">Main Configuration File Options</a>
</dt>
<dt>main_cfg_file=</dt>
<dd><dl><dt>Main Configuration File Location, <a class="indexterm" href="configcgi.html#configcgi-main_cfg_file">CGI Configuration File Options</a>
</dt></dl></dd>
<dt>max_check_result_file_age=</dt>
<dd><dl><dt>Max Check Result File Age, <a class="indexterm" href="configmain.html#configmain-max_check_result_file_age">Main Configuration File Options</a>
</dt></dl></dd>
<dt>max_check_result_reaper_time=</dt>
<dd><dl><dt>Maximum Check Result Reaper, <a class="indexterm" href="configmain.html#configmain-max_check_result_reaper_time">Main Configuration File Options</a>
</dt></dl></dd>
<dt>max_concurrent_checks=</dt>
<dd><dl><dt>Maximum Concurrent Service, <a class="indexterm" href="configmain.html#configmain-max_concurrent_checks">Main Configuration File Options</a>
</dt></dl></dd>
<dt>max_debug_file_size=</dt>
<dd><dl><dt>Maximum Debug File Size, <a class="indexterm" href="configmain.html#configmain-max_debug_file_size">Main Configuration File Options</a>
</dt></dl></dd>
<dt>max_host_check_spread=</dt>
<dd><dl><dt>Maximum Host Check Spread, <a class="indexterm" href="configmain.html#configmain-max_host_check_spread">Main Configuration File Options</a>
</dt></dl></dd>
<dt>max_service_check_spread=</dt>
<dd><dl><dt>Maximum Service Check, <a class="indexterm" href="configmain.html#configmain-max_service_check_spread">Main Configuration File Options</a>
</dt></dl></dd>
<dt>MKLiveStatus-Integration, <a class="indexterm" href="int-mklivestatus.html">MKLiveStatus Integration</a>
</dt>
<dt>Monitoring</dt>
<dd><dl>
<dt>Monitoring Linux/Unix Machines, <a class="indexterm" href="monitoring-linux.html#monitoring_linux">Monitoring Linux/Unix Machines</a>
</dt>
<dt>Monitoring Netware Servers, <a class="indexterm" href="monitoring-netware.html#monitoring_netware">Monitoring Netware Servers</a>
</dt>
<dt>Monitoring Network Printers, <a class="indexterm" href="monitoring-printers.html#monitoring_printers">Monitoring Network Printers</a>
</dt>
<dt>Monitoring Publicly Available Services, <a class="indexterm" href="monitoring-publicservices.html#monitoring_publicservices">Monitoring Publicly Available Services</a>
</dt>
<dt>Monitoring Routers and Switches, <a class="indexterm" href="monitoring-routers.html#monitoring_routers">Monitoring Routers and Switches</a>
</dt>
<dt>Monitoring Windows Machines, <a class="indexterm" href="monitoring-windows.html#monitoring_windows">Monitoring Windows Machines</a>
</dt>
<dt>Redundant and Failover Network Monitoring, <a class="indexterm" href="redundancy.html#redundancy_failover">Redundant and Failover Network Monitoring</a>
</dt>
</dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>N</h3>
<dl>
<dt>Network Hosts</dt>
<dd><dl><dt>Determining Status and Reachability of Network Hosts, <a class="indexterm" href="networkreachability.html#network_reachability">Determining Status and Reachability of Network Hosts</a>
</dt></dl></dd>
<dt>notes_url_target=</dt>
<dd><dl><dt>Notes URL Target, <a class="indexterm" href="configcgi.html#configcgi-notes_url_target">CGI Configuration File Options</a>
</dt></dl></dd>
<dt>Notifications, <a class="indexterm" href="notifications.html#explanation_notifications">Notifications</a>
</dt>
<dd><dl>
<dt>Audio Alerts, <a class="indexterm" href="notifications.html#explanation_notifications">Notifications</a>
</dt>
<dt>Filter, <a class="indexterm" href="notifications.html#explanation_notifications">Notifications</a>
</dt>
</dl></dd>
<dt>notification_timeout=</dt>
<dd><dl><dt>Notification Timeout, <a class="indexterm" href="configmain.html#configmain-notification_timeout">Main Configuration File Options</a>
</dt></dl></dd>
<dt>NSClient++</dt>
<dd><dl><dt>Monitoring Windows Machines, <a class="indexterm" href="monitoring-windows.html#monitoring_windows">Monitoring Windows Machines</a>
</dt></dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>O</h3>
<dl>
<dt>Object Configuration Overview, <a class="indexterm" href="configobject.html#config_object">Object Configuration Overview</a>
</dt>
<dt>Object Definitions, <a class="indexterm" href="objectdefinitions.html#object_definitions"> Object Definitions</a>
</dt>
<dd><dl>
<dt>Command, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-command"> Object Definitions</a>
</dt>
<dt>Contact, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-contact"> Object Definitions</a>
</dt>
<dt>Contactgroup, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-contactgroup"> Object Definitions</a>
</dt>
<dt>Host, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-host"> Object Definitions</a>
</dt>
<dt>Host Dependency, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-hostdependency"> Object Definitions</a>
</dt>
<dt>Host Escalation, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-hostescalation"> Object Definitions</a>
</dt>
<dt>Host Extended Information, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-hostextinfo"> Object Definitions</a>
</dt>
<dt>Hostgroup, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-hostgroup"> Object Definitions</a>
</dt>
<dt>Retention, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-retention_notes"> Object Definitions</a>
</dt>
<dt>Service, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-service"> Object Definitions</a>
</dt>
<dt>Service Dependency, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-servicedependency"> Object Definitions</a>
</dt>
<dt>Service Escalation, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-serviceescalation"> Object Definitions</a>
</dt>
<dt>Service Extended Information, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-hostextinfo"> Object Definitions</a>
</dt>
<dt>Servicegroup, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-servicegroup"> Object Definitions</a>
</dt>
<dt>Time-Saving Tricks For Object Definitions, <a class="indexterm" href="objecttricks.html#object_tricks">Time-Saving Tricks For Object Definitions</a>
</dt>
<dt>Timeperiod, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-timeperiod"> Object Definitions</a>
</dt>
</dl></dd>
<dt>Object Inheritance, <a class="indexterm" href="objectinheritance.html#object_inheritance">Object Inheritance</a>
</dt>
<dd><dl>
<dt>Additive Inheritance of String Values, <a class="indexterm" href="objectinheritance.html#objectinheritance-add_string">Object Inheritance</a>
</dt>
<dt>Cancelling Inheritance of String Values, <a class="indexterm" href="objectinheritance.html#objectinheritance-cancel_string">Object Inheritance</a>
</dt>
<dt>Implied Inheritance, <a class="indexterm" href="objectinheritance.html#objectinheritance-implied_inheritance">Object Inheritance</a>
</dt>
<dt>Implied/Additive Inheritance in Escalations, <a class="indexterm" href="objectinheritance.html#objectinheritance-impliedescalations">Object Inheritance</a>
</dt>
<dt>Important values, <a class="indexterm" href="objectinheritance.html#objectinheritance-important_values">Object Inheritance</a>
</dt>
<dt>Multiple Inheritance Sources, <a class="indexterm" href="objectinheritance.html#objectinheritance-multiple_templates">Object Inheritance</a>
</dt>
</dl></dd>
<dt>object_cache_file=</dt>
<dd><dl><dt>Object Cache File, <a class="indexterm" href="configmain.html#configmain-object_cache_file">Main Configuration File Options</a>
</dt></dl></dd>
<dt>obsess_over_hosts=</dt>
<dd><dl><dt>Obsess Over Hosts Option, <a class="indexterm" href="configmain.html#configmain-obsess_over_hosts">Main Configuration File Options</a>
</dt></dl></dd>
<dt>obsess_over_services=</dt>
<dd><dl><dt>Obsess Over Services Option, <a class="indexterm" href="configmain.html#configmain-obsess_over_services">Main Configuration File Options</a>
</dt></dl></dd>
<dt>ochp_command=</dt>
<dd><dl><dt>Obsessive Compulsive Host Processor, <a class="indexterm" href="configmain.html#configmain-ochp_command">Main Configuration File Options</a>
</dt></dl></dd>
<dt>ochp_timeout=</dt>
<dd><dl><dt>Obsessive Compulsive Host Processor, <a class="indexterm" href="configmain.html#configmain-ochp_timeout">Main Configuration File Options</a>
</dt></dl></dd>
<dt>ocsp_command=</dt>
<dd><dl><dt>Obsessive Compulsive Service Processor, <a class="indexterm" href="configmain.html#configmain-ocsp_command">Main Configuration File Options</a>
</dt></dl></dd>
<dt>ocsp_timeout=</dt>
<dd><dl><dt>Obsessive Compulsive Service Processor, <a class="indexterm" href="configmain.html#configmain-ocsp_timeout">Main Configuration File Options</a>
</dt></dl></dd>
<dt>On-Call Rotations, <a class="indexterm" href="oncallrotation.html#oncall_rotation">On-Call Rotations</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>P</h3>
<dl>
<dt>Passive Checks, <a class="indexterm" href="passivechecks.html#passive_checks">Passive Checks</a>
</dt>
<dt>Passive Host State Translation, <a class="indexterm" href="passivestatetranslation.html#passive_state_translation">Passive Host State Translation</a>
</dt>
<dt>passive_host_checks_are_soft=</dt>
<dd><dl><dt>Passive Host Checks Are SOFT, <a class="indexterm" href="configmain.html#configmain-passive_host_checks_are_soft">Main Configuration File Options</a>
</dt></dl></dd>
<dt>perfdata_timeout=</dt>
<dd><dl><dt>Performance Data Processor Command, <a class="indexterm" href="configmain.html#configmain-perfdata_timeout">Main Configuration File Options</a>
</dt></dl></dd>
<dt>Performance Data, <a class="indexterm" href="perfdata.html#perf_data">Performance Data</a>
</dt>
<dt>physical_html_path=</dt>
<dd><dl><dt>Physical HTML Path, <a class="indexterm" href="configcgi.html#configcgi-physical_html_path">CGI Configuration File Options</a>
</dt></dl></dd>
<dt>ping_syntax=</dt>
<dd><dl><dt>Ping Syntax, <a class="indexterm" href="configcgi.html#configcgi-ping_syntax">CGI Configuration File Options</a>
</dt></dl></dd>
<dt>Plugins</dt>
<dd><dl>
<dt>Icinga Plugin API, <a class="indexterm" href="pluginapi.html#plugin_api">Icinga Plugin API</a>
</dt>
<dt>Icinga Plugins, <a class="indexterm" href="plugins.html#Icinga_plugins">Icinga Plugins</a>
</dt>
</dl></dd>
<dt>precached_object_file=</dt>
<dd><dl><dt>Precached Object File, <a class="indexterm" href="configmain.html#configmain-precached_object_file">Main Configuration File Options</a>
</dt></dl></dd>
<dt>process_performance_data=</dt>
<dd><dl><dt>Performance Data Processing, <a class="indexterm" href="configmain.html#configmain-process_performance_data">Main Configuration File Options</a>
</dt></dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>Q</h3>
<dl>
<dt>Quickstart</dt>
<dd><dl>
<dt>Icinga on FreeBSD, <a class="indexterm" href="quickstart-icinga-freebsd.html">Icinga Quickstart FreeBSD</a>
</dt>
<dt>Icinga on Linux, <a class="indexterm" href="quickstart-icinga.html">Icinga Quickstart</a>
</dt>
<dt>Icinga with IDOUtils, <a class="indexterm" href="quickstart-idoutils.html">Icinga with IDOUtils Quickstart</a>
</dt>
<dt>Overview, <a class="indexterm" href="quickstart.html#introduction_quickstart">Quickstart Installation Guides</a>
</dt>
</dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>R</h3>
<dl>
<dt>Reachability</dt>
<dd><dl><dt>Determining Status and Reachability of Network Hosts, <a class="indexterm" href="networkreachability.html#network_reachability">Determining Status and Reachability of Network Hosts</a>
</dt></dl></dd>
<dt>Redundancy</dt>
<dd><dl><dt>Redundant and Failover Network Monitoring, <a class="indexterm" href="redundancy.html#redundancy_failover">Redundant and Failover Network Monitoring</a>
</dt></dl></dd>
<dt>refresh_rate=</dt>
<dd><dl><dt>CGI Refresh Rate, <a class="indexterm" href="configcgi.html#configcgi-refresh_rate">CGI Configuration File Options</a>
</dt></dl></dd>
<dt>resource_file=</dt>
<dd><dl><dt>Resource File, <a class="indexterm" href="configmain.html#configmain-resource_file">Main Configuration File Options</a>
</dt></dl></dd>
<dt>retained_contact_host_attribute_mask=</dt>
<dd><dl><dt>Retained Contact Host Attribute Mask, <a class="indexterm" href="configmain.html#configmain-retained_contact_host_attribute_mask">Main Configuration File Options</a>
</dt></dl></dd>
<dt>retained_contact_service_attribute_mask=</dt>
<dd><dl><dt>Retained Contact Service Attribute Mask, <a class="indexterm" href="configmain.html#configmain-retained_contact_service_attribute_mask">Main Configuration File Options</a>
</dt></dl></dd>
<dt>retained_host_attribute_mask=</dt>
<dd><dl><dt>Retained Host Attribute Mask, <a class="indexterm" href="configmain.html#configmain-retained_host_attribute_mask">Main Configuration File Options</a>
</dt></dl></dd>
<dt>retained_process_attribute_mask=</dt>
<dd><dl><dt>Retained Process Attribute Mask, <a class="indexterm" href="configmain.html#configmain-retained_process_service_attribute_mask">Main Configuration File Options</a>
</dt></dl></dd>
<dt>retained_process_host_attribute_mask=</dt>
<dd><dl><dt>Retained Process Host Attribute Mask, <a class="indexterm" href="configmain.html#configmain-retained_process_host_attribute_mask">Main Configuration File Options</a>
</dt></dl></dd>
<dt>retained_scheduling_info=</dt>
<dd><dl><dt>Use Retained Scheduling Info, <a class="indexterm" href="configmain.html#configmain-use_retained_scheduling_info">Main Configuration File Options</a>
</dt></dl></dd>
<dt>retained_service_attribute_mask=</dt>
<dd><dl><dt>Retained Host and Service Attribute Mask, <a class="indexterm" href="configmain.html#configmain-retained_service_attribute_mask">Main Configuration File Options</a>
</dt></dl></dd>
<dt>retain_state_information=</dt>
<dd><dl><dt>State Retention Option, <a class="indexterm" href="configmain.html#configmain-retain_state_information">Main Configuration File Options</a>
</dt></dl></dd>
<dt>retention_update_interval=</dt>
<dd><dl><dt>Automatic State Retention Update, <a class="indexterm" href="configmain.html#configmain-retention_update_interval">Main Configuration File Options</a>
</dt></dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>S</h3>
<dl>
<dt>Same Host Dependencies, <a class="indexterm" href="objecttricks.html#objecttricks-same_host_dependency">Time-Saving Tricks For Object Definitions</a>
</dt>
<dt>Scheduling</dt>
<dd><dl>
<dt>Configuration Options, <a class="indexterm" href="checkscheduling.html#checkscheduling-configuration_options">Service and Host Check Scheduling</a>
</dt>
<dt>Host Check Directives, <a class="indexterm" href="checkscheduling.html#checkscheduling-host_inter_check_delay">Service and Host Check Scheduling</a>
</dt>
<dt>Host Checks, <a class="indexterm" href="checkscheduling.html#checkscheduling-host_checks">Service and Host Check Scheduling</a>
</dt>
<dt>Initial Scheduling, <a class="indexterm" href="checkscheduling.html#checkscheduling-initial_scheduling">Service and Host Check Scheduling</a>
</dt>
<dt>Inter-Check Delay, <a class="indexterm" href="checkscheduling.html#checkscheduling-service_inter_check_delay">Service and Host Check Scheduling</a>
</dt>
<dt>Maximum Concurrent Service Checks, <a class="indexterm" href="checkscheduling.html#checkscheduling-max_concurrent_checks">Service and Host Check Scheduling</a>
</dt>
<dt>Normal Scheduling, <a class="indexterm" href="checkscheduling.html#checkscheduling-normal_scheduling">Service and Host Check Scheduling</a>
</dt>
<dt>Scheduling Delays, <a class="indexterm" href="checkscheduling.html#checkscheduling-scheduling_delays">Service and Host Check Scheduling</a>
</dt>
<dt>Scheduling During Problems, <a class="indexterm" href="checkscheduling.html#checkscheduling-problem_scheduling">Service and Host Check Scheduling</a>
</dt>
<dt>Scheduling Example, <a class="indexterm" href="checkscheduling.html#checkscheduling-scheduling_example">Service and Host Check Scheduling</a>
</dt>
<dt>Service and Host Check Scheduling, <a class="indexterm" href="checkscheduling.html#checkscheduling-check_scheduling">Service and Host Check Scheduling</a>
</dt>
<dt>Service Definition Options That Affect Scheduling, <a class="indexterm" href="checkscheduling.html#checkscheduling-service_options">Service and Host Check Scheduling</a>
</dt>
<dt>Service Interleaving, <a class="indexterm" href="checkscheduling.html#checkscheduling-service_interleaving">Service and Host Check Scheduling</a>
</dt>
<dt>Time Restraints, <a class="indexterm" href="checkscheduling.html#checkscheduling-time_restraints">Service and Host Check Scheduling</a>
</dt>
</dl></dd>
<dt>Security Considerations, <a class="indexterm" href="security.html#security_considerations">Security Considerations</a>
</dt>
<dt>Service Checks, <a class="indexterm" href="servicechecks.html#service_checks">Service Checks</a>
</dt>
<dt>Service Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-service"> Object Definitions</a>
</dt>
<dt>Service Definitions, <a class="indexterm" href="objecttricks.html#objecttricks-service">Time-Saving Tricks For Object Definitions</a>
</dt>
<dt>Service Dependency Definitions, <a class="indexterm" href="objecttricks.html#objecttricks-servicedependency">Time-Saving Tricks For Object Definitions</a>
</dt>
<dt>Service Escalation Definitions, <a class="indexterm" href="objecttricks.html#objecttricks-serviceescalation">Time-Saving Tricks For Object Definitions</a>
</dt>
<dt>Servicedependency Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-servicedependency"> Object Definitions</a>
</dt>
<dt>Serviceescalation Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-serviceescalation"> Object Definitions</a>
</dt>
<dt>Serviceextinfo Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-serviceextinfo"> Object Definitions</a>
</dt>
<dt>Servicegroup Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-servicegroup"> Object Definitions</a>
</dt>
<dt>service_check_timeout=</dt>
<dd><dl><dt>Service Check Timeout, <a class="indexterm" href="configmain.html#configmain-service_check_timeout">Main Configuration File Options</a>
</dt></dl></dd>
<dt>service_check_timeout_state=</dt>
<dd><dl><dt>Service Check Timeout State, <a class="indexterm" href="configmain.html#configmain-service_check_timeout_state">Main Configuration File Options</a>
</dt></dl></dd>
<dt>service_freshness_check_interval=</dt>
<dd><dl><dt>Service Freshness Check, <a class="indexterm" href="configmain.html#configmain-service_freshness_check_interval">Main Configuration File Options</a>
</dt></dl></dd>
<dt>service_interleave_factor=</dt>
<dd><dl><dt>Service Interleave Factor, <a class="indexterm" href="configmain.html#configmain-service_interleave_factor">Main Configuration File Options</a>
</dt></dl></dd>
<dt>service_inter_check_delay_method=</dt>
<dd><dl><dt>Service Inter-Check Delay, <a class="indexterm" href="configmain.html#configmain-service_inter_check_delay_method">Main Configuration File Options</a>
</dt></dl></dd>
<dt>service_perfdata_command=</dt>
<dd><dl><dt>Service Performance Data Processing, <a class="indexterm" href="configmain.html#configmain-service_perfdata_command">Main Configuration File Options</a>
</dt></dl></dd>
<dt>service_perfdata_file=</dt>
<dd><dl><dt>Service Performance Data File, <a class="indexterm" href="configmain.html#configmain-service_perfdata_file">Main Configuration File Options</a>
</dt></dl></dd>
<dt>service_perfdata_file_mode=</dt>
<dd><dl><dt>Service Performance Data File, <a class="indexterm" href="configmain.html#configmain-service_perfdata_file_mode">Main Configuration File Options</a>
</dt></dl></dd>
<dt>service_perfdata_file_processing_command=</dt>
<dd><dl><dt>Service Performance Data, <a class="indexterm" href="configmain.html#configmain-service_perfdata_file_processing_command">Main Configuration File Options</a>
</dt></dl></dd>
<dt>service_perfdata_file_processing_interval=</dt>
<dd><dl><dt>Service Performance Data, <a class="indexterm" href="configmain.html#configmain-service_perfdata_file_processing_interval">Main Configuration File Options</a>
</dt></dl></dd>
<dt>service_perfdata_file_template=</dt>
<dd><dl><dt>Service Performance Data File, <a class="indexterm" href="configmain.html#configmain-service_perfdata_file_template">Main Configuration File Options</a>
</dt></dl></dd>
<dt>sleep_time=</dt>
<dd><dl><dt>Inter-Check Sleep Time, <a class="indexterm" href="configmain.html#configmain-sleep_time">Main Configuration File Options</a>
</dt></dl></dd>
<dt>SNMP Trap Integration, <a class="indexterm" href="int-snmptrap.html#int_snmptrap">SNMP Trap Integration</a>
</dt>
<dt>soft_state_dependencies=</dt>
<dd><dl><dt>Soft State Dependencies, <a class="indexterm" href="configmain.html#configmain-soft_state_dependencies">Main Configuration File Options</a>
</dt></dl></dd>
<dt>splunk_url=</dt>
<dd><dl><dt>Splunk URL, <a class="indexterm" href="configcgi.html#configcgi-splunk_url">CGI Configuration File Options</a>
</dt></dl></dd>
<dt>Starting and Stopping Icinga, <a class="indexterm" href="startstop.html#start_stop">Starting and Stopping Icinga</a>
</dt>
<dt>State Stalking, <a class="indexterm" href="stalking.html#state_stalking">State Stalking</a>
</dt>
<dt>State Types, <a class="indexterm" href="statetypes.html#state_types">State Types</a>
</dt>
<dt>state_retention_file=</dt>
<dd><dl><dt>State Retention File, <a class="indexterm" href="configmain.html#configmain-state_retention_file">Main Configuration File Options</a>
</dt></dl></dd>
<dt>statusmap_background_image=</dt>
<dd><dl><dt>Statusmap CGI Background, <a class="indexterm" href="configcgi.html#configcgi-statusmap_background_image">CGI Configuration File Options</a>
</dt></dl></dd>
<dt>status_file=</dt>
<dd><dl><dt>Status File, <a class="indexterm" href="configmain.html#configmain-status_file">Main Configuration File Options</a>
</dt></dl></dd>
<dt>status_log=</dt>
<dd><dl><dt>Status Log, <a class="indexterm" href="../../../../../"></a>
</dt></dl></dd>
<dt>status_update_interval=</dt>
<dd><dl><dt>Status File Update Interval, <a class="indexterm" href="configmain.html#configmain-status_update_interval">Main Configuration File Options</a>
</dt></dl></dd>
<dt>syslog_local_facility=</dt>
<dd><dl><dt>Syslog Local Facility Logging Value, <a class="indexterm" href="configmain.html#configmain-syslog_local_facility">Main Configuration File Options</a>
</dt></dl></dd>
<dt>System requirements, <a class="indexterm" href="about.html#system_requirements">About Icinga</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>T</h3>
<dl>
<dt>Tables</dt>
<dd><dl>
<dt>acknowledgements, <a class="indexterm" href="db_model.html#dbm_acknowledgements">Historical Tables</a>
</dt>
<dt>commands, <a class="indexterm" href="db_model.html#dbm_commands"> Configuration Tables</a>
</dt>
<dt>commenthistory, <a class="indexterm" href="db_model.html#dbm_commenthistory">Historical Tables</a>
</dt>
<dt>comments, <a class="indexterm" href="db_model.html#dbm_comments"> Current Status Tables</a>
</dt>
<dt>configfiles, <a class="indexterm" href="db_model.html#dbm_configfiles"> Configuration Tables</a>
</dt>
<dt>configfilevariables, <a class="indexterm" href="db_model.html#dbm_configfilevariables"> Configuration Tables</a>
</dt>
<dt>conninfo, <a class="indexterm" href="db_model.html#dbm_conninfo"> Debugging Tables</a>
</dt>
<dt>contactgroups, <a class="indexterm" href="db_model.html#dbm_contactgroups"> Configuration Tables</a>
</dt>
<dt>contactgroup_members, <a class="indexterm" href="db_model.html#dbm_contactgroup_members"> Configuration Tables</a>
</dt>
<dt>contactnotifcations, <a class="indexterm" href="db_model.html#dbm_contactnotifications">Historical Tables</a>
</dt>
<dt>contactnotificationmethods, <a class="indexterm" href="db_model.html#dbm_contactnotificationmethods"> Configuration Tables</a>
</dt>
<dt>contactnotificationsmethods, <a class="indexterm" href="db_model.html#dbm_contactnotificationsmethods">Historical Tables</a>
</dt>
<dt>contacts, <a class="indexterm" href="db_model.html#dbm_contacts"> Configuration Tables</a>
</dt>
<dt>contact_addresses, <a class="indexterm" href="db_model.html#dbm_contact_addresses"> Configuration Tables</a>
</dt>
<dt>contact_notificationcommands, <a class="indexterm" href="db_model.html#dbm_contact_notificationcommands"> Configuration Tables</a>
</dt>
<dt>customvariables, <a class="indexterm" href="db_model.html#dbm_customvariables"> Configuration Tables</a>
</dt>
<dt>customvariablestatus, <a class="indexterm" href="db_model.html#dbm_customvariablestatus"> Current Status Tables</a>
</dt>
<dt>downtimehistory, <a class="indexterm" href="db_model.html#dbm_downtimehistory">Historical Tables</a>
</dt>
<dt>eventhandlers, <a class="indexterm" href="db_model.html#dbm_eventhandlers">Historical Tables</a>
</dt>
<dt>externalcommands, <a class="indexterm" href="db_model.html#dbm_externalcommands">Historical Tables</a>
</dt>
<dt>flappinghistory, <a class="indexterm" href="db_model.html#dbm_flappinghistory">Historical Tables</a>
</dt>
<dt>hostchecks, <a class="indexterm" href="db_model.html#dbm_hostchecks">Historical Tables</a>
</dt>
<dt>hostdependencies, <a class="indexterm" href="db_model.html#dbm_hostdependencies"> Configuration Tables</a>
</dt>
<dt>hostescalations, <a class="indexterm" href="db_model.html#dbm_hostescalations"> Configuration Tables</a>
</dt>
<dt>hostescalation_contactgroups, <a class="indexterm" href="db_model.html#dbm_hostescalation_contactgroups"> Configuration Tables</a>
</dt>
<dt>hostgroups, <a class="indexterm" href="db_model.html#dbm_hostgroups"> Configuration Tables</a>
</dt>
<dt>hostgroup_members, <a class="indexterm" href="db_model.html#dbm_hostgroup_members"> Configuration Tables</a>
</dt>
<dt>hosts, <a class="indexterm" href="db_model.html#dbm_hosts"> Configuration Tables</a>
</dt>
<dt>hoststatus, <a class="indexterm" href="db_model.html#dbm_hoststatus"> Current Status Tables</a>
</dt>
<dt>host_contactgroups, <a class="indexterm" href="db_model.html#dbm_host_contactgroups"> Configuration Tables</a>
</dt>
<dt>host_parenthosts, <a class="indexterm" href="db_model.html#dbm_host_parenthosts"> Configuration Tables</a>
</dt>
<dt>instances, <a class="indexterm" href="db_model.html#dbm_instances">Central Tables</a>
</dt>
<dt>logentries, <a class="indexterm" href="db_model.html#dbm_logentries">Historical Tables</a>
</dt>
<dt>notifications, <a class="indexterm" href="db_model.html#dbm_notifications">Historical Tables</a>
</dt>
<dt>objects, <a class="indexterm" href="db_model.html#dbm_objects">Central Tables</a>
</dt>
<dt>processevents, <a class="indexterm" href="db_model.html#dbm_processevents">Historical Tables</a>
</dt>
<dt>programstatus, <a class="indexterm" href="db_model.html#dbm_programstatus"> Current Status Tables</a>
</dt>
<dt>runtimevariables, <a class="indexterm" href="db_model.html#dbm_runtimevariables"> Current Status Tables</a>
</dt>
<dt>scheduleddowntime, <a class="indexterm" href="db_model.html#dbm_scheduleddowntime"> Current Status Tables</a>
</dt>
<dt>servicechecks, <a class="indexterm" href="db_model.html#dbm_servicechecks">Historical Tables</a>
</dt>
<dt>servicedependencies, <a class="indexterm" href="db_model.html#dbm_servicedependencies"> Configuration Tables</a>
</dt>
<dt>serviceescalations, <a class="indexterm" href="db_model.html#dbm_serviceescalations"> Configuration Tables</a>
</dt>
<dt>serviceescalation_contactgroups, <a class="indexterm" href="db_model.html#dbm_serviceescalation_contactgroups"> Configuration Tables</a>
</dt>
<dt>servicegroups, <a class="indexterm" href="db_model.html#dbm_servicegroups"> Configuration Tables</a>
</dt>
<dt>servicegroup_members, <a class="indexterm" href="db_model.html#dbm_servicegroup_members"> Configuration Tables</a>
</dt>
<dt>services, <a class="indexterm" href="db_model.html#dbm_services"> Configuration Tables</a>
</dt>
<dt>servicestatus, <a class="indexterm" href="db_model.html#dbm_servicestatus"> Current Status Tables</a>
</dt>
<dt>service_contactgroups, <a class="indexterm" href="db_model.html#dbm_service_contactgroups"> Configuration Tables</a>
</dt>
<dt>statehistory, <a class="indexterm" href="db_model.html#dbm_statehistory">Historical Tables</a>
</dt>
<dt>systemcommands, <a class="indexterm" href="db_model.html#dbm_systemcommands">Historical Tables</a>
</dt>
<dt>timedeventqueue, <a class="indexterm" href="db_model.html#dbm_timedeventqueue"> Current Status Tables</a>
</dt>
<dt>timedevents, <a class="indexterm" href="db_model.html#dbm_timedevents">Historical Tables</a>
</dt>
<dt>timeperiods, <a class="indexterm" href="db_model.html#dbm_timeperiods"> Configuration Tables</a>
</dt>
<dt>timeperiod_timeranges, <a class="indexterm" href="db_model.html#dbm_timeperiod_timeranges"> Configuration Tables</a>
</dt>
</dl></dd>
<dt>TCP Wrapper Integration, <a class="indexterm" href="int-tcpwrappers.html#int_tcpwrappers">TCP Wrapper Integration</a>
</dt>
<dt>temp_file=</dt>
<dd><dl><dt>Temp File, <a class="indexterm" href="configmain.html#configmain-temp_file">Main Configuration File Options</a>
</dt></dl></dd>
<dt>temp_path=</dt>
<dd><dl><dt>Temp Path, <a class="indexterm" href="configmain.html#configmain-temp_path">Main Configuration File Options</a>
</dt></dl></dd>
<dt>Time Periods, <a class="indexterm" href="timeperiods.html#time_periods">Time Periods</a>
</dt>
<dt>Timeperiod Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-timeperiod"> Object Definitions</a>
</dt>
<dt>translage_passive_host_checks=</dt>
<dd><dl><dt>Translate Passive Host Checks, <a class="indexterm" href="configmain.html#configmain-translate_passive_host_checks">Main Configuration File Options</a>
</dt></dl></dd>
<dt>Tuning Icinga For Maximum Performance, <a class="indexterm" href="tuning.html#performance_tuning">Tuning Icinga For Maximum Performance</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>U</h3>
<dl>
<dt>Upgrading, <a class="indexterm" href="upgrading.html#upgrading_nagios">Upgrading (to) Icinga</a>
</dt>
<dd><dl>
<dt>from a previous Icinga version, <a class="indexterm" href="upgrading.html#upgrading-icinga">Upgrading (to) Icinga</a>
</dt>
<dt>from Nagios version 2.x, <a class="indexterm" href="upgrading.html#upgrading-nagios2x">Upgrading (to) Icinga</a>
</dt>
<dt>from Nagios version 3.x, <a class="indexterm" href="upgrading.html#upgrading-nagios3x">Upgrading (to) Icinga</a>
</dt>
</dl></dd>
<dt>Upgrading IDOUtils, <a class="indexterm" href="upgrading_idoutils.html">Upgrading IDOUtils Database</a>
</dt>
<dt>url_html_path=</dt>
<dd><dl><dt>URL HTML Path, <a class="indexterm" href="configcgi.html#configcgi-url_html_path">CGI Configuration File Options</a>
</dt></dl></dd>
<dt>use_aggressive_host_checking=</dt>
<dd><dl><dt>Aggressive Host Checking, <a class="indexterm" href="configmain.html#configmain-use_aggressive_host_checking">Main Configuration File Options</a>
</dt></dl></dd>
<dt>use_agressive_host_checking=</dt>
<dd><dl><dt>Aggressive Host Checking, <a class="indexterm" href="configmain.html#configmain-use_agressive_host_checking">Main Configuration File Options</a>
</dt></dl></dd>
<dt>use_authentication=</dt>
<dd><dl><dt>Authentication Usage, <a class="indexterm" href="configcgi.html#configcgi-use_authentication">CGI Configuration File Options</a>
</dt></dl></dd>
<dt>use_embedded_perl_implicitly=</dt>
<dd><dl><dt>Embedded Perl Implicit Use, <a class="indexterm" href="configmain.html#configmain-use_embedded_perl_implicitly">Main Configuration File Options</a>
</dt></dl></dd>
<dt>use_large_installation_tweaks=</dt>
<dd><dl><dt>Large Installation Tweaks, <a class="indexterm" href="configmain.html#configmain-use_large_installation_tweaks">Main Configuration File Options</a>
</dt></dl></dd>
<dt>use_regexp_matching=</dt>
<dd><dl><dt>Regular Expression Matching, <a class="indexterm" href="configmain.html#configmain-use_regexp_matching">Main Configuration File Options</a>
</dt></dl></dd>
<dt>use_retained_program_state=</dt>
<dd><dl><dt>Use Retained Program State, <a class="indexterm" href="configmain.html#configmain-use_retained_program_state">Main Configuration File Options</a>
</dt></dl></dd>
<dt>use_syslog=</dt>
<dd><dl><dt>Syslog Logging Option, <a class="indexterm" href="configmain.html#configmain-use_syslog">Main Configuration File Options</a>
</dt></dl></dd>
<dt>use_syslog_local_facility=</dt>
<dd><dl><dt>Syslog Local Facility Logging Option, <a class="indexterm" href="configmain.html#configmain-use_syslog_local_facility">Main Configuration File Options</a>
</dt></dl></dd>
<dt>use_timezone=</dt>
<dd><dl><dt>Timezone Option, <a class="indexterm" href="configmain.html#configmain-use_timezone">Main Configuration File Options</a>
</dt></dl></dd>
<dt>use_true_regexp_matching=</dt>
<dd><dl><dt>True Regular Expression Matching, <a class="indexterm" href="configmain.html#configmain-use_true_regexp_matching">Main Configuration File Options</a>
</dt></dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>V</h3>
<dl>
<dt>Verifying Your Configuration, <a class="indexterm" href="verifyconfig.html#verify_config">Verifying Your Configuration</a>
</dt>
<dt>Volatile Services, <a class="indexterm" href="volatileservices.html#volatile_services">Volatile Services</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>W</h3>
<dl>
<dt>Webinterface, <a class="indexterm" href="icinga-web-scratch.html">Installation of the Icinga Web Frontend</a>
</dt>
<dt>What is Icinga?, <a class="indexterm" href="about.html#whatsicinga">About Icinga</a>
</dt>
<dt>What's new in Icinga, <a class="indexterm" href="whatsnew.html">What's New in Icinga Core 1.0.2 and Icinga Web 1.0.1</a>
</dt>
</dl>
</div>
</div>
</div>
<div class="navfooter">
<hr>
<table width="100%" summary="Navigation footer">
<tr>
<td width="40%" align="left">
<a accesskey="p" href="db_model.html">Prev</a> </td>
<td width="20%" align="center"> </td>
<td width="40%" align="right"> </td>
</tr>
<tr>
<td width="40%" align="left" valign="top">IDOUtils Database Model </td>
<td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td>
<td width="40%" align="right" valign="top"> </td>
</tr>
</table>
</div>
<P class="copyright">© 2009-2010 Icinga Development Team, http://www.icinga.org</P>
</body>
</html>