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 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Stichwortverzeichnis</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.1">
<meta name="keywords" content="Supervision, Icinga, Icinga, Linux">
<link rel="home" href="index.html" title="Icinga Version 1.0.2 Dokumentation">
<link rel="up" href="index.html" title="Icinga Version 1.0.2 Dokumentation">
<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">Stichwortverzeichnis</th></tr>
<tr>
<td width="20%" align="left">
<a accesskey="p" href="db_model.html">Zurück</a> </td>
<th width="60%" align="center"> </th>
<td width="20%" align="right"> </td>
</tr>
</table>
<hr>
</div>
<div class="index" title="Stichwortverzeichnis">
<div class="titlepage"><div><div><h2 class="title">
<a name="id5615742"></a>Stichwortverzeichnis</h2></div></div></div>
<div class="index">
<div class="indexdiv">
<h3>A</h3>
<dl>
<dt>Abhängigkeiten</dt>
<dd><dl>
<dt>"harte" Abhängigkeiten, <a class="indexterm" href="dependencies.html#dependencies-hard_dependencies">Host- und Service-Abhängigkeiten</a>
</dt>
<dt>gleicher-Host-Abhängigkeiten, <a class="indexterm" href="objecttricks.html#objecttricks-same_host_dependency">Zeitsparende Tricks für Objektdefinitionen</a>
</dt>
<dt>Host- und Service-Abhängigkeiten, <a class="indexterm" href="dependencies.html">Host- und Service-Abhängigkeiten</a>
</dt>
<dt>vorausschauende Abhängigkeitsprüfungen, <a class="indexterm" href="dependencychecks.html">Vorausschauende Abhängigkeitsprüfungen</a>
</dt>
</dl></dd>
<dt>accept_passive_host_checks=</dt>
<dd><dl><dt>akzeptieren von passiven Hostprüfungen, <a class="indexterm" href="configmain.html#configmain-accept_passive_host_checks">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>accept_passive_service_checks=</dt>
<dd><dl><dt>akzeptieren von passiven Service-Prüfungen, <a class="indexterm" href="configmain.html#configmain-accept_passive_service_checks">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>action_url_target=</dt>
<dd><dl><dt>Action-URL-Ziel, <a class="indexterm" href="configcgi.html#configcgi-action_url_target">Optionen CGI-Konfigurationsdatei</a>
</dt></dl></dd>
<dt>Adaptive Überwachung, <a class="indexterm" href="adaptive.html">Adaptive Überwachung</a>
</dt>
<dt>additional_freshness_latency=</dt>
<dd><dl><dt>zusätzliche Frische-Verschiebung, <a class="indexterm" href="configmain.html#configmain-additional_freshness_latency">Optionen der Hauptkonfigurationsdatei</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-e-Mail-Adresse, <a class="indexterm" href="configmain.html#configmain-admin_email">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>admin_pager=</dt>
<dd><dl><dt>Administrator-Pager, <a class="indexterm" href="configmain.html#configmain-admin_pager">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>Aktive Prüfungen</dt>
<dd><dl>
<dt>in regelmäßigen Abständen, <a class="indexterm" href="activechecks.html">Aktive Prüfungen (Active Checks)</a>
</dt>
<dt>nach Bedarf, <a class="indexterm" href="activechecks.html">Aktive Prüfungen (Active Checks)</a>
</dt>
</dl></dd>
<dt>Aktualisieren (upgrading), <a class="indexterm" href="upgrading.html">Icinga aktualisieren</a>
</dt>
<dd><dl>
<dt>einer früheren Icinga-Version, <a class="indexterm" href="upgrading.html#upgrading-icinga">Icinga aktualisieren</a>
</dt>
<dt>von Nagios Version 2.x, <a class="indexterm" href="upgrading.html#upgrading-nagios2x">Icinga aktualisieren</a>
</dt>
<dt>von Nagios Version 3.x, <a class="indexterm" href="upgrading.html#upgrading-nagios3x">Icinga aktualisieren</a>
</dt>
</dl></dd>
<dt>Anfänger, Hinweise für, <a class="indexterm" href="beginners.html">Hinweise für Neulinge</a>
</dt>
<dt>Angepasste CGI-Kopf- und Fußzeilen, <a class="indexterm" href="cgiincludes.html">Angepasste CGI-Kopf- und Fußzeilen</a>
</dt>
<dt>API/Icinga, <a class="indexterm" href="icinga-api.html">Installation und Benutzung der Icinga API</a>
</dt>
<dt>audio_alerts=</dt>
<dd><dl><dt>Audio-Alarme, <a class="indexterm" href="configcgi.html#configcgi-audio_alerts">Optionen CGI-Konfigurationsdatei</a>
</dt></dl></dd>
<dt>Ausfallzeit</dt>
<dd><dl><dt>geplante Ausfallzeit, <a class="indexterm" href="downtime.html">Geplante Ausfallzeiten</a>
</dt></dl></dd>
<dt>authorized_for_all_hosts=</dt>
<dd><dl><dt>Zugang zu globalen Host-Informationen, <a class="indexterm" href="configcgi.html#configcgi-authorized_for_all_hosts">Optionen CGI-Konfigurationsdatei</a>
</dt></dl></dd>
<dt>authorized_for_all_services=</dt>
<dd><dl><dt>Zugang zu globalen Service-Informationen, <a class="indexterm" href="configcgi.html#configcgi-authorized_for_all_services">Optionen CGI-Konfigurationsdatei</a>
</dt></dl></dd>
<dt>authorized_for_all_service_commands=</dt>
<dd><dl><dt>Zugang zu globalen Service-Befehlen, <a class="indexterm" href="configcgi.html#configcgi-authorized_for_all_service_commands">Optionen CGI-Konfigurationsdatei</a>
</dt></dl></dd>
<dt>authorized_for_configuration_information=</dt>
<dd><dl><dt>Zugang zu Konfigurationsinformationen, <a class="indexterm" href="configcgi.html#configcgi-authorized_for_configuration_information">Optionen CGI-Konfigurationsdatei</a>
</dt></dl></dd>
<dt>authorized_for_host_commands=</dt>
<dd><dl><dt>Zugang zu globalen Host-Befehlen, <a class="indexterm" href="configcgi.html#configcgi-authorized_for_all_host_commands">Optionen CGI-Konfigurationsdatei</a>
</dt></dl></dd>
<dt>authorized_for_system_commands=</dt>
<dd><dl><dt>Zugang zu System/Prozess-Befehlen, <a class="indexterm" href="configcgi.html#configcgi-authorized_for_system_commands">Optionen CGI-Konfigurationsdatei</a>
</dt></dl></dd>
<dt>authorized_for_system_information=</dt>
<dd><dl><dt>Zugang zu System/Prozess-Informationen, <a class="indexterm" href="configcgi.html#configcgi-authorized_for_system_information">Optionen CGI-Konfigurationsdatei</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">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>auto_rescheduling_interval=</dt>
<dd><dl><dt>Auto-Rescheduling, <a class="indexterm" href="configmain.html#configmain-auto_rescheduling_interval">Optionen der Hauptkonfigurationsdatei</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">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>B</h3>
<dl>
<dt>Befehls-Definition (command-Definition), <a class="indexterm" href="objectdefinitions.html#objectdefinitions-command">Objektdefinitionen</a>
</dt>
<dt>Benachrichtigungen, <a class="indexterm" href="notifications.html">Benachrichtigungen</a>
</dt>
<dd><dl>
<dt>Audio-Alarme, <a class="indexterm" href="notifications.html">Benachrichtigungen</a>
</dt>
<dt>Filter, <a class="indexterm" href="notifications.html">Benachrichtigungen</a>
</dt>
</dl></dd>
<dt>Bereitschaftszeiten-Rotation, <a class="indexterm" href="oncallrotation.html">Bereitschafts-Rotation</a>
</dt>
<dt>broker_module=</dt>
<dd><dl><dt>Eventbroker-Module, <a class="indexterm" href="configmain.html#configmain-broker_module">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>C</h3>
<dl>
<dt>Cached Checks, <a class="indexterm" href="cachedchecks.html">Zwischengespeicherte Prüfungen</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">Optionen der Hauptkonfigurationsdatei</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">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>cfg_dir=</dt>
<dd><dl><dt>Objektkonfigurationsverzeichnis, <a class="indexterm" href="configmain.html#configmain-cfg_dir">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>cfg_file=</dt>
<dd><dl><dt>Objektkonfigurationsdatei, <a class="indexterm" href="configmain.html#configmain-cfg_file">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>CGI-Authentifizierung</dt>
<dd><dl>
<dt>Aktivieren der Authentifizierungs/Autorisierungsfunktionalität in den CGIs, <a class="indexterm" href="cgiauth.html#cgiauth-enable_cgi_auth">Authentifizierung und Autorisierung in den CGIs</a>
</dt>
<dt>Authentifizierter Benutzer, <a class="indexterm" href="cgiauth.html#cgiauth-definitions">Authentifizierung und Autorisierung in den CGIs</a>
</dt>
<dt>Authentifizierter Kontakt, <a class="indexterm" href="cgiauth.html#cgiauth-definitions">Authentifizierung und Autorisierung in den CGIs</a>
</dt>
<dt>Authentifizierung auf sicheren Web-Servern, <a class="indexterm" href="cgiauth.html#cgiauth-secure_web_servers">Authentifizierung und Autorisierung in den CGIs</a>
</dt>
<dt>Erstellen von authentifizierten Benutzern, <a class="indexterm" href="cgiauth.html#cgiauth-config_web_users">Authentifizierung und Autorisierung in den CGIs</a>
</dt>
<dt>Standardberechtigungen für CGI-Informationen, <a class="indexterm" href="cgiauth.html#cgiauth-default_rights">Authentifizierung und Autorisierung in den CGIs</a>
</dt>
<dt>Zusätzliche Berechtigungen zu CGI-Informationen gewähren, <a class="indexterm" href="cgiauth.html#cgiauth-additional_rights">Authentifizierung und Autorisierung in den CGIs</a>
</dt>
</dl></dd>
<dt>CGI-Autorisierung, <a class="indexterm" href="cgiauth.html">Authentifizierung und Autorisierung in den CGIs</a>
</dt>
<dt>CGI-Konfiguration</dt>
<dd><dl><dt>Optionen der CGI-Konfigurationsdatei, <a class="indexterm" href="configcgi.html">Optionen CGI-Konfigurationsdatei</a>
</dt></dl></dd>
<dt>CGI-Sicherheit</dt>
<dd><dl>
<dt> Implementieren der Digest Authentication, <a class="indexterm" href="cgisecurity.html#cgisecurity-implementation-digest">Verbesserte CGI-Sicherheit und Authentifizierung</a>
</dt>
<dt> Implementieren erzwungener TLS/SSL-Kommunikation, <a class="indexterm" href="cgisecurity.html#cgisecurity-implementation-ssl">Verbesserte CGI-Sicherheit und Authentifizierung</a>
</dt>
<dt> Implementieren von IP-Subnetz-Beschränkung, <a class="indexterm" href="cgisecurity.html#cgisecurity-implementation-lockdown">Verbesserte CGI-Sicherheit und Authentifizierung</a>
</dt>
<dt>Verbesserte CGI-Sicherheit und Authentifizierung, <a class="indexterm" href="cgisecurity.html">Verbesserte CGI-Sicherheit und Authentifizierung</a>
</dt>
<dt> Zusätzliche Techniken, <a class="indexterm" href="cgisecurity.html#cgisecurity-additionaltechniques">Verbesserte CGI-Sicherheit und Authentifizierung</a>
</dt>
</dl></dd>
<dt>CGIs</dt>
<dd><dl>
<dt>Alert Histogram CGI, <a class="indexterm" href="cgis.html#cgis-histogram_cgi">Informationen über die CGIs</a>
</dt>
<dt>Alert History CGI, <a class="indexterm" href="cgis.html#cgis-history_cgi">Informationen über die CGIs</a>
</dt>
<dt>Alert Summary CGI, <a class="indexterm" href="cgis.html#cgis-summary_cgi">Informationen über die CGIs</a>
</dt>
<dt>Availability Reporting CGI, <a class="indexterm" href="cgis.html#cgis-avail_cgi">Informationen über die CGIs</a>
</dt>
<dt>Command CGI, <a class="indexterm" href="cgis.html#cgis-cmd_cgi">Informationen über die CGIs</a>
</dt>
<dt>Configuration CGI, <a class="indexterm" href="cgis.html#cgis-config_cgi">Informationen über die CGIs</a>
</dt>
<dt>Event log CGI, <a class="indexterm" href="cgis.html#cgis-showlog_cgi">Informationen über die CGIs</a>
</dt>
<dt>Extended Information CGI, <a class="indexterm" href="cgis.html#cgis-extinfo_cgi">Informationen über die CGIs</a>
</dt>
<dt>Network Outages CGI, <a class="indexterm" href="cgis.html#cgis-outages_cgi">Informationen über die CGIs</a>
</dt>
<dt>Notfication CGI, <a class="indexterm" href="cgis.html#cgis-notifications_cgi">Informationen über die CGIs</a>
</dt>
<dt>Status CGI, <a class="indexterm" href="cgis.html#cgis-status_cgi">Informationen über die CGIs</a>
</dt>
<dt>Status Map CGI, <a class="indexterm" href="cgis.html#cgis-statusmap_cgi">Informationen über die CGIs</a>
</dt>
<dt>Tactical Overview CGI, <a class="indexterm" href="cgis.html#cgis-tac_cgi">Informationen über die CGIs</a>
</dt>
<dt>Trends CGI, <a class="indexterm" href="cgis.html#cgis-trends_cgi">Informationen über die CGIs</a>
</dt>
<dt>WAP Interface CGI, <a class="indexterm" href="cgis.html#cgis-statuswml_cgi">Informationen über die 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>prüfen von externen Befehlen, <a class="indexterm" href="configmain.html#configmain-check_external_commands">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>check_for_orphaned_hosts=</dt>
<dd><dl><dt>verwaiste Host-Prüfungen, <a class="indexterm" href="configmain.html#configmain-check_for_orphaned_hosts">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>check_for_orphaned_services=</dt>
<dd><dl><dt>verwaiste Service-Prüfungen, <a class="indexterm" href="configmain.html#configmain-check_for_orphaned_services">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>check_host_freshness=</dt>
<dd><dl><dt>Host-Frischeprüfung, <a class="indexterm" href="configmain.html#configmain-check_host_freshness">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>check_result_path=</dt>
<dd><dl><dt>Prüfergebnispfad, <a class="indexterm" href="configmain.html#configmain-check_result_path">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>check_result_reaper_frequency=</dt>
<dd><dl><dt>Prüfungsergebniserntefrequenz, <a class="indexterm" href="configmain.html#configmain-check_result_reaper_frequency">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>check_service_freshness=</dt>
<dd><dl><dt>Service-Frischeprüfung, <a class="indexterm" href="configmain.html#configmain-check_service_freshness">Optionen der Hauptkonfigurationsdatei</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">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>Cluster</dt>
<dd><dl><dt>Service- und Host-Gruppen überwachen, <a class="indexterm" href="clusters.html">Service- und Host-Gruppen überwachen</a>
</dt></dl></dd>
<dt>Command-Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-command">Objektdefinitionen</a>
</dt>
<dt>command_check_interval=</dt>
<dd><dl><dt>Prüfintervall externe Befehle, <a class="indexterm" href="configmain.html#configmain-command_check_interval">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>command_file=</dt>
<dd><dl><dt>Datei für (externe) Befehle, <a class="indexterm" href="configmain.html#configmain-command_file">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>Contact-Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-contact">Objektdefinitionen</a>
</dt>
<dt>Contactgroup-Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-contactgroup">Objektdefinitionen</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>D</h3>
<dl>
<dt>Danksagungen, <a class="indexterm" href="about.html#acknowledgements">Über Icinga</a>
</dt>
<dt>date_format=</dt>
<dd><dl><dt>Datumsformat, <a class="indexterm" href="configmain.html#configmain-date_format">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>debug_file=</dt>
<dd><dl><dt>Debug-Datei, <a class="indexterm" href="configmain.html#configmain-debug_file">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>debug_level=</dt>
<dd><dl><dt>Debug-Level, <a class="indexterm" href="configmain.html#configmain-debug_level">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>debug_verbosity=</dt>
<dd><dl><dt>Debug-Ausführlichkeit, <a class="indexterm" href="configmain.html#configmain-debug_verbosity">Optionen der Hauptkonfigurationsdatei</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">Optionen CGI-Konfigurationsdatei</a>
</dt></dl></dd>
<dt>default_user_name=</dt>
<dd><dl><dt>Standard-Benutzername, <a class="indexterm" href="configcgi.html#configcgi-default_user_name">Optionen CGI-Konfigurationsdatei</a>
</dt></dl></dd>
<dt>Downtime</dt>
<dd><dl><dt>geplante Ausfallzeit, <a class="indexterm" href="downtime.html">Geplante Ausfallzeiten</a>
</dt></dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>E</h3>
<dl>
<dt>Embedded Perl</dt>
<dd><dl><dt>entwickeln von Plugins für die Benutzung mit Embedded Perl, <a class="indexterm" href="epnplugins.html">Entwickeln von Plugins für die Nutzung mit Embedded Perl</a>
</dt></dl></dd>
<dt>Embedded Perl Interpreter</dt>
<dd><dl><dt>benutzen des ..., <a class="indexterm" href="embeddedperl.html">Benutzen des Embedded Perl Interpreters</a>
</dt></dl></dd>
<dt>enabled_embedded_perl=</dt>
<dd><dl><dt>eingebauter Perl-Interpreter, <a class="indexterm" href="configmain.html#configmain-enable_embedded_perl">Optionen der Hauptkonfigurationsdatei</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">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>enable_event_handlers=</dt>
<dd><dl><dt>aktivieren von Event-Handlern, <a class="indexterm" href="configmain.html#configmain-enable_event_handlers">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>enable_flap_detection=</dt>
<dd><dl><dt>Flattererkennung, <a class="indexterm" href="configmain.html#configmain-enable_flap_detection">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>enable_notifications=</dt>
<dd><dl><dt>Benachrichtigungsoption, <a class="indexterm" href="configmain.html#configmain-enable_notifications">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>enable_predictive_host_dependency_checks=</dt>
<dd><dl><dt>vorausschauende Host-Abhängigkeiten, <a class="indexterm" href="configmain.html#configmain-enable_predictive_host_dependency_checks">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>enable_predictive_service_dependency_checks=</dt>
<dd><dl><dt>voraussschauende Service-Abhängigkeiten, <a class="indexterm" href="configmain.html#configmain-enable_predictive_service_dependency_checks">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>enable_splunk_integration=</dt>
<dd><dl><dt>Splunk-Integrationsoption, <a class="indexterm" href="configcgi.html#configcgi-enable_splunk_integration">Optionen CGI-Konfigurationsdatei</a>
</dt></dl></dd>
<dt>Erreichbarkeit</dt>
<dd><dl><dt>Ermitteln des Zustands und der Erreichbarkeit von Netzwerk-Hosts, <a class="indexterm" href="networkreachability.html">Ermitteln des Zustands und der Erreichbarkeit von Netzwerk-Hosts</a>
</dt></dl></dd>
<dt>Erweiterte Hostinformations-Definition (extended hostinformation-Definition), <a class="indexterm" href="objectdefinitions.html#objectdefinitions-hostextinfo">Objektdefinitionen</a>
</dt>
<dt>Erweiterte Serviceinformations-Definition (extended serviceinformation-Definition), <a class="indexterm" href="objectdefinitions.html#objectdefinitions-serviceextinfo">Objektdefinitionen</a>
</dt>
<dt>Escalations</dt>
<dd><dl><dt>Escalation condition, <a class="indexterm" href="escalation_condition.html">Eskalations-Bedingung</a>
</dt></dl></dd>
<dt>escape_html_tags=</dt>
<dd><dl><dt>Maskieren von HTML-Tags, <a class="indexterm" href="configcgi.html#configcgi-escape_html_tags">Optionen CGI-Konfigurationsdatei</a>
</dt></dl></dd>
<dt>Eskalationen</dt>
<dd><dl><dt>Benachrichtigungseskalationen, <a class="indexterm" href="escalations.html">Benachrichtigungseskalationen</a>
</dt></dl></dd>
<dt>Eventhandler, <a class="indexterm" href="eventhandlers.html">Eventhandler</a>
</dt>
<dd><dl><dt>Beispiel, <a class="indexterm" href="eventhandlers.html#eventhandlers-example">Eventhandler</a>
</dt></dl></dd>
<dt>event_broker_options=</dt>
<dd><dl><dt>Eventbroker-Optionen, <a class="indexterm" href="configmain.html#configmain-event_broker_options">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>event_handler_timeout=</dt>
<dd><dl><dt>Eventhandler-Zeitüberschreitung, <a class="indexterm" href="configmain.html#configmain-event_handler_timeout">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>execute_host_checks=</dt>
<dd><dl><dt>ausführen von Host-Prüfungen, <a class="indexterm" href="configmain.html#configmain-execute_host_checks">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>execute_service_checks=</dt>
<dd><dl><dt>ausführen von Service-Prüfungen, <a class="indexterm" href="configmain.html#configmain-execute_service_checks">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>external_command_buffer_slots=</dt>
<dd><dl><dt>Buffer slots für externe Befehle, <a class="indexterm" href="configmain.html#configmain-external_command_buffer_slots">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>Externe Befehle (external commands), <a class="indexterm" href="extcommands.html">Externe Befehle</a>, <a class="indexterm" href="adaptive.html">Adaptive Überwachung</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>F</h3>
<dl>
<dt>Failover</dt>
<dd><dl><dt>Redundante und Failover-Netzwerk-Überwachung, <a class="indexterm" href="redundancy.html">Redundante und Failover-Netzwerk-Überwachung</a>
</dt></dl></dd>
<dt>Fast Startup Options, <a class="indexterm" href="faststartup.html">Schnellstart-Optionen</a>
</dt>
<dt>Flattern (flapping)</dt>
<dd><dl><dt>Erkennung und Behandlung von Status-Flattern, <a class="indexterm" href="flapping.html">Erkennung und Behandlung von Status-Flattern</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">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>Frische (freshness)</dt>
<dd><dl><dt>Service- und Host-Frischeprüfungen, <a class="indexterm" href="freshness.html">Service- und Host-Frische-Prüfungen</a>
</dt></dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>G</h3>
<dl>
<dt>Gleicher-Host-Abhängigkeiten, <a class="indexterm" href="objecttricks.html#objecttricks-same_host_dependency">Zeitsparende Tricks für Objektdefinitionen</a>
</dt>
<dt>global_host_event_handler=</dt>
<dd><dl><dt>globaler Host-Eventhandler, <a class="indexterm" href="configmain.html#configmain-global_host_event_handler">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>global_service_event_handler=</dt>
<dd><dl><dt>globaler Service-Eventhandler, <a class="indexterm" href="configmain.html#configmain-global_service_event_handler">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>Gnokii, <a class="indexterm" href="notifications.html">Benachrichtigungen</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>H</h3>
<dl>
<dt>Herunterladen der letzten Version, <a class="indexterm" href="about.html#downloading">Über Icinga</a>
</dt>
<dt>high_host_flap_threshold=</dt>
<dd><dl><dt>hoher Schwellwert Host-Flattern, <a class="indexterm" href="configmain.html#configmain-high_host_flap_threshold">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>high_service_flap_threshold=</dt>
<dd><dl><dt>hoher Schwellwert Service-Flattern, <a class="indexterm" href="configmain.html#configmain-high_service_flap_threshold">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>Host-Abhängigkeits-Definition (hostdependency-Definition), <a class="indexterm" href="objectdefinitions.html#objectdefinitions-hostdependency">Objektdefinitionen</a>
</dt>
<dt>Host-Abhängigkeits-Definitionen, <a class="indexterm" href="objecttricks.html#objecttricks-hostdependency">Zeitsparende Tricks für Objektdefinitionen</a>
</dt>
<dt>Host-Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-host">Objektdefinitionen</a>
</dt>
<dt>Host-Eskalations-Definition (hostescalation-Definition), <a class="indexterm" href="objectdefinitions.html#objectdefinitions-hostescalation">Objektdefinitionen</a>
</dt>
<dt>Host-Eskalations-Definitionen, <a class="indexterm" href="objecttricks.html#objecttricks-hostescalation">Zeitsparende Tricks für Objektdefinitionen</a>
</dt>
<dt>Host-Prüfungen, <a class="indexterm" href="hostchecks.html">Host-Prüfungen (Host checks)</a>
</dt>
<dt>Hostdependency-Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-hostdependency">Objektdefinitionen</a>
</dt>
<dt>Hostescalation-Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-hostescalation">Objektdefinitionen</a>
</dt>
<dt>Hostextinfo-Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-hostextinfo">Objektdefinitionen</a>
</dt>
<dt>Hostgroup-Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-hostgroup">Objektdefinitionen</a>
</dt>
<dt>Hostgroups, <a class="indexterm" href="objecttricks.html#objecttricks-hostgroup">Zeitsparende Tricks für Objektdefinitionen</a>
</dt>
<dt>Hostgruppen-Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-hostgroup">Objektdefinitionen</a>
</dt>
<dt>host_check_timeout=</dt>
<dd><dl><dt>Host-Prüfungs-Zeitüberschreitung, <a class="indexterm" href="configmain.html#configmain-host_check_timeout">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>host_freshness_check_interval=</dt>
<dd><dl><dt>Intervall Host-Frischeprüfung, <a class="indexterm" href="configmain.html#configmain-host_freshness_check_interval">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>host_inter_check_delay_method=</dt>
<dd><dl><dt>Verzögerungsmethode bei Host-Prüfungen, <a class="indexterm" href="configmain.html#configmain-host_inter_check_delay_method">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>host_perfdata_command=</dt>
<dd><dl><dt>Host-Performance-Daten-Verarbeitung, <a class="indexterm" href="configmain.html#configmain-host_perfdata_command">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>host_perfdata_file=</dt>
<dd><dl><dt>Host-Performance-Daten-Datei, <a class="indexterm" href="configmain.html#configmain-host_perfdata_file">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>host_perfdata_file_mode=</dt>
<dd><dl><dt>Modus Host-Performance-Daten-Datei, <a class="indexterm" href="configmain.html#configmain-host_perfdata_file_mode">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>host_perfdata_file_processing_command=</dt>
<dd><dl><dt>Verarbeitungsbefehl Host-Performance-Daten-Datei, <a class="indexterm" href="configmain.html#configmain-host_perfdata_file_processing_command">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>host_perfdata_file_processing_interval=</dt>
<dd><dl><dt>Verarbeitungsintervall Host-Performance-Daten-Datei, <a class="indexterm" href="configmain.html#configmain-host_perfdata_file_processing_interval">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>host_perfdata_file_template=</dt>
<dd><dl><dt>Vorlage Host-Performance-Daten-Datei, <a class="indexterm" href="configmain.html#configmain-host_perfdata_file_template">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>I</h3>
<dl>
<dt>Icinga für maximale Leistung optimieren, <a class="indexterm" href="tuning.html">Icinga für maximale Leistung optimieren</a>
</dt>
<dt>Icinga Kommandozeilenoptionen</dt>
<dd><dl>
<dt>Option -d (Daemon-Modus), <a class="indexterm" href="startstop.html">Icinga starten und stoppen</a>
</dt>
<dt>Option -v (Konfiguration überprüfen), <a class="indexterm" href="../../../../../"></a>
</dt>
</dl></dd>
<dt>Icinga starten und stoppen, <a class="indexterm" href="startstop.html">Icinga starten und stoppen</a>
</dt>
<dt>Icinga-API, <a class="indexterm" href="icinga-api.html">Installation und Benutzung der Icinga API</a>
</dt>
<dt>Icinga-Kommandozeilenoptionen</dt>
<dd><dl>
<dt>Option -p (Precache von Objekten), <a class="indexterm" href="../../../../../"></a>
</dt>
<dt>Option -S (Timing- und Scheduling-Informationen sowie Scheduling-Queue), <a class="indexterm" href="../../../../../"></a>
</dt>
<dt>Option -s (Timing- und Scheduling-Informationen), <a class="indexterm" href="../../../../../"></a>
</dt>
<dt>Option -u (Precached-Objekte benutzen), <a class="indexterm" href="../../../../../"></a>
</dt>
<dt>Option -x (nicht auf zirkuläre Pfade prüfen), <a class="indexterm" href="../../../../../"></a>
</dt>
</dl></dd>
<dt>Icingastats</dt>
<dd><dl><dt>benutzen des Icingastats-Utilitys, <a class="indexterm" href="icingastats.html">Nutzung des Icingastats-Utilitys</a>
</dt></dl></dd>
<dt>icinga_group=</dt>
<dd><dl><dt>Icinga Gruppe, <a class="indexterm" href="configmain.html#configmain-icinga_group">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>icinga_user=</dt>
<dd><dl><dt>Icinga Benutzer, <a class="indexterm" href="configmain.html#configmain-icinga_user">Optionen der Hauptkonfigurationsdatei</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>Illegale Makroausgabe, <a class="indexterm" href="configmain.html#configmain-illegal_macro_output_chars">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>illegal_object_name_chars=</dt>
<dd><dl><dt>Illegale Objektnamen, <a class="indexterm" href="configmain.html#configmain-illegal_object_name_chars">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>Installation des Webinterfaces, <a class="indexterm" href="icinga-web-scratch.html">Installation des neuen Icinga Web Frontend</a>
</dt>
<dt>Integration</dt>
<dd><dl>
<dt>SNMP-Trap-Integration, <a class="indexterm" href="int-snmptrap.html">SNMP-Trap-Integration</a>
</dt>
<dt>TCP-Wrapper-Integration, <a class="indexterm" href="int-tcpwrappers.html">TCP-Wrapper-Integration</a>
</dt>
<dt>Überblick, <a class="indexterm" href="integration.html">Integrationsüberblick</a>
</dt>
</dl></dd>
<dt>interval_length=</dt>
<dd><dl><dt>Intervalllänge, <a class="indexterm" href="configmain.html#configmain-interval_length">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>K</h3>
<dl>
<dt>Kompatibilität, <a class="indexterm" href="about.html#compatibility">Über Icinga</a>
</dt>
<dt>Konfiguration</dt>
<dd><dl>
<dt>check-config, <a class="indexterm" href="../../../../../"></a>
</dt>
<dt>Optionen der Hauptkonfigurationsdatei, <a class="indexterm" href="configmain.html">Optionen der Hauptkonfigurationsdatei</a>
</dt>
<dt>show-errors, <a class="indexterm" href="../../../../../"></a>
</dt>
<dt>Überblick Objektkonfiguration, <a class="indexterm" href="configobject.html">Überblick Objektkonfiguration</a>
</dt>
<dt>Überprüfung Ihrer Konfiguration, <a class="indexterm" href="verifyconfig.html">Überprüfen Ihrer Icinga-Konfiguration</a>
</dt>
</dl></dd>
<dt>Konfigurationsüberblick, <a class="indexterm" href="config.html">Konfigurationsüberblick</a>
</dt>
<dt>Kontakt-Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-contact">Objektdefinitionen</a>
</dt>
<dt>Kontaktgruppen-Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-contactgroup">Objektdefinitionen</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>L</h3>
<dl>
<dt>Large Installation Tweaks, <a class="indexterm" href="largeinstalltweaks.html">Large Installation Tweaks</a>
</dt>
<dt>Lizenzierung, <a class="indexterm" href="about.html#licensing">Über Icinga</a>
</dt>
<dt>lock_author=</dt>
<dd><dl><dt>Autorennamen sperren, <a class="indexterm" href="configcgi.html#configcgi-lock_author_names">Optionen CGI-Konfigurationsdatei</a>
</dt></dl></dd>
<dt>lock_file=</dt>
<dd><dl><dt>Sperrdatei, <a class="indexterm" href="configmain.html#configmain-lock_file">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>log_archive_path=</dt>
<dd><dl><dt>Protokollarchiv-Pfad, <a class="indexterm" href="configmain.html#configmain-log_archive_path">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>log_event_handlers=</dt>
<dd><dl><dt>protokollieren Eventhandler, <a class="indexterm" href="configmain.html#configmain-log_event_handlers">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>log_external_commands=</dt>
<dd><dl><dt>protokollieren externe Befehle, <a class="indexterm" href="configmain.html#configmain-log_external_commands">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>log_file=</dt>
<dd><dl><dt>Log-Datei, <a class="indexterm" href="configmain.html#configmain-log_file">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>log_host_retries=</dt>
<dd><dl><dt>protokollieren Host-Prüfungswiederholungen, <a class="indexterm" href="configmain.html#configmain-log_host_retries">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>log_initial_states=</dt>
<dd><dl><dt>protokollieren initiale Zustände, <a class="indexterm" href="configmain.html#configmain-log_initial_states">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>log_notifications=</dt>
<dd><dl><dt>Benachrichtigungsprokotollierung, <a class="indexterm" href="configmain.html#configmain-log_notifications">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>log_passive_checks=</dt>
<dd><dl><dt>protokollieren passive Prüfungen, <a class="indexterm" href="configmain.html#configmain-log_passive_checks">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>log_rotation_method=</dt>
<dd><dl><dt>Protokoll-Rotationsmethode, <a class="indexterm" href="configmain.html#configmain-log_rotation_method">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>log_service_retries=</dt>
<dd><dl><dt>protokollieren Service-Prüfungswiederholungen, <a class="indexterm" href="configmain.html#configmain-log_service_retries">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>low_host_flap_threshold=</dt>
<dd><dl><dt>niedriger Schwellwert Host-Flattern, <a class="indexterm" href="configmain.html#configmain-low_host_flap_threshold">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>low_service_flap_threshold=</dt>
<dd><dl><dt>niedriger Schwellwert Service-Flattern, <a class="indexterm" href="configmain.html#configmain-low_service_flap_threshold">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>M</h3>
<dl>
<dt>main_cfg_file=</dt>
<dd><dl><dt>Position der Hauptkonfigurationsdatei, <a class="indexterm" href="configcgi.html#configcgi-main_cfg_file">Optionen CGI-Konfigurationsdatei</a>
</dt></dl></dd>
<dt>Makros</dt>
<dd><dl>
<dt>$ADMINEMAIL$, <a class="indexterm" href="macrolist.html#macrolist-adminemail">Standard-Makros in Icinga</a>
</dt>
<dt>$ADMINPAGER$, <a class="indexterm" href="macrolist.html#macrolist-adminpager">Standard-Makros in Icinga</a>
</dt>
<dt>$ARGn$, <a class="indexterm" href="macrolist.html#macrolist-arg">Standard-Makros in Icinga</a>
</dt>
<dt>$COMMANDFILE$, <a class="indexterm" href="macrolist.html#macrolist-commandfile">Standard-Makros in Icinga</a>
</dt>
<dt>$COMMENTDATAFILE$, <a class="indexterm" href="macrolist.html#macrolist-commentdatafile">Standard-Makros in Icinga</a>
</dt>
<dt>$CONTACTADDRESSn$, <a class="indexterm" href="macrolist.html#macrolist-contactaddress">Standard-Makros in Icinga</a>
</dt>
<dt>$CONTACTALIAS$, <a class="indexterm" href="macrolist.html#macrolist-contactalias">Standard-Makros in Icinga</a>
</dt>
<dt>$CONTACTEMAIL$, <a class="indexterm" href="macrolist.html#macrolist-contactemail">Standard-Makros in Icinga</a>
</dt>
<dt>$CONTACTGROUPALIAS$, <a class="indexterm" href="macrolist.html#macrolist-contactgroupalias">Standard-Makros in Icinga</a>
</dt>
<dt>$CONTACTGROUPMEMBERS$, <a class="indexterm" href="macrolist.html#macrolist-contactgroupmembers">Standard-Makros in Icinga</a>
</dt>
<dt>$CONTACTGROUPNAME$, <a class="indexterm" href="macrolist.html#macrolist-contactgroupname">Standard-Makros in Icinga</a>
</dt>
<dt>$CONTACTGROUPNAMES$, <a class="indexterm" href="macrolist.html#macrolist-contactgroupnames">Standard-Makros in Icinga</a>
</dt>
<dt>$CONTACTNAME$, <a class="indexterm" href="macrolist.html#macrolist-contactname">Standard-Makros in Icinga</a>
</dt>
<dt>$CONTACTPAGER$, <a class="indexterm" href="macrolist.html#macrolist-contactpager">Standard-Makros in Icinga</a>
</dt>
<dt>$DATE$, <a class="indexterm" href="macrolist.html#macrolist-date">Standard-Makros in Icinga</a>
</dt>
<dt>$DOWNTIMEDATAFILE$, <a class="indexterm" href="macrolist.html#macrolist-downtimedatafile">Standard-Makros in Icinga</a>
</dt>
<dt>$EVENTSTARTTIME$, <a class="indexterm" href="macrolist.html#macrolist-eventstarttime">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTACKAUTHOR$, <a class="indexterm" href="macrolist.html#macrolist-hostackauthor">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTACKAUTHORALIAS$, <a class="indexterm" href="macrolist.html#macrolist-hostackauthoralias">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTACKAUTHORNAME$, <a class="indexterm" href="macrolist.html#macrolist-hostackauthorname">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTACKCOMMENT$, <a class="indexterm" href="macrolist.html#macrolist-hostackcomment">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTACTIONURL$, <a class="indexterm" href="macrolist.html#macrolist-hostactionurl">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTADDRESS$, <a class="indexterm" href="macrolist.html#macrolist-hostaddress">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTALIAS$, <a class="indexterm" href="macrolist.html#macrolist-hostalias">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTATTEMPT$, <a class="indexterm" href="macrolist.html#macrolist-hostattempt">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTCHECKCOMMAND$, <a class="indexterm" href="macrolist.html#macrolist-hostcheckcommand">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTDISPLAYNAME$, <a class="indexterm" href="macrolist.html#macrolist-hostdisplayname">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTDOWNTIME$, <a class="indexterm" href="macrolist.html#macrolist-hostdowntime">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTDURATION$, <a class="indexterm" href="macrolist.html#macrolist-hostduration">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTDURATIONSEC$, <a class="indexterm" href="macrolist.html#macrolist-hostdurationsec">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTEVENTID$, <a class="indexterm" href="macrolist.html#macrolist-hosteventid">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTEXECUTIONTIME$, <a class="indexterm" href="macrolist.html#macrolist-hostexecutiontime">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTGROUPACTIONURL$, <a class="indexterm" href="macrolist.html#macrolist-hostgroupactionurl">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTGROUPALIAS$, <a class="indexterm" href="macrolist.html#macrolist-hostgroupalias">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTGROUPMEMBERS$, <a class="indexterm" href="macrolist.html#macrolist-hostgroupmembers">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTGROUPNAME$, <a class="indexterm" href="macrolist.html#macrolist-hostgroupname">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTGROUPNAMES$, <a class="indexterm" href="macrolist.html#macrolist-hostgroupnames">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTGROUPNOTES$, <a class="indexterm" href="macrolist.html#macrolist-hostgroupnotes">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTGROUPNOTESURL$, <a class="indexterm" href="macrolist.html#macrolist-hostgroupnotesurl">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTLATENCY$, <a class="indexterm" href="macrolist.html#macrolist-hostlatency">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTNAME$, <a class="indexterm" href="macrolist.html#macrolist-hostname">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTNOTES$, <a class="indexterm" href="macrolist.html#macrolist-hostnotes">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTNOTESURL$, <a class="indexterm" href="macrolist.html#macrolist-hostnotesurl">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTNOTIFICATIONID$, <a class="indexterm" href="macrolist.html#macrolist-hostnotificationid">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTNOTIFICATIONNUMBER$, <a class="indexterm" href="macrolist.html#macrolist-hostnotificationnumber">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTOUTPUT$, <a class="indexterm" href="macrolist.html#macrolist-hostoutput">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTPERCENTCHANGE$, <a class="indexterm" href="macrolist.html#macrolist-hostpercentchange">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTPERFDATA$, <a class="indexterm" href="macrolist.html#macrolist-hostperfdata">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTPERFDATAFILE$, <a class="indexterm" href="macrolist.html#macrolist-hostperfdatafile">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTPROBLEMID$, <a class="indexterm" href="macrolist.html#macrolist-hostproblemid">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTSTATE$, <a class="indexterm" href="macrolist.html#macrolist-hoststate">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTSTATEID$, <a class="indexterm" href="macrolist.html#macrolist-hoststateid">Standard-Makros in Icinga</a>
</dt>
<dt>$HOSTSTATETYPE$, <a class="indexterm" href="macrolist.html#macrolist-hoststatetype">Standard-Makros in Icinga</a>
</dt>
<dt>$LASTHOSTCHECK$, <a class="indexterm" href="macrolist.html#macrolist-lasthostcheck">Standard-Makros in Icinga</a>
</dt>
<dt>$LASTHOSTDOWN$, <a class="indexterm" href="macrolist.html#macrolist-lasthostdown">Standard-Makros in Icinga</a>
</dt>
<dt>$LASTHOSTEVENTID$, <a class="indexterm" href="macrolist.html#macrolist-lasthosteventid">Standard-Makros in Icinga</a>
</dt>
<dt>$LASTHOSTPROBLEMID$, <a class="indexterm" href="macrolist.html#macrolist-lasthostproblemid">Standard-Makros in Icinga</a>
</dt>
<dt>$LASTHOSTSTATE$, <a class="indexterm" href="macrolist.html#macrolist-lasthoststate">Standard-Makros in Icinga</a>
</dt>
<dt>$LASTHOSTSTATECHANGE$, <a class="indexterm" href="macrolist.html#macrolist-lasthoststatechange">Standard-Makros in Icinga</a>
</dt>
<dt>$LASTHOSTSTATEID$, <a class="indexterm" href="macrolist.html#macrolist-lasthoststateid">Standard-Makros in Icinga</a>
</dt>
<dt>$LASTHOSTUNREACHABLE$, <a class="indexterm" href="macrolist.html#macrolist-lasthostunreachable">Standard-Makros in Icinga</a>
</dt>
<dt>$LASTHOSTUP$, <a class="indexterm" href="macrolist.html#macrolist-lasthostup">Standard-Makros in Icinga</a>
</dt>
<dt>$LASTSERVICECHECK$, <a class="indexterm" href="macrolist.html#macrolist-lastservicecheck">Standard-Makros in Icinga</a>
</dt>
<dt>$LASTSERVICECRITICAL$, <a class="indexterm" href="macrolist.html#macrolist-lastservicecritical">Standard-Makros in Icinga</a>
</dt>
<dt>$LASTSERVICEEVENTID$, <a class="indexterm" href="macrolist.html#macrolist-lastserviceeventid">Standard-Makros in Icinga</a>
</dt>
<dt>$LASTSERVICEOK$, <a class="indexterm" href="macrolist.html#macrolist-lastserviceok">Standard-Makros in Icinga</a>
</dt>
<dt>$LASTSERVICEPROBLEMID$, <a class="indexterm" href="macrolist.html#macrolist-lastserviceproblemid">Standard-Makros in Icinga</a>
</dt>
<dt>$LASTSERVICESTATE$, <a class="indexterm" href="macrolist.html#macrolist-lastservicestate">Standard-Makros in Icinga</a>
</dt>
<dt>$LASTSERVICESTATECHANGE$, <a class="indexterm" href="macrolist.html#macrolist-lastservicestatechange">Standard-Makros in Icinga</a>
</dt>
<dt>$LASTSERVICESTATEID$, <a class="indexterm" href="macrolist.html#macrolist-lastservicestateid">Standard-Makros in Icinga</a>
</dt>
<dt>$LASTSERVICEUNKNOWN$, <a class="indexterm" href="macrolist.html#macrolist-lastserviceunknown">Standard-Makros in Icinga</a>
</dt>
<dt>$LASTSERVICEWARNING$, <a class="indexterm" href="macrolist.html#macrolist-lastservicewarning">Standard-Makros in Icinga</a>
</dt>
<dt>$LOGFILE$, <a class="indexterm" href="macrolist.html#macrolist-logfile">Standard-Makros in Icinga</a>
</dt>
<dt>$LONGDATETIME$, <a class="indexterm" href="macrolist.html#macrolist-longdatetime">Standard-Makros in Icinga</a>
</dt>
<dt>$LONGHOSTOUTPUT$, <a class="indexterm" href="macrolist.html#macrolist-longhostoutput">Standard-Makros in Icinga</a>
</dt>
<dt>$LONGSERVICEOUTPUT$, <a class="indexterm" href="macrolist.html#macrolist-longserviceoutput">Standard-Makros in Icinga</a>
</dt>
<dt>$MAINCONFIGFILE$, <a class="indexterm" href="macrolist.html#macrolist-mainconfigfile">Standard-Makros in Icinga</a>
</dt>
<dt>$MAXHOSTATTEMPTS$, <a class="indexterm" href="macrolist.html#macrolist-maxhostattempts">Standard-Makros in Icinga</a>
</dt>
<dt>$MAXSERVICEATTEMPTS$, <a class="indexterm" href="macrolist.html#macrolist-maxserviceattempts">Standard-Makros in Icinga</a>
</dt>
<dt>$NOTIFICATIONAUTHOR$, <a class="indexterm" href="macrolist.html#macrolist-notificationauthor">Standard-Makros in Icinga</a>
</dt>
<dt>$NOTIFICATIONAUTHORALIAS$, <a class="indexterm" href="macrolist.html#macrolist-notificationauthoralias">Standard-Makros in Icinga</a>
</dt>
<dt>$NOTIFICATIONAUTHORNAME$, <a class="indexterm" href="macrolist.html#macrolist-notificationauthorname">Standard-Makros in Icinga</a>
</dt>
<dt>$NOTIFICATIONCOMMENT$, <a class="indexterm" href="macrolist.html#macrolist-notificationcomment">Standard-Makros in Icinga</a>
</dt>
<dt>$NOTIFICATIONISESCALATED$, <a class="indexterm" href="macrolist.html#macrolist-notificationisescalated">Standard-Makros in Icinga</a>
</dt>
<dt>$NOTIFICATIONRECIPIENTS$, <a class="indexterm" href="macrolist.html#macrolist-notificationrecipients">Standard-Makros in Icinga</a>
</dt>
<dt>$NOTIFICATIONTYPE$, <a class="indexterm" href="macrolist.html#macrolist-notificationtype">Standard-Makros in Icinga</a>
</dt>
<dt>$OBJECTCACHEFILE$, <a class="indexterm" href="macrolist.html#macrolist-objectcachefile">Standard-Makros in Icinga</a>
</dt>
<dt>$PROCESSSTARTTIME$, <a class="indexterm" href="macrolist.html#macrolist-processstarttime">Standard-Makros in Icinga</a>
</dt>
<dt>$RESOURCEFILE$, <a class="indexterm" href="macrolist.html#macrolist-resourcefile">Standard-Makros in Icinga</a>
</dt>
<dt>$RETENTIONDATAFILE$, <a class="indexterm" href="macrolist.html#macrolist-retentiondatafile">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEACKAUTHOR$, <a class="indexterm" href="macrolist.html#macrolist-serviceackauthor">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEACKAUTHORALIAS$, <a class="indexterm" href="macrolist.html#macrolist-serviceackauthoralias">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEACKAUTHORNAME$, <a class="indexterm" href="macrolist.html#macrolist-serviceackauthorname">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEACKCOMMENT$, <a class="indexterm" href="macrolist.html#macrolist-serviceackcomment">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEACTIONURL$, <a class="indexterm" href="macrolist.html#macrolist-serviceactionurl">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEATTEMPT$, <a class="indexterm" href="macrolist.html#macrolist-serviceattempt">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICECHECKCOMMAND$, <a class="indexterm" href="macrolist.html#macrolist-servicecheckcommand">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEDESC$, <a class="indexterm" href="macrolist.html#macrolist-servicedesc">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEDISPLAYNAME$, <a class="indexterm" href="macrolist.html#macrolist-servicedisplayname">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEDOWNTIME$, <a class="indexterm" href="macrolist.html#macrolist-servicedowntime">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEDURATION$, <a class="indexterm" href="macrolist.html#macrolist-serviceduration">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEDURATIONSEC$, <a class="indexterm" href="macrolist.html#macrolist-servicedurationsec">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEEVENTID$, <a class="indexterm" href="macrolist.html#macrolist-serviceeventid">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEEXECUTIONTIME$, <a class="indexterm" href="macrolist.html#macrolist-serviceexecutiontime">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEGROUPACTIONURL$, <a class="indexterm" href="macrolist.html#macrolist-servicegroupactionurl">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEGROUPALIAS$, <a class="indexterm" href="macrolist.html#macrolist-servicegroupalias">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEGROUPMEMBERS$, <a class="indexterm" href="macrolist.html#macrolist-servicegroupmembers">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEGROUPNAME$, <a class="indexterm" href="macrolist.html#macrolist-servicegroupname">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEGROUPNAMES$, <a class="indexterm" href="macrolist.html#macrolist-servicegroupnames">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEGROUPNOTES$, <a class="indexterm" href="macrolist.html#macrolist-servicegroupnotes">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEGROUPNOTESURL$, <a class="indexterm" href="macrolist.html#macrolist-servicegroupnotesurl">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEISVOLATILE$, <a class="indexterm" href="macrolist.html#macrolist-serviceisvolatile">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICELATENCY$, <a class="indexterm" href="macrolist.html#macrolist-servicelatency">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICENOTES$, <a class="indexterm" href="macrolist.html#macrolist-servicenotes">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICENOTESURL$, <a class="indexterm" href="macrolist.html#macrolist-servicenotesurl">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICENOTIFICATIONID$, <a class="indexterm" href="macrolist.html#macrolist-servicenotificationid">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICENOTIFICATIONNUMBER$, <a class="indexterm" href="macrolist.html#macrolist-servicenotificationnumber">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEOUTPUT$, <a class="indexterm" href="macrolist.html#macrolist-serviceoutput">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEPERCENTCHANGE$, <a class="indexterm" href="macrolist.html#macrolist-servicepercentchange">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEPERFDATA$, <a class="indexterm" href="macrolist.html#macrolist-serviceperfdata">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEPERFDATAFILE$, <a class="indexterm" href="macrolist.html#macrolist-serviceperfdatafile">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICEPROBLEMID$, <a class="indexterm" href="macrolist.html#macrolist-serviceproblemid">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICESTATE$, <a class="indexterm" href="macrolist.html#macrolist-servicestate">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICESTATEID$, <a class="indexterm" href="macrolist.html#macrolist-servicestateid">Standard-Makros in Icinga</a>
</dt>
<dt>$SERVICESTATETYPE$, <a class="indexterm" href="macrolist.html#macrolist-servicestatetype">Standard-Makros in Icinga</a>
</dt>
<dt>$SHORTDATETIME$, <a class="indexterm" href="macrolist.html#macrolist-shortdatetime">Standard-Makros in Icinga</a>
</dt>
<dt>$STATUSDATAFILE$, <a class="indexterm" href="macrolist.html#macrolist-statusdatafile">Standard-Makros in Icinga</a>
</dt>
<dt>$TEMPFILE$, <a class="indexterm" href="macrolist.html#macrolist-tempfile">Standard-Makros in Icinga</a>
</dt>
<dt>$TEMPPATH$, <a class="indexterm" href="macrolist.html#macrolist-temppath">Standard-Makros in Icinga</a>
</dt>
<dt>$TIME$, <a class="indexterm" href="macrolist.html#macrolist-time">Standard-Makros in Icinga</a>
</dt>
<dt>$TIMET$, <a class="indexterm" href="macrolist.html#macrolist-timet">Standard-Makros in Icinga</a>
</dt>
<dt>$TOTALHOSTPROBLEMS$, <a class="indexterm" href="macrolist.html#macrolist-totalhostproblems">Standard-Makros in Icinga</a>
</dt>
<dt>$TOTALHOSTPROBLEMSUNHANDLED$, <a class="indexterm" href="macrolist.html#macrolist-totalhostproblemsunhandled">Standard-Makros in Icinga</a>
</dt>
<dt>$TOTALHOSTSDOWN$, <a class="indexterm" href="macrolist.html#macrolist-totalhostsdown">Standard-Makros in Icinga</a>
</dt>
<dt>$TOTALHOSTSDOWNUNHANDLED$, <a class="indexterm" href="macrolist.html#macrolist-totalhostsdownunhandled">Standard-Makros in Icinga</a>
</dt>
<dt>$TOTALHOSTSERVICES$, <a class="indexterm" href="macrolist.html#macrolist-totalhostservices">Standard-Makros in Icinga</a>
</dt>
<dt>$TOTALHOSTSERVICESCRITICAL$, <a class="indexterm" href="macrolist.html#macrolist-totalhostservicescritical">Standard-Makros in Icinga</a>
</dt>
<dt>$TOTALHOSTSERVICESOK$, <a class="indexterm" href="macrolist.html#macrolist-totalhostservicesok">Standard-Makros in Icinga</a>
</dt>
<dt>$TOTALHOSTSERVICESUNKNOWN$, <a class="indexterm" href="macrolist.html#macrolist-totalhostservicesunknown">Standard-Makros in Icinga</a>
</dt>
<dt>$TOTALHOSTSERVICESWARNING$, <a class="indexterm" href="macrolist.html#macrolist-totalhostserviceswarning">Standard-Makros in Icinga</a>
</dt>
<dt>$TOTALHOSTSUNREACHABLE$, <a class="indexterm" href="macrolist.html#macrolist-totalhostsunreachable">Standard-Makros in Icinga</a>
</dt>
<dt>$TOTALHOSTSUNREACHABLEUNHANDLED$, <a class="indexterm" href="macrolist.html#macrolist-totalhostsunreachableunhandled">Standard-Makros in Icinga</a>
</dt>
<dt>$TOTALHOSTSUP$, <a class="indexterm" href="macrolist.html#macrolist-totalhostsup">Standard-Makros in Icinga</a>
</dt>
<dt>$TOTALSERVICEPROBLEMS$, <a class="indexterm" href="macrolist.html#macrolist-totalserviceproblems">Standard-Makros in Icinga</a>
</dt>
<dt>$TOTALSERVICEPROBLEMSUNHANDLED$, <a class="indexterm" href="macrolist.html#macrolist-totalserviceproblemsunhandled">Standard-Makros in Icinga</a>
</dt>
<dt>$TOTALSERVICESCRITICAL$, <a class="indexterm" href="macrolist.html#macrolist-totalservicescritical">Standard-Makros in Icinga</a>
</dt>
<dt>$TOTALSERVICESCRITICALUNHANDLED$, <a class="indexterm" href="macrolist.html#macrolist-totalservicescriticalunhandled">Standard-Makros in Icinga</a>
</dt>
<dt>$TOTALSERVICESOK$, <a class="indexterm" href="macrolist.html#macrolist-totalservicesok">Standard-Makros in Icinga</a>
</dt>
<dt>$TOTALSERVICESUNKNOWN$, <a class="indexterm" href="macrolist.html#macrolist-totalservicesunknown">Standard-Makros in Icinga</a>
</dt>
<dt>$TOTALSERVICESUNKNOWNUNHANDLED$, <a class="indexterm" href="macrolist.html#macrolist-totalservicesunknownunhandled">Standard-Makros in Icinga</a>
</dt>
<dt>$TOTALSERVICESWARNING$, <a class="indexterm" href="macrolist.html#macrolist-totalserviceswarning">Standard-Makros in Icinga</a>
</dt>
<dt>$TOTALSERVICESWARNINGUNHANDLED$, <a class="indexterm" href="macrolist.html#macrolist-totalserviceswarningunhandled">Standard-Makros in Icinga</a>
</dt>
<dt>$USERn$, <a class="indexterm" href="macrolist.html#macrolist-user">Standard-Makros in Icinga</a>
</dt>
<dt>Auswertungsmakros, <a class="indexterm" href="macrolist.html#macrolist-summary_macros">Standard-Makros in Icinga</a>
</dt>
<dt>Standardmakros in Icinga, <a class="indexterm" href="macrolist.html">Standard-Makros in Icinga</a>
</dt>
<dt>Summary Macros, <a class="indexterm" href="macrolist.html#macrolist-summary_macros">Standard-Makros in Icinga</a>
</dt>
<dt>verstehen von Makros und wie sie funktionieren, <a class="indexterm" href="macros.html">Makros verstehen und wie sie arbeiten</a>
</dt>
</dl></dd>
<dt>max_check_result_file_age=</dt>
<dd><dl><dt>max. Alter von Prüfergebnisdateien, <a class="indexterm" href="configmain.html#configmain-max_check_result_file_age">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>max_check_result_reaper_time=</dt>
<dd><dl><dt>maximale Prüfergebnis-Erntezeit, <a class="indexterm" href="configmain.html#configmain-max_check_result_reaper_time">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>max_concurrent_checks=</dt>
<dd><dl><dt>maximale Anzahl gleichzeitiger Service-Prüfungen, <a class="indexterm" href="configmain.html#configmain-max_concurrent_checks">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>max_debug_file_size=</dt>
<dd><dl><dt>max. Debug-Dateigröße, <a class="indexterm" href="configmain.html#configmain-max_debug_file_size">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>max_host_check_spread=</dt>
<dd><dl><dt>maximaler Zeitrau, bei Host-Verteilung, <a class="indexterm" href="configmain.html#configmain-max_host_check_spread">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>max_service_check_spread=</dt>
<dd><dl><dt>maximaler Zeitraum bei Service-Verteilung, <a class="indexterm" href="configmain.html#configmain-max_service_check_spread">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>Maßgeschneiderte Objektvariablen, <a class="indexterm" href="customobjectvars.html">Maßgeschneiderte Objektvariablen</a>
</dt>
<dt>MKLiveStatus-Integration, <a class="indexterm" href="int-mklivestatus.html">MKLiveStatus-Integration</a>
</dt>
<dt>Monitoring</dt>
<dd><dl>
<dt>Linux/Unix-Rechner überwachen, <a class="indexterm" href="monitoring-linux.html">Linux/Unix-Rechner überwachen</a>
</dt>
<dt>Netware-Server überwachen, <a class="indexterm" href="monitoring-netware.html">Netware-Server überwachen</a>
</dt>
<dt>Netzwerk-Drucker überwachen, <a class="indexterm" href="monitoring-printers.html">Netzwerk-Drucker überwachen</a>
</dt>
<dt>Öffentlich zugängliche Dienste überwachen, <a class="indexterm" href="monitoring-publicservices.html">Öffentlich zugängliche Dienste überwachen</a>
</dt>
<dt>Redundante und Failover-Netzwerk-Überwachung, <a class="indexterm" href="redundancy.html">Redundante und Failover-Netzwerk-Überwachung</a>
</dt>
<dt>Router und Switches überwachen, <a class="indexterm" href="monitoring-routers.html">Router und Switches überwachen</a>
</dt>
<dt>Windows-Rechner überwachen, <a class="indexterm" href="monitoring-windows.html">Windows-Maschinen überwachen</a>
</dt>
</dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>N</h3>
<dl>
<dt>Netzwork-Hosts</dt>
<dd><dl><dt>Ermitteln des Zustands und der Erreichbarkeit von Netzwerk-Hosts, <a class="indexterm" href="networkreachability.html">Ermitteln des Zustands und der Erreichbarkeit von Netzwerk-Hosts</a>
</dt></dl></dd>
<dt>notes_url_target=</dt>
<dd><dl><dt>Notes-URL-Ziel, <a class="indexterm" href="configcgi.html#configcgi-notes_url_target">Optionen CGI-Konfigurationsdatei</a>
</dt></dl></dd>
<dt>notification_timeout=</dt>
<dd><dl><dt>Benachrichtigungs-Zeitüberschreitung, <a class="indexterm" href="configmain.html#configmain-notification_timeout">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>NSClient++</dt>
<dd><dl><dt>Windows-Rechner überwachen, <a class="indexterm" href="monitoring-windows.html">Windows-Maschinen überwachen</a>
</dt></dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>O</h3>
<dl>
<dt>object_cache_file=</dt>
<dd><dl><dt>Objekt-Cache-Datei, <a class="indexterm" href="configmain.html#configmain-object_cache_file">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>Objektdefinitionen, <a class="indexterm" href="objectdefinitions.html">Objektdefinitionen</a>
</dt>
<dd><dl>
<dt>Command, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-command">Objektdefinitionen</a>
</dt>
<dt>Contact, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-contact">Objektdefinitionen</a>
</dt>
<dt>Contactgroup, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-contactgroup">Objektdefinitionen</a>
</dt>
<dt>Host, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-host">Objektdefinitionen</a>
</dt>
<dt>Host Dependency, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-hostdependency">Objektdefinitionen</a>
</dt>
<dt>Host Escalation, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-hostescalation">Objektdefinitionen</a>
</dt>
<dt>Host Extended Information, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-hostextinfo">Objektdefinitionen</a>
</dt>
<dt>Hostgroup, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-hostgroup">Objektdefinitionen</a>
</dt>
<dt>Retention, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-retention_notes">Objektdefinitionen</a>
</dt>
<dt>Service, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-service">Objektdefinitionen</a>
</dt>
<dt>Service Escalation, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-serviceescalation">Objektdefinitionen</a>
</dt>
<dt>Service Extended Information, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-hostextinfo">Objektdefinitionen</a>
</dt>
<dt>ServiceDependency, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-servicedependency">Objektdefinitionen</a>
</dt>
<dt>Servicegroup, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-servicegroup">Objektdefinitionen</a>
</dt>
<dt>Timeperiod, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-timeperiod">Objektdefinitionen</a>
</dt>
<dt>Zeitsparende Tricks für Objektdefinitionen, <a class="indexterm" href="objecttricks.html">Zeitsparende Tricks für Objektdefinitionen</a>
</dt>
</dl></dd>
<dt>Objektvererbung, <a class="indexterm" href="objectinheritance.html">Objektvererbung</a>
</dt>
<dd><dl>
<dt>additive Vererbung von Zeichenketten-Werten, <a class="indexterm" href="objectinheritance.html#objectinheritance-add_string">Objektvererbung</a>
</dt>
<dt>Implizite Vererbung, <a class="indexterm" href="objectinheritance.html#objectinheritance-implied_inheritance">Objektvererbung</a>
</dt>
<dt>Implizite/additive Vererbung in Eskalationen, <a class="indexterm" href="objectinheritance.html#objectinheritance-impliedescalations">Objektvererbung</a>
</dt>
<dt>mehrere Vererbungsquellen, <a class="indexterm" href="objectinheritance.html#objectinheritance-multiple_templates">Objektvererbung</a>
</dt>
<dt>Vererbung für Zeichenketten-Werte aufheben, <a class="indexterm" href="objectinheritance.html#objectinheritance-cancel_string">Objektvererbung</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">Optionen der Hauptkonfigurationsdatei</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">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>ochp_command=</dt>
<dd><dl><dt>Obsessive Compulsive Host Processor, <a class="indexterm" href="configmain.html#configmain-ochp_command">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>ochp_timeout=</dt>
<dd><dl><dt>Obsessive Compulsive Host Processor, <a class="indexterm" href="configmain.html#configmain-ochp_timeout">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>ocsp_command=</dt>
<dd><dl><dt>Obsessive Compulsive Service Processor, <a class="indexterm" href="configmain.html#configmain-ocsp_command">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>ocsp_timeout=</dt>
<dd><dl><dt>Obsessive Compulsive Service Processor, <a class="indexterm" href="configmain.html#configmain-ocsp_timeout">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>P</h3>
<dl>
<dt>Passive Host-Zustandsübersetzung, <a class="indexterm" href="passivestatetranslation.html">Passive Host-Zustandsübersetzung</a>
</dt>
<dt>Passive Prüfungen, <a class="indexterm" href="passivechecks.html">Passive Prüfungen (Passive Checks)</a>
</dt>
<dt>passive_host_checks_are_soft=</dt>
<dd><dl><dt>passive Host-Prüfungen sind SOFT, <a class="indexterm" href="configmain.html#configmain-passive_host_checks_are_soft">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>perfdata_timeout=</dt>
<dd><dl><dt>Performance-Daten-Verarbeitungsbefehl, <a class="indexterm" href="configmain.html#configmain-perfdata_timeout">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>Performance-Daten, <a class="indexterm" href="perfdata.html">Performance-Daten</a>
</dt>
<dd><dl><dt>grafische Darstellung von Performance-Informationen mit MRTG, <a class="indexterm" href="mrtggraphs.html">grafische Darstellung von Performance-Informationen mit MRTG</a>
</dt></dl></dd>
<dt>physical_html_path=</dt>
<dd><dl><dt>vollständiger (physical) HTML-Pfad, <a class="indexterm" href="configcgi.html#configcgi-physical_html_path">Optionen CGI-Konfigurationsdatei</a>
</dt></dl></dd>
<dt>ping_syntax=</dt>
<dd><dl><dt>Ping-Syntax, <a class="indexterm" href="configcgi.html#configcgi-ping_syntax">Optionen CGI-Konfigurationsdatei</a>
</dt></dl></dd>
<dt>Plugins</dt>
<dd><dl>
<dt>Icinga Plugin-API, <a class="indexterm" href="pluginapi.html">Nagios Plugin API</a>
</dt>
<dt>Icinga-Plugins, <a class="indexterm" href="plugins.html">Icinga Plugins</a>
</dt>
<dt>Wie benutze ich Plugin X?, <a class="indexterm" href="plugins.html#plugins-howto">Icinga Plugins</a>
</dt>
</dl></dd>
<dt>precached_object_file=</dt>
<dd><dl><dt>vorgespeicherte Objektdatei, <a class="indexterm" href="configmain.html#configmain-precached_object_file">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>process_performance_data=</dt>
<dd><dl><dt>Performance-Daten-Verarbeitung, <a class="indexterm" href="configmain.html#configmain-process_performance_data">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>Q</h3>
<dl>
<dt>Quickstart, <a class="indexterm" href="quickstart.html">Schnellstart-Installationsanleitungen</a>
</dt>
<dd><dl>
<dt>Icinga auf FreeBSD, <a class="indexterm" href="quickstart-icinga-freebsd.html">Icinga-Schnellstart auf FreeBSD</a>
</dt>
<dt>Icinga auf Linux, <a class="indexterm" href="quickstart-icinga.html">Icinga-Schnellstart auf Linux</a>
</dt>
<dt>Icinga mit IDOUtils, <a class="indexterm" href="quickstart-idoutils.html">Icinga-Schnellstart mit IDOUtils</a>
</dt>
</dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>R</h3>
<dl>
<dt>Redundanz</dt>
<dd><dl><dt>Redundante und Failover-Netzwerk-Überwachung, <a class="indexterm" href="redundancy.html">Redundante und Failover-Netzwerk-Überwachung</a>
</dt></dl></dd>
<dt>refresh_rate=</dt>
<dd><dl><dt>CGI-Refresh-Rate, <a class="indexterm" href="configcgi.html#configcgi-refresh_rate">Optionen CGI-Konfigurationsdatei</a>
</dt></dl></dd>
<dt>resource_file=</dt>
<dd><dl><dt>Ressource-Datei, <a class="indexterm" href="configmain.html#configmain-resource_file">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>retained_contact_host_attribute_mask=</dt>
<dd><dl><dt>aufbewahrte "Contact Host"-Attributmaske, <a class="indexterm" href="../../../../../"></a>
</dt></dl></dd>
<dt>retained_contact_service_attribute_mask=</dt>
<dd><dl><dt>aufbewahrte "Contact Service"-Attributmaske, <a class="indexterm" href="configmain.html#configmain-retained_contact_service_attribute_mask">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>retained_host_attribute_mask=</dt>
<dd><dl><dt>aufbewahrte Host-Attributmaske, <a class="indexterm" href="../../../../../"></a>
</dt></dl></dd>
<dt>retained_process_attribute_mask=</dt>
<dd><dl><dt>aufbewahrte Prozess-Attributmaske, <a class="indexterm" href="configmain.html#configmain-retained_process_service_attribute_mask">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>retained_process_host_attribute_mask=</dt>
<dd><dl><dt>aufbewahrte "Process Host"-Attributmaske, <a class="indexterm" href="../../../../../"></a>
</dt></dl></dd>
<dt>retained_scheduling_info=</dt>
<dd><dl><dt>benutzen von aufbewahrten Planungsinformationen, <a class="indexterm" href="configmain.html#configmain-use_retained_scheduling_info">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>retained_service_attribute_mask=</dt>
<dd><dl><dt>aufbewahrte Service-Attributmaske, <a class="indexterm" href="configmain.html#configmain-retained_service_attribute_mask">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>retain_state_information=</dt>
<dd><dl><dt>aufbewahren von Statusinformationen, <a class="indexterm" href="configmain.html#configmain-retain_state_information">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>retention_update_interval=</dt>
<dd><dl><dt>Aufbewahrungs-Aktualisierungsintervall, <a class="indexterm" href="configmain.html#configmain-retention_update_interval">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>S</h3>
<dl>
<dt>Scheduling</dt>
<dd><dl>
<dt>Host-Prüfungen, <a class="indexterm" href="checkscheduling.html#checkscheduling-host_checks">Service- und Host-Prüfungsplanung</a>
</dt>
<dt>Host-Prüfungsdirektiven, <a class="indexterm" href="checkscheduling.html#checkscheduling-host_inter_check_delay">Service- und Host-Prüfungsplanung</a>
</dt>
<dt>Initiale Planung, <a class="indexterm" href="checkscheduling.html#checkscheduling-initial_scheduling">Service- und Host-Prüfungsplanung</a>
</dt>
<dt>Inter-Check-Verzögerung (inter-check delay), <a class="indexterm" href="checkscheduling.html#checkscheduling-service_inter_check_delay">Service- und Host-Prüfungsplanung</a>
</dt>
<dt>Konfigurationsoptionen, <a class="indexterm" href="checkscheduling.html#checkscheduling-configuration_options">Service- und Host-Prüfungsplanung</a>
</dt>
<dt>Maximale Zahl gleichzeitiger Service-Prüfungen (maximum concurrent service checks), <a class="indexterm" href="checkscheduling.html#checkscheduling-max_concurrent_checks">Service- und Host-Prüfungsplanung</a>
</dt>
<dt>Normale Planung, <a class="indexterm" href="checkscheduling.html#checkscheduling-normal_scheduling">Service- und Host-Prüfungsplanung</a>
</dt>
<dt>Planung bei Problemen, <a class="indexterm" href="checkscheduling.html#checkscheduling-problem_scheduling">Service- und Host-Prüfungsplanung</a>
</dt>
<dt>Planungsbeispiel, <a class="indexterm" href="checkscheduling.html#checkscheduling-scheduling_example">Service- und Host-Prüfungsplanung</a>
</dt>
<dt>Planungsverzögerungen, <a class="indexterm" href="checkscheduling.html#checkscheduling-scheduling_delays">Service- und Host-Prüfungsplanung</a>
</dt>
<dt>Service- und Host-Prüfungsplanung, <a class="indexterm" href="checkscheduling.html#checkscheduling-check_scheduling">Service- und Host-Prüfungsplanung</a>
</dt>
<dt>Service-Definitionssoptionen, die die Planung beeinflussen, <a class="indexterm" href="checkscheduling.html#checkscheduling-service_options">Service- und Host-Prüfungsplanung</a>
</dt>
<dt>Service-Verschachtelung (service interleaving), <a class="indexterm" href="checkscheduling.html#checkscheduling-service_interleaving">Service- und Host-Prüfungsplanung</a>
</dt>
<dt>Zeitbeschränkungen, <a class="indexterm" href="checkscheduling.html#checkscheduling-time_restraints">Service- und Host-Prüfungsplanung</a>
</dt>
</dl></dd>
<dt>Schnellstart, <a class="indexterm" href="quickstart.html">Schnellstart-Installationsanleitungen</a>
</dt>
<dd><dl><dt>Icinga auf $name-linux;, <a class="indexterm" href="quickstart-icinga.html">Icinga-Schnellstart auf Linux</a>
</dt></dl></dd>
<dt>Schnellstartoptionen (Fast Startup Options), <a class="indexterm" href="faststartup.html">Schnellstart-Optionen</a>
</dt>
<dt>Service-Abhängigkeits-Definition (servicedependency-Definition), <a class="indexterm" href="objectdefinitions.html#objectdefinitions-servicedependency">Objektdefinitionen</a>
</dt>
<dt>Service-Abhängigkeits-Definitionen, <a class="indexterm" href="objecttricks.html#objecttricks-servicedependency">Zeitsparende Tricks für Objektdefinitionen</a>
</dt>
<dt>Service-Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-service">Objektdefinitionen</a>
</dt>
<dt>Service-Definitionen, <a class="indexterm" href="objecttricks.html#objecttricks-service">Zeitsparende Tricks für Objektdefinitionen</a>
</dt>
<dt>Service-Eskalations-Definitionen, <a class="indexterm" href="objecttricks.html#objecttricks-serviceescalation">Zeitsparende Tricks für Objektdefinitionen</a>
</dt>
<dt>Service-Prüfungen, <a class="indexterm" href="servicechecks.html">Service-Prüfungen (Service Checks)</a>
</dt>
<dt>Servicedependency-Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-servicedependency">Objektdefinitionen</a>
</dt>
<dt>Serviceescalation-Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-serviceescalation">Objektdefinitionen</a>
</dt>
<dt>Serviceextinfo-Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-serviceextinfo">Objektdefinitionen</a>
</dt>
<dt>Servicegroup-Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-servicegroup">Objektdefinitionen</a>
</dt>
<dt>Servicegruppen-Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-servicegroup">Objektdefinitionen</a>
</dt>
<dt>service_check_timeout=</dt>
<dd><dl><dt>Service-Prüfungs-Zeitüberschreitung, <a class="indexterm" href="configmain.html#configmain-service_check_timeout">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>service_check_timeout_state=</dt>
<dd><dl><dt>Service-Prüfungs-Timeout-Status, <a class="indexterm" href="configmain.html#configmain-service_check_timeout_state">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>service_freshness_check_interval=</dt>
<dd><dl><dt>Intervall Service-Frischeprüfung, <a class="indexterm" href="configmain.html#configmain-service_freshness_check_interval">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>service_interleave_factor=</dt>
<dd><dl><dt>Service-Verschachtelungsfaktor, <a class="indexterm" href="configmain.html#configmain-service_interleave_factor">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>service_inter_check_delay_method=</dt>
<dd><dl><dt>Verzögerungsmethode für Service-Prüfungen, <a class="indexterm" href="configmain.html#configmain-service_inter_check_delay_method">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>service_perfdata_command=</dt>
<dd><dl><dt>Service-Performance-Daten-Verarbeitung, <a class="indexterm" href="configmain.html#configmain-service_perfdata_command">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>service_perfdata_file=</dt>
<dd><dl><dt>Service-Performance-Daten-Datei, <a class="indexterm" href="configmain.html#configmain-service_perfdata_file">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>service_perfdata_file_mode=</dt>
<dd><dl><dt>Modus Service-Performance-Daten-Datei, <a class="indexterm" href="configmain.html#configmain-service_perfdata_file_mode">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>service_perfdata_file_processing_command=</dt>
<dd><dl><dt>Verarbeitungsbefehl Service-Performance-Daten-Datei, <a class="indexterm" href="configmain.html#configmain-service_perfdata_file_processing_command">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>service_perfdata_file_processing_interval=</dt>
<dd><dl><dt>Verarbeitungsintervall Service-Performance-Daten-Datei, <a class="indexterm" href="configmain.html#configmain-service_perfdata_file_processing_interval">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>service_perfdata_file_template=</dt>
<dd><dl><dt>Vorlage Service-Performance-Daten-Datei, <a class="indexterm" href="configmain.html#configmain-service_perfdata_file_template">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>Sicherheitsüberlegungen, <a class="indexterm" href="security.html">Sicherheitsüberlegungen</a>
</dt>
<dt>sleep_time=</dt>
<dd><dl><dt>Ruhezeit zwischen Prüfungen, <a class="indexterm" href="configmain.html#configmain-sleep_time">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>soft_state_dependencies=</dt>
<dd><dl><dt>Soft-Status-Abhängigkeiten, <a class="indexterm" href="configmain.html#configmain-soft_state_dependencies">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>splunk_url=</dt>
<dd><dl><dt>Splunk-URL, <a class="indexterm" href="configcgi.html#configcgi-splunk_url">Optionen CGI-Konfigurationsdatei</a>
</dt></dl></dd>
<dt>Sprunghafte Services (volatile services, <a class="indexterm" href="volatileservices.html">sprunghafte Services</a>
</dt>
<dt>state_retention_file=</dt>
<dd><dl><dt>Statusaufbewahrungsdatei, <a class="indexterm" href="configmain.html#configmain-state_retention_file">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>statusmap_background_image=</dt>
<dd><dl><dt>Statusmap-CGI-Hintergrundbild, <a class="indexterm" href="configcgi.html#configcgi-statusmap_background_image">Optionen CGI-Konfigurationsdatei</a>
</dt></dl></dd>
<dt>Statustypen, <a class="indexterm" href="statetypes.html">Statustypen</a>
</dt>
<dt>Statusverfolgung, <a class="indexterm" href="stalking.html">Status Stalking</a>
</dt>
<dt>status_file=</dt>
<dd><dl><dt>Status-Datei, <a class="indexterm" href="configmain.html#configmain-status_file">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>status_log=</dt>
<dd><dl><dt>Statusprotokoll, <a class="indexterm" href="../../../../../"></a>
</dt></dl></dd>
<dt>status_update_interval=</dt>
<dd><dl><dt>Statusdatei-Aktualisierungsintervall, <a class="indexterm" href="configmain.html#configmain-status_update_interval">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>syslog_local_facility=</dt>
<dd><dl><dt>Syslog-Local-Facility-Wert, <a class="indexterm" href="configmain.html#configmain-syslog_local_facility">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>Systemanforderungen, <a class="indexterm" href="about.html#requirements">Über 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>temp_file=</dt>
<dd><dl><dt>temporäre Datei, <a class="indexterm" href="configmain.html#configmain-temp_file">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>temp_path=</dt>
<dd><dl><dt>temporärer Pfad, <a class="indexterm" href="configmain.html#configmain-temp_path">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>Timeperiod-Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-timeperiod">Objektdefinitionen</a>
</dt>
<dt>translage_passive_host_checks=</dt>
<dd><dl><dt>übersetzen von passiven Host-Prüfergebnissen, <a class="indexterm" href="configmain.html#configmain-translate_passive_host_checks">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>U</h3>
<dl>
<dt>Überprüfen Ihrer Konfiguration, <a class="indexterm" href="verifyconfig.html">Überprüfen Ihrer Icinga-Konfiguration</a>
</dt>
<dt>Überwachung</dt>
<dd><dl>
<dt>Linux/Unix-Rechner überwachen, <a class="indexterm" href="monitoring-linux.html">Linux/Unix-Rechner überwachen</a>
</dt>
<dt>Netware-Server überwachen, <a class="indexterm" href="monitoring-netware.html">Netware-Server überwachen</a>
</dt>
<dt>Netzwerk-Drucker überwachen, <a class="indexterm" href="monitoring-printers.html">Netzwerk-Drucker überwachen</a>
</dt>
<dt>Öffentlich zugängliche Dienste überwachen, <a class="indexterm" href="monitoring-publicservices.html">Öffentlich zugängliche Dienste überwachen</a>
</dt>
<dt>Redundante und Failover-Netzwerk-Überwachung, <a class="indexterm" href="redundancy.html">Redundante und Failover-Netzwerk-Überwachung</a>
</dt>
<dt>Router und Switches überwachen, <a class="indexterm" href="monitoring-routers.html">Router und Switches überwachen</a>
</dt>
<dt>Windows-Rechner überwachen, <a class="indexterm" href="monitoring-windows.html">Windows-Maschinen überwachen</a>
</dt>
</dl></dd>
<dt>Upgrading IDOUtils, <a class="indexterm" href="upgrading_idoutils.html">IDOUtils-Datenbank aktualisieren</a>
</dt>
<dt>url_html_path=</dt>
<dd><dl><dt>URL-HTML-Pfad, <a class="indexterm" href="configcgi.html#configcgi-url_html_path">Optionen CGI-Konfigurationsdatei</a>
</dt></dl></dd>
<dt>use_aggressive_host_checking=</dt>
<dd><dl><dt>Aggressive Host-Prüfung, <a class="indexterm" href="configmain.html#configmain-use_aggressive_host_checking">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>use_authentication=</dt>
<dd><dl><dt>Nutzung der Authentifizierung, <a class="indexterm" href="configcgi.html#configcgi-use_authentication">Optionen CGI-Konfigurationsdatei</a>
</dt></dl></dd>
<dt>use_embedded_perl_implicitly=</dt>
<dd><dl><dt>implizite Benutzung von Embedded Perl, <a class="indexterm" href="configmain.html#configmain-use_embedded_perl_implicitly">Optionen der Hauptkonfigurationsdatei</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">Optionen der Hauptkonfigurationsdatei</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">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>use_retained_program_state=</dt>
<dd><dl><dt>benutzen des aufbewahrten Programmzustands, <a class="indexterm" href="configmain.html#configmain-use_retained_program_state">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>use_syslog=</dt>
<dd><dl><dt>Syslog-Protokollierung, <a class="indexterm" href="configmain.html#configmain-use_syslog">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>use_syslog_local_facility=</dt>
<dd><dl><dt>Syslog-Local-Facility-Protokollierung, <a class="indexterm" href="configmain.html#configmain-use_syslog_local_facility">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
<dt>use_timezone=</dt>
<dd><dl><dt>Zeitzone, <a class="indexterm" href="configmain.html#configmain-use_timezone">Optionen der Hauptkonfigurationsdatei</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">Optionen der Hauptkonfigurationsdatei</a>
</dt></dl></dd>
</dl>
</div>
<div class="indexdiv">
<h3>V</h3>
<dl><dt>Verteilte Überwachung, <a class="indexterm" href="distributed.html">Verteilte Überwachung</a>
</dt></dl>
</div>
<div class="indexdiv">
<h3>W</h3>
<dl>
<dt>Was ist Icinga?, <a class="indexterm" href="about.html">Über Icinga</a>
</dt>
<dt>Was ist neu in Icinga, <a class="indexterm" href="whatsnew.html">Was gibt es Neues in Icinga Core 1.0.2 und Icinga Web 1.0.1</a>
</dt>
<dt>Webinterface, <a class="indexterm" href="icinga-web-scratch.html">Installation des neuen Icinga Web Frontend</a>
</dt>
<dt>Wie benutze ich Plugin X?, <a class="indexterm" href="plugins.html#plugins-howto">Icinga Plugins</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>Z</h3>
<dl>
<dt>Zeitfenster (time periods), <a class="indexterm" href="timeperiods.html">Zeitfenster</a>
</dt>
<dt>Zeitfenster-Definition, <a class="indexterm" href="objectdefinitions.html#objectdefinitions-timeperiod">Objektdefinitionen</a>
</dt>
<dt>Zwischengespeicherte Prüfungen (Cached Checks), <a class="indexterm" href="cachedchecks.html">Zwischengespeicherte Prüfungen</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">Zurück</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">Zum Anfang</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>
|