[-]
[+]
|
Changed |
icinga.changes
|
|
[-]
[+]
|
Changed |
icinga.spec
^
|
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/.gitignore
^
|
@@ -1,26 +0,0 @@
-pkg
-subst
-pkginfo
-Prototype
-icinga.SPARC.pkg.tar.gz
-autom4te.cache
-config.log
-config.status
-daemon-init
-daemon-init-redhat
-rc.ido2db
-Makefile
-Debug
-.cproject
-.project
-.settings
-tags
-*.dSYM
-:2*
-.Apple*
-._*
-.DS_Store
-.deps/
-.libs/
-*.la
-*.lo
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/.gitmodules
^
|
@@ -1,6 +0,0 @@
-[submodule "module/icinga-api"]
- path = module/icinga-api
- url = git://git.icinga.org/icinga-api.git
-[submodule "docbook"]
- path = docbook
- url = git://git.icinga.org/icinga-doc.git
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/base/.gitignore
^
|
@@ -1,5 +0,0 @@
-*.o
-Makefile
-icinga
-icingastats
-perlxsi.c
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/cgi/.gitignore
^
|
@@ -1,3 +0,0 @@
-*.o
-*.cgi
-Makefile
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/common/.gitignore
^
|
@@ -1,2 +0,0 @@
-Makefile
-*.o
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/contrib/.gitignore
^
|
@@ -1,10 +0,0 @@
-perlxsi.c
-Makefile
-convertcfg
-mini_epn
-mini_epn.o
-new_mini_epn
-new_mini_epn.o
-perlxsi.o
-daemonchk.cgi
-daemonchk.o
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/contrib/eventhandlers/.gitignore
^
|
@@ -1 +0,0 @@
-submit_check_result
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/contrib/eventhandlers/disable_active_service_checks
^
|
@@ -1,26 +0,0 @@
-#!/bin/sh
-
-# Write a command to the Nagios command file to cause
-# it to disable active service checks. This can be
-# referred to as 'standby' mode in a redundant monitoring
-# environment.
-
-# Notes:
-# 1) This script is not intended to be used as an
-# event handler by itself. Instead, it is used by other
-# event handler scripts (like the redundancy examples).
-# 2) In order for Nagios to process any commands that
-# are written to the command file, you must enable
-# the check_external_commands option in the main
-# configuration file.
-
-printfcmd="/usr/bin/printf"
-
-CommandFile="/usr/local/nagios/var/rw/nagios.cmd"
-
-# get the current date/time in seconds since UNIX epoch
-datetime=`date +%s`
-
-# pipe the command to the command file
-`$printfcmd "[%i] STOP_EXECUTING_SVC_CHECKS\n" $datetime >> $CommandFile`
-
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/contrib/eventhandlers/disable_notifications
^
|
@@ -1,24 +0,0 @@
-#!/bin/sh
-
-# Write a command to the Nagios command file to cause
-# it to disable host and service notifications
-
-# Notes:
-# 1) This script is not intended to be used as an
-# event handler by itself. Instead, it is used by other
-# event handler scripts (like the redundancy examples).
-# 2) In order for Nagios to process any commands that
-# are written to the command file, you must enable
-# the check_external_commands option in the main
-# configuration file.
-
-printfcmd="/usr/bin/printf"
-
-CommandFile="/usr/local/nagios/var/rw/nagios.cmd"
-
-# get the current date/time in seconds since UNIX epoch
-datetime=`date +%s`
-
-# pipe the command to the command file
-`$printfcmd "[%i] DISABLE_NOTIFICATIONS;%i\n" $datetime $datetime >> $CommandFile`
-
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/contrib/eventhandlers/enable_active_service_checks
^
|
@@ -1,26 +0,0 @@
-#!/bin/sh
-
-# Write a command to the Nagios command file to cause
-# it to enable active service checks. This can be
-# referred to as 'active' mode in a redundant monitoring
-# environment.
-
-# Notes:
-# 1) This script is not intended to be used as an
-# event handler by itself. Instead, it is used by other
-# event handler scripts (like the redundancy examples).
-# 2) In order for Nagios to process any commands that
-# are written to the command file, you must enable
-# the check_external_commands option in the main
-# configuration file.
-
-printfcmd="/usr/bin/printf"
-
-CommandFile="/usr/local/nagios/var/rw/nagios.cmd"
-
-# get the current date/time in seconds since UNIX epoch
-datetime=`date +%s`
-
-# pipe the command to the command file
-`$printfcmd "[%i] START_EXECUTING_SVC_CHECKS\n" $datetime >> $CommandFile`
-
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/contrib/eventhandlers/enable_notifications
^
|
@@ -1,27 +0,0 @@
-#!/bin/sh
-
-# Write a command to the Nagios command file to cause
-# it to enable host and service notifications
-
-# Notes:
-# 1) This script is not intended to be used as an
-# event handler by itself. Instead, it is used by other
-# event handler scripts (like the redundancy examples).
-# 2) In order for Nagios to process any commands that
-# are written to the command file, you must enable
-# the check_external_commands option in the main
-# configuration file.
-
-printfcmd="/usr/bin/printf"
-
-CommandFile="/usr/local/nagios/var/rw/nagios.cmd"
-
-# get the current date/time in seconds since UNIX epoch
-datetime=`date +%s`
-
-# pipe the command to the command file
-`$printfcmd "[%i] ENABLE_NOTIFICATIONS;%i\n" $datetime $datetime >> $CommandFile`
-
-
-
-
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/docbook/.gitignore
^
|
@@ -1,7 +0,0 @@
-/home/croft/icinga-doc/html
-/home/croft/icinga-doc/de/*.xml~
-/home/croft/icinga-doc/en/*.xml~
-/home/croft/icinga-doc/en/*.xml~~
-/home/croft/icinga-doc/de/*.xml~~
-/home/croft/icinga-doc/en/*.old
-/home/croft/icinga-doc/de/*.old
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/html/.gitignore
^
|
@@ -1,8 +0,0 @@
-Makefile
-side.html
-config.inc.php
-index.html
-menu.html
-top.html
-icinga-api/parser/Ido2dbParser.php
-search.html
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/include/.gitignore
^
|
@@ -1,4 +0,0 @@
-locations.h
-config.h
-snprintf.h
-dh.h
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/module/.gitignore
^
|
@@ -1,2 +0,0 @@
-Makefile
-helloworld.o
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/module/icinga-api/.gitignore
^
|
@@ -1,7 +0,0 @@
-autom4te.cache/
-Makefile
-config.log
-config.status
-contrib/ido2dbparser/Ido2dbParser.php
-subst
-log/*.log
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/module/icinga-api/contrib/ido2dbparser/.gitignore
^
|
@@ -1 +0,0 @@
-Ido2dbParser.php
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/module/idoutils/.gitignore
^
|
@@ -1,8 +0,0 @@
-db/scripts/upgradedb
-db/scripts/prepsql
-db/scripts/installdb
-idomod.cfg-sample
-config/icinga.cfg
-config/idoutils.cfg
-config/ido2db.cfg-sample
-
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/module/idoutils/src/.gitignore
^
|
@@ -1,11 +0,0 @@
-db.o
-dbhandlers.o
-dbqueries.o
-file2sock
-ido2db
-idomod.o
-io.o
-log2ido
-sockdebug
-utils.o
-
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/sample-config/.gitignore
^
|
@@ -1,2 +0,0 @@
-*.cfg
-httpd.conf
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/sample-config/template-object/.gitignore
^
|
@@ -1 +0,0 @@
-*.cfg
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/t-tap/.gitignore
^
|
@@ -1,13 +0,0 @@
-Makefile
-test_logging
-test_events
-test_icinga_config
-test_timeperiods
-test_events
-test_checks
-test_xsddefault
-test_commands
-test_downtime
-test_strtoul
-*.dSYM
-*.o
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/t-tap/smallconfig/.gitignore
^
|
@@ -1 +0,0 @@
-objects.cache
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/t-tap/var/.gitignore
^
|
@@ -1 +0,0 @@
-icinga*.log
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/t/.gitignore
^
|
@@ -1,4 +0,0 @@
-var/objects.precache
-var/objects.precache.generated
-Makefile
-tests.log
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/t/var/.gitignore
^
|
@@ -1,3 +0,0 @@
-objects.precache
-objects.precache.generated
-status-generated.dat
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/t/var/spool/checkresults/.gitignore
^
|
@@ -1 +0,0 @@
-*
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/tap/.gitignore
^
|
@@ -1,42 +0,0 @@
-Makefile
-libtool
-src/.deps/
-src/Makefile
-tests/Makefile
-tests/diag/.deps/
-tests/diag/Makefile
-tests/fail/.deps/
-tests/fail/Makefile
-tests/ok/Makefile
-tests/ok/ok-hash/.deps/
-tests/ok/ok-hash/Makefile
-tests/ok/ok-numeric/.deps/
-tests/ok/ok-numeric/Makefile
-tests/ok/ok/.deps/
-tests/ok/ok/Makefile
-tests/pass/.deps/
-tests/pass/Makefile
-tests/plan/Makefile
-tests/plan/no-tests/.deps/
-tests/plan/no-tests/Makefile
-tests/plan/no_plan/.deps/
-tests/plan/no_plan/Makefile
-tests/plan/not-enough-tests/.deps/
-tests/plan/not-enough-tests/Makefile
-tests/plan/sane/.deps/
-tests/plan/sane/Makefile
-tests/plan/skip_all/.deps/
-tests/plan/skip_all/Makefile
-tests/plan/too-many-plans/.deps/
-tests/plan/too-many-plans/Makefile
-tests/plan/too-many-tests/.deps/
-tests/plan/too-many-tests/Makefile
-tests/skip/.deps/
-tests/skip/Makefile
-tests/todo/.deps/
-tests/todo/Makefile
-src/.libs/
-src/libtap.la
-src/tap.lo
-src/tap.o
-
|
[-]
[+]
|
Deleted |
icinga-1.4.0.tar.bz2/xdata/.gitignore
^
|
@@ -1,2 +0,0 @@
-Makefile
-*.o
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/Changelog
^
|
@@ -2,6 +2,21 @@
Icinga 1.4.x Change Log
#######################
+1.4.1 - ??/06/2011
+
+ENHANCEMENTS
+
+FIXES
+* core: fix retain status file over an init script reload #1579
+
+* classic ui: fix cross site scripting vulnerability in config.cgi on config expander arguments #1605
+* classic ui: better handling of writing to cgi.log in cmd.cgi #1161
+* classic ui: fixing tac.cgi header problems with counting and adding pending and descritptions #1505 #1506 #1508
+* classic ui: corrected behaviour of pending states in tac header #1508
+
+* install: fix event handlers cmd file location in contrib #1501
+
+
1.4.0 - 11/05/2011
ENHANCEMENTS
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/Makefile.in
^
|
@@ -75,7 +75,7 @@
###############################
# Global
###############################
-ICINGA_VERSION=1.4.0
+ICINGA_VERSION=1.4.1
CP=@CP@
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/THANKS
^
|
@@ -284,6 +284,7 @@
* Lou Sneddon
* Mark Spieth
* Stig Sandbeck
+* Stefan Schurtz
* Tim Starling
* Thomas Stolle
* Kevin Stone
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/base/icinga.c
^
|
@@ -3,7 +3,7 @@
* ICINGA.C - Core Program Code For Icinga
*
* Program: Icinga
- * Version: 1.4.0
+ * Version: 1.4.1
* License: GPL
* Copyright (c) 1999-2009 Ethan Galstad (http://www.nagios.org)
* Copyright (c) 2009-2011 Nagios Core Development Team and Community Contributors
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/base/icingastats.c
^
|
@@ -3,7 +3,7 @@
* ICINGASTATS.C - Displays Icinga Statistics
*
* Program: Icingastats
- * Version: 1.4.0
+ * Version: 1.4.1
* License: GPL
* Copyright (c) 2003-2008 Ethan Galstad (egalstad@nagios.org)
* Copyright (c) 2009-2011 Nagios Core Development Team and Community Contributors
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/cgi/cgiutils.c
^
|
@@ -132,6 +132,7 @@
int status_show_long_plugin_output=FALSE;
int tac_show_only_hard_state=FALSE;
int show_tac_header=TRUE;
+int show_tac_header_pending=TRUE;
int showlog_initial_states=TRUE;
int showlog_current_states=TRUE;
int tab_friendly_titles=FALSE;
@@ -558,6 +559,9 @@
else if(!strcmp(var,"show_tac_header"))
show_tac_header=(atoi(val)>0)?TRUE:FALSE;
+ else if(!strcmp(var,"show_tac_header_pending"))
+ show_tac_header_pending=(atoi(val)>0)?TRUE:FALSE;
+
else if(!strcmp(var,"showlog_initial_state") || !strcmp(var,"showlog_initial_states"))
showlog_initial_states=(atoi(val)>0)?TRUE:FALSE;
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/cgi/cmd.c
^
|
@@ -60,6 +60,7 @@
extern int enforce_comments_on_actions;
extern int date_format;
+extern int use_logging;
extern scheduled_downtime *scheduled_downtime_list;
extern comment *comment_list;
@@ -2810,7 +2811,6 @@
int write_command_to_file(char *cmd){
char *buffer;
- char *buffer2;
char *ip_address;
int dummy;
char *p;
@@ -2847,26 +2847,31 @@
return ERROR;
}
- /* get remote address */
- ip_address=strdup(getenv("REMOTE_ADDR"));
+ if(use_logging==TRUE) {
+ // find closing bracket in cmd line
+ p = strchr(cmd, ']');
+ // if found get everything after closing bracket
+ if (p!=NULL)
+ p+=2;
+ else // get complete command line
+ p=&cmd[0];
- /* write command to cgi log */
- dummy=asprintf(&buffer, "EXTERNAL COMMAND: %s;%s;", current_authdata.username,(ip_address!=NULL)?ip_address:"unknown remote address");
+ /* get remote address */
+ ip_address=strdup(getenv("REMOTE_ADDR"));
- p = index(cmd, ']');
- if (p!=NULL)
- p+=2;
- else
- p=&cmd[0];
-
- dummy=asprintf(&buffer2,"%s%s",buffer,p);
-
- write_to_cgi_log(buffer2);
+ /* construct log entry */
+ dummy=asprintf(&buffer, "EXTERNAL COMMAND: %s;%s;%s", current_authdata.username,(ip_address!=NULL)?ip_address:"unknown remote address",p);
- /* log comments if forced */
- if(enforce_comments_on_actions==TRUE) {
- dummy=asprintf(&buffer, "FORCED COMMENT: %s;%s;%s;%s", current_authdata.username,(ip_address!=NULL)?ip_address:"unknown remote address",comment_author,comment_data);
+ /* write command to cgi log */
write_to_cgi_log(buffer);
+
+ /* log comments if forced */
+ if(enforce_comments_on_actions==TRUE) {
+ my_free(buffer);
+ dummy=asprintf(&buffer, "FORCED COMMENT: %s;%s;%s;%s", current_authdata.username,(ip_address!=NULL)?ip_address:"unknown remote address",comment_author,comment_data);
+ write_to_cgi_log(buffer);
+ }
+ my_free(buffer);
}
/* write the command to file */
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/cgi/config.c
^
|
@@ -429,7 +429,7 @@
error=TRUE;
break;
}
- strncpy(to_expand,variables[x],MAX_COMMAND_BUFFER);
+ strncpy(to_expand,escape_string(variables[x]),MAX_COMMAND_BUFFER);
to_expand[MAX_COMMAND_BUFFER-1]='\0';
}
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/cgi/tac.c
^
|
@@ -77,6 +77,7 @@
extern int tac_show_only_hard_state;
extern int show_tac_header;
+extern int show_tac_header_pending;
void analyze_status_data(void);
@@ -152,6 +153,8 @@
int hosts_pending=0;
int hosts_pending_disabled=0;
+int hosts_pending_active=0;
+int hosts_pending_passive=0;
int hosts_up_disabled=0;
int hosts_up_unacknowledged=0;
int hosts_up=0;
@@ -170,29 +173,37 @@
int services_pending=0;
int services_pending_disabled=0;
+int services_pending_active=0;
+int services_pending_passive=0;
int services_ok_disabled=0;
int services_ok_unacknowledged=0;
int services_ok=0;
int services_warning_host_problem=0;
int services_warning_scheduled=0;
int services_warning_acknowledged=0;
+int services_warning_acknowledged_host_down=0;
int services_warning_unacknowledged=0;
int services_warning_disabled=0;
int services_warning_passive_unacknowledged=0;
+int services_warning_passive_unacknowledged_host_down=0;
int services_warning=0;
int services_unknown_host_problem=0;
int services_unknown_scheduled=0;
int services_unknown_acknowledged=0;
+int services_unknown_acknowledged_host_down=0;
int services_unknown_unacknowledged=0;
int services_unknown_disabled=0;
int services_unknown_passive_unacknowledged=0;
+int services_unknown_passive_unacknowledged_host_down=0;
int services_unknown=0;
int services_critical_host_problem=0;
int services_critical_scheduled=0;
int services_critical_acknowledged=0;
+int services_critical_acknowledged_host_down=0;
int services_critical_unacknowledged=0;
int services_critical_disabled=0;
int services_critical_passive_unacknowledged=0;
+int services_critical_passive_unacknowledged_host_down=0;
int services_critical=0;
int display_type=DISPLAY_HOSTS;
@@ -416,6 +427,7 @@
service *temp_service;
hoststatus *temp_hoststatus;
host *temp_host;
+ int host_is_down=FALSE;
int problem=TRUE;
/* check all services */
@@ -459,6 +471,7 @@
/********* CHECK STATUS ********/
problem=TRUE;
+ host_is_down=FALSE;
if(temp_servicestatus->status==SERVICE_OK){
if(temp_servicestatus->checks_enabled==FALSE)
@@ -471,6 +484,7 @@
temp_hoststatus=find_hoststatus(temp_servicestatus->host_name);
if(temp_hoststatus!=NULL && (temp_hoststatus->status==HOST_DOWN || temp_hoststatus->status==HOST_UNREACHABLE)){
services_warning_host_problem++;
+ host_is_down=TRUE;
problem=FALSE;
}
if(temp_servicestatus->scheduled_downtime_depth>0){
@@ -479,10 +493,15 @@
}
if(temp_servicestatus->problem_has_been_acknowledged==TRUE){
services_warning_acknowledged++;
+ if(host_is_down==TRUE)
+ services_warning_acknowledged_host_down++;
problem=FALSE;
}
- else if(temp_servicestatus->check_type==SERVICE_CHECK_PASSIVE)
+ else if(temp_servicestatus->check_type==SERVICE_CHECK_PASSIVE){
services_warning_passive_unacknowledged++;
+ if(host_is_down==TRUE)
+ services_warning_passive_unacknowledged_host_down++;
+ }
if(temp_servicestatus->checks_enabled==FALSE){
services_warning_disabled++;
@@ -497,6 +516,7 @@
temp_hoststatus=find_hoststatus(temp_servicestatus->host_name);
if(temp_hoststatus!=NULL && (temp_hoststatus->status==HOST_DOWN || temp_hoststatus->status==HOST_UNREACHABLE)){
services_unknown_host_problem++;
+ host_is_down=TRUE;
problem=FALSE;
}
if(temp_servicestatus->scheduled_downtime_depth>0){
@@ -505,10 +525,15 @@
}
if(temp_servicestatus->problem_has_been_acknowledged==TRUE){
services_unknown_acknowledged++;
+ if(host_is_down==TRUE)
+ services_unknown_acknowledged_host_down++;
problem=FALSE;
}
- else if(temp_servicestatus->check_type==SERVICE_CHECK_PASSIVE)
+ else if(temp_servicestatus->check_type==SERVICE_CHECK_PASSIVE){
services_unknown_passive_unacknowledged++;
+ if(host_is_down==TRUE)
+ services_unknown_passive_unacknowledged_host_down++;
+ }
if(temp_servicestatus->checks_enabled==FALSE){
services_unknown_disabled++;
@@ -523,6 +548,7 @@
temp_hoststatus=find_hoststatus(temp_servicestatus->host_name);
if(temp_hoststatus!=NULL && (temp_hoststatus->status==HOST_DOWN || temp_hoststatus->status==HOST_UNREACHABLE)){
services_critical_host_problem++;
+ host_is_down=TRUE;
problem=FALSE;
}
if(temp_servicestatus->scheduled_downtime_depth>0){
@@ -531,10 +557,15 @@
}
if(temp_servicestatus->problem_has_been_acknowledged==TRUE){
services_critical_acknowledged++;
+ if(host_is_down==TRUE)
+ services_critical_acknowledged_host_down++;
problem=FALSE;
}
- else if(temp_servicestatus->check_type==SERVICE_CHECK_PASSIVE)
+ else if(temp_servicestatus->check_type==SERVICE_CHECK_PASSIVE){
services_critical_passive_unacknowledged++;
+ if(host_is_down==TRUE)
+ services_critical_passive_unacknowledged_host_down++;
+ }
if(temp_servicestatus->checks_enabled==FALSE){
services_critical_disabled++;
@@ -546,8 +577,11 @@
}
else if(temp_servicestatus->status==SERVICE_PENDING){
- if(temp_servicestatus->checks_enabled==FALSE)
+ if(temp_servicestatus->checks_enabled==FALSE){
services_pending_disabled++;
+ services_pending_passive++;
+ }else
+ services_pending_active++;
services_pending++;
}
@@ -680,10 +714,13 @@
hosts_unreachable_unacknowledged++;
hosts_unreachable++;
}
-
+
else if(temp_hoststatus->status==HOST_PENDING){
- if(temp_hoststatus->checks_enabled==FALSE)
+ if(temp_hoststatus->checks_enabled==FALSE) {
hosts_pending_disabled++;
+ hosts_pending_passive++;
+ }else
+ hosts_pending_active++;
hosts_pending++;
}
@@ -949,7 +986,8 @@
printf("<div class='tacheader-status %s'>",tacheader_color);
printf("<a target='main' href='%s?hostgroup=all&style=hostdetail&hoststatustypes=%d&hostprops=%d' title='%s'> %d </a>/",STATUS_CGI,HOST_DOWN,HOST_NO_SCHEDULED_DOWNTIME|HOST_STATE_UNACKNOWLEDGED|HOST_CHECKS_ENABLED,TAC_TITLE_HOST_DOWN_UNACK_ACTIVE,hosts_down_unacknowledged);
printf("<a target='main' href='%s?hostgroup=all&style=hostdetail&hoststatustypes=%d&hostprops=%d' title='%s'> %d </a>/",STATUS_CGI,HOST_DOWN,HOST_NO_SCHEDULED_DOWNTIME|HOST_STATE_UNACKNOWLEDGED|HOST_PASSIVE_CHECK,TAC_TITLE_HOST_DOWN_UNACK_PASSIVE,hosts_down_passive_unacknowledged);
- printf("<a target='main' href='%s?hostgroup=all&style=hostdetail&hoststatustypes=%d&hostprops=%d' title='%s'> %d </a>DOWN </div>\n",STATUS_CGI,HOST_DOWN,HOST_NO_SCHEDULED_DOWNTIME|HOST_STATE_ACKNOWLEDGED,TAC_TITLE_HOST_DOWN_ACK,hosts_down_acknowledged);
+ printf("<a target='main' href='%s?hostgroup=all&style=hostdetail&hoststatustypes=%d&hostprops=%d' title='%s'> %d </a>",STATUS_CGI,HOST_DOWN,HOST_NO_SCHEDULED_DOWNTIME|HOST_STATE_ACKNOWLEDGED,TAC_TITLE_HOST_DOWN_ACK,hosts_down_acknowledged);
+ printf("<a target='main' href='%s?hostgroup=all&style=hostdetail&hoststatustypes=%d' title='%s'>DOWN</a> </div>\n",STATUS_CGI,HOST_DOWN,TAC_TITLE_HOST_DOWN_ALL);
printf("</div>\n");
printf("</td>\n");
@@ -969,15 +1007,40 @@
printf("<div class='tacheader-status %s'>",tacheader_color);
printf("<a target='main' href='%s?hostgroup=all&style=hostdetail&hoststatustypes=%d&hostprops=%d' title='%s'> %d </a>/",STATUS_CGI,HOST_UNREACHABLE,HOST_NO_SCHEDULED_DOWNTIME|HOST_STATE_UNACKNOWLEDGED|HOST_CHECKS_ENABLED,TAC_TITLE_HOST_UNREACHABLE_UNACK_ACTIVE,hosts_unreachable_unacknowledged);
printf("<a target='main' href='%s?hostgroup=all&style=hostdetail&hoststatustypes=%d&hostprops=%d' title='%s'> %d </a>/",STATUS_CGI,HOST_UNREACHABLE,HOST_NO_SCHEDULED_DOWNTIME|HOST_STATE_UNACKNOWLEDGED|HOST_PASSIVE_CHECK,TAC_TITLE_HOST_UNREACHABLE_UNACK_PASSIVE,hosts_unreachable_passive_unacknowledged);
- printf("<a target='main' href='%s?hostgroup=all&style=hostdetail&hoststatustypes=%d&hostprops=%d' title='%s'> %d </a>UNREACHABLE </div>\n",STATUS_CGI,HOST_UNREACHABLE,HOST_NO_SCHEDULED_DOWNTIME|HOST_STATE_ACKNOWLEDGED,TAC_TITLE_HOST_UNREACHABLE_ACK,hosts_unreachable_acknowledged);
+ printf("<a target='main' href='%s?hostgroup=all&style=hostdetail&hoststatustypes=%d&hostprops=%d' title='%s'> %d </a>",STATUS_CGI,HOST_UNREACHABLE,HOST_NO_SCHEDULED_DOWNTIME|HOST_STATE_ACKNOWLEDGED,TAC_TITLE_HOST_UNREACHABLE_ACK,hosts_unreachable_acknowledged);
+ printf("<a target='main' href='%s?hostgroup=all&style=hostdetail&hoststatustypes=%d' title='%s'>UNREACHABLE</a> </div>\n",STATUS_CGI,HOST_UNREACHABLE,TAC_TITLE_HOST_UNREACHABLE_ALL);
printf("</div>\n");
printf("</td>\n");
- printf("<td>\n");
+
+ /* Hosts PENDING */
+ if(show_tac_header_pending==TRUE){
+ printf("<td>\n");
+ printf("<div class='tacheader-overall-status-item'>\n");
+
+ if(hosts_pending_active > 0)
+ tacheader_color = "tacheader-status-pending color";
+ else if(hosts_pending_passive > 0)
+ tacheader_color = "tacheader-status-pending-passive color";
+ else
+ tacheader_color = "gray";
+
+ printf("<div class='tacheader-status %s'>",tacheader_color);
+ printf("<a target='main' href='%s?hostgroup=all&style=hostdetail&hoststatustypes=%d&hostprops=%d' title='%s'> %d </a>/",STATUS_CGI,HOST_PENDING,HOST_CHECKS_ENABLED,TAC_TITLE_HOST_PENDING_ACTIVE,hosts_pending_active);
+ printf("<a target='main' href='%s?hostgroup=all&style=hostdetail&hoststatustypes=%d&hostprops=%d' title='%s'> %d </a>",STATUS_CGI,HOST_PENDING,HOST_CHECKS_DISABLED,TAC_TITLE_HOST_PENDING_PASSIVE,hosts_pending_passive);
+ printf("<a target='main' href='%s?hostgroup=all&style=hostdetail&hoststatustypes=%d' title='%s'>PENDING</a> </div>\n",STATUS_CGI,HOST_PENDING,TAC_TITLE_HOST_PENDING_ALL);
+ printf("</div>\n");
+ printf("</td>\n");
+ }
/* Hosts IN TOTAL */
+ printf("<td>\n");
printf("<div class='tacheader-overall-status-item'>\n");
printf("<div class='tacheader-status gray'>");
- printf("<a target='main' href='%s?hostgroup=all&style=hostdetail' title='%s'> %d IN TOTAL </a></div>\n",STATUS_CGI,TAC_TITLE_HOST_TOTAL_ALL,total_hosts);
+ if(show_tac_header_pending==TRUE)
+ printf("<a target='main' href='%s?hostgroup=all&style=hostdetail&hoststatustypes=%d' title='%s'> %d /</a>",STATUS_CGI,HOST_UNREACHABLE|HOST_DOWN|HOST_PENDING,TAC_TITLE_HOST_PROBLEM_ALL,hosts_down+hosts_unreachable+hosts_pending);
+ else
+ printf("<a target='main' href='%s?hostgroup=all&style=hostdetail&hoststatustypes=%d' title='%s'> %d /</a>",STATUS_CGI,HOST_UNREACHABLE|HOST_DOWN,TAC_TITLE_HOST_PROBLEM_ALL,hosts_down+hosts_unreachable);
+ printf("<a target='main' href='%s?hostgroup=all&style=hostdetail' title='%s'> %d TOTAL </a></div>\n",STATUS_CGI,TAC_TITLE_HOST_TOTAL_ALL,total_hosts);
printf("</div>\n");
printf("</td>\n");
@@ -985,6 +1048,7 @@
printf("</table></td>\n");
printf("</tr>\n");
+
/* 2. Row Services */
printf("<tr>\n");
printf("<td><img src='%s%s' alt='Services' width='16' height='16' align='right' /></td>\n",url_images_path,TAC_HEADER_SERVICE_ICON);
@@ -1005,17 +1069,18 @@
if(services_warning_unacknowledged > 0)
tacheader_color = "tacheader-status-warning color";
- else if(services_warning_passive_unacknowledged > 0)
+ else if(services_warning_passive_unacknowledged - services_warning_passive_unacknowledged_host_down > 0)
tacheader_color = "tacheader-status-warning-passive color";
- else if(services_warning_acknowledged > 0)
+ else if(services_warning_acknowledged - services_warning_acknowledged_host_down> 0)
tacheader_color = "tacheader-status-warning-acknowledged color";
else
tacheader_color = "gray";
printf("<div class='tacheader-status %s'>",tacheader_color);
printf("<a target='main' href='%s?host=all&type=detail&servicestatustypes=%d&hoststatustypes=%d&serviceprops=%d' title='%s'> %d </a>/",STATUS_CGI,SERVICE_WARNING,HOST_UP|HOST_PENDING,SERVICE_NO_SCHEDULED_DOWNTIME|SERVICE_STATE_UNACKNOWLEDGED|SERVICE_CHECKS_ENABLED,TAC_TITLE_SVC_WARNING_UNACK_ACTIVE,services_warning_unacknowledged);
- printf("<a target='main' href='%s?host=all&type=detail&servicestatustypes=%d&hoststatustypes=%d&serviceprops=%d' title='%s'> %d </a>/",STATUS_CGI,SERVICE_WARNING,HOST_UP|HOST_PENDING,SERVICE_NO_SCHEDULED_DOWNTIME|SERVICE_STATE_UNACKNOWLEDGED|SERVICE_PASSIVE_CHECK,TAC_TITLE_SVC_WARNING_UNACK_PASSIVE,services_warning_passive_unacknowledged);
- printf("<a target='main' href='%s?host=all&type=detail&servicestatustypes=%d&hoststatustypes=%d&serviceprops=%d' title='%s'> %d </a>WARNING </div>\n",STATUS_CGI,SERVICE_WARNING,HOST_UP|HOST_PENDING,SERVICE_NO_SCHEDULED_DOWNTIME|SERVICE_STATE_ACKNOWLEDGED,TAC_TITLE_SVC_WARNING_ACK,services_warning_acknowledged);
+ printf("<a target='main' href='%s?host=all&type=detail&servicestatustypes=%d&hoststatustypes=%d&serviceprops=%d' title='%s'> %d </a>/",STATUS_CGI,SERVICE_WARNING,HOST_UP|HOST_PENDING,SERVICE_NO_SCHEDULED_DOWNTIME|SERVICE_STATE_UNACKNOWLEDGED|SERVICE_PASSIVE_CHECK,TAC_TITLE_SVC_WARNING_UNACK_PASSIVE,services_warning_passive_unacknowledged-services_warning_passive_unacknowledged_host_down);
+ printf("<a target='main' href='%s?host=all&type=detail&servicestatustypes=%d&hoststatustypes=%d&serviceprops=%d' title='%s'> %d </a>",STATUS_CGI,SERVICE_WARNING,HOST_UP|HOST_PENDING,SERVICE_NO_SCHEDULED_DOWNTIME|SERVICE_STATE_ACKNOWLEDGED,TAC_TITLE_SVC_WARNING_ACK,services_warning_acknowledged-services_warning_acknowledged_host_down);
+ printf("<a target='main' href='%s?host=all&type=detail&servicestatustypes=%d&hoststatustypes=%d' title='%s'>WARNING</a> </div>\n",STATUS_CGI,SERVICE_WARNING,HOST_UP|HOST_PENDING,TAC_TITLE_SVC_WARNING_ALL);
printf("</div>\n");
printf("</td>\n");
@@ -1025,17 +1090,18 @@
if(services_critical_unacknowledged > 0)
tacheader_color = "tacheader-status-critical color";
- else if(services_critical_passive_unacknowledged > 0)
+ else if(services_critical_passive_unacknowledged - services_critical_passive_unacknowledged_host_down > 0)
tacheader_color = "tacheader-status-critical-passive color";
- else if(services_critical_acknowledged > 0)
+ else if(services_critical_acknowledged - services_critical_acknowledged_host_down> 0)
tacheader_color = "tacheader-status-critical-acknowledged color";
else
tacheader_color = "gray";
printf("<div class='tacheader-status %s'>",tacheader_color);
printf("<a target='main' href='%s?host=all&type=detail&servicestatustypes=%d&hoststatustypes=%d&serviceprops=%d' title='%s'> %d </a>/",STATUS_CGI,SERVICE_CRITICAL,HOST_UP|HOST_PENDING,SERVICE_NO_SCHEDULED_DOWNTIME|SERVICE_STATE_UNACKNOWLEDGED|SERVICE_CHECKS_ENABLED,TAC_TITLE_SVC_CRITICAL_UNACK_ACTIVE,services_critical_unacknowledged);
- printf("<a target='main' href='%s?host=all&type=detail&servicestatustypes=%d&hoststatustypes=%d&serviceprops=%d' title='%s'> %d </a>/",STATUS_CGI,SERVICE_CRITICAL,HOST_UP|HOST_PENDING,SERVICE_NO_SCHEDULED_DOWNTIME|SERVICE_STATE_UNACKNOWLEDGED|SERVICE_PASSIVE_CHECK,TAC_TITLE_SVC_CRITICAL_UNACK_PASSIVE,services_critical_passive_unacknowledged);
- printf("<a target='main' href='%s?host=all&type=detail&servicestatustypes=%d&hoststatustypes=%d&serviceprops=%d' title='%s'> %d </a>CRITICAL </div>\n",STATUS_CGI,SERVICE_CRITICAL,HOST_UP|HOST_PENDING,SERVICE_NO_SCHEDULED_DOWNTIME|SERVICE_STATE_ACKNOWLEDGED,TAC_TITLE_SVC_CRITICAL_ACK,services_critical_acknowledged);
+ printf("<a target='main' href='%s?host=all&type=detail&servicestatustypes=%d&hoststatustypes=%d&serviceprops=%d' title='%s'> %d </a>/",STATUS_CGI,SERVICE_CRITICAL,HOST_UP|HOST_PENDING,SERVICE_NO_SCHEDULED_DOWNTIME|SERVICE_STATE_UNACKNOWLEDGED|SERVICE_PASSIVE_CHECK,TAC_TITLE_SVC_CRITICAL_UNACK_PASSIVE,services_critical_passive_unacknowledged-services_critical_passive_unacknowledged_host_down);
+ printf("<a target='main' href='%s?host=all&type=detail&servicestatustypes=%d&hoststatustypes=%d&serviceprops=%d' title='%s'> %d </a>",STATUS_CGI,SERVICE_CRITICAL,HOST_UP|HOST_PENDING,SERVICE_NO_SCHEDULED_DOWNTIME|SERVICE_STATE_ACKNOWLEDGED,TAC_TITLE_SVC_CRITICAL_ACK,services_critical_acknowledged-services_critical_acknowledged_host_down);
+ printf("<a target='main' href='%s?host=all&type=detail&servicestatustypes=%d&hoststatustypes=%d' title='%s'>CRITICAL</a> </div>\n",STATUS_CGI,SERVICE_CRITICAL,HOST_UP|HOST_PENDING,TAC_TITLE_SVC_CRITICAL_ALL);
printf("</div>\n");
printf("</td>\n");
@@ -1045,25 +1111,51 @@
if(services_unknown_unacknowledged > 0)
tacheader_color = "tacheader-status-unknown color";
- else if(services_unknown_passive_unacknowledged > 0)
+ else if(services_unknown_passive_unacknowledged - services_unknown_passive_unacknowledged_host_down > 0)
tacheader_color = "tacheader-status-unknown-passive color";
- else if(services_unknown_acknowledged > 0)
+ else if(services_unknown_acknowledged - services_unknown_acknowledged_host_down> 0)
tacheader_color = "tacheader-status-unknown-acknowledged color";
else
tacheader_color = "gray";
printf("<div class='tacheader-status %s'>",tacheader_color);
printf("<a target='main' href='%s?host=all&type=detail&servicestatustypes=%d&hoststatustypes=%d&serviceprops=%d' title='%s'> %d </a>/",STATUS_CGI,SERVICE_UNKNOWN,HOST_UP|HOST_PENDING,SERVICE_NO_SCHEDULED_DOWNTIME|SERVICE_STATE_UNACKNOWLEDGED|SERVICE_CHECKS_ENABLED,TAC_TITLE_SVC_UNKNOWN_UNACK_ACTIVE,services_unknown_unacknowledged);
- printf("<a target='main' href='%s?host=all&type=detail&servicestatustypes=%d&hoststatustypes=%d&serviceprops=%d' title='%s'> %d </a>/",STATUS_CGI,SERVICE_UNKNOWN,HOST_UP|HOST_PENDING,SERVICE_NO_SCHEDULED_DOWNTIME|SERVICE_STATE_UNACKNOWLEDGED|SERVICE_PASSIVE_CHECK,TAC_TITLE_SVC_UNKNOWN_UNACK_PASSIVE,services_unknown_passive_unacknowledged);
- printf("<a target='main' href='%s?host=all&type=detail&servicestatustypes=%d&hoststatustypes=%d&serviceprops=%d' title='%s'> %d </a>UNKNOWN </div>\n",STATUS_CGI,SERVICE_UNKNOWN,HOST_UP|HOST_PENDING,SERVICE_NO_SCHEDULED_DOWNTIME|SERVICE_STATE_ACKNOWLEDGED,TAC_TITLE_SVC_UNKNOWN_ACK,services_unknown_acknowledged);
+ printf("<a target='main' href='%s?host=all&type=detail&servicestatustypes=%d&hoststatustypes=%d&serviceprops=%d' title='%s'> %d </a>/",STATUS_CGI,SERVICE_UNKNOWN,HOST_UP|HOST_PENDING,SERVICE_NO_SCHEDULED_DOWNTIME|SERVICE_STATE_UNACKNOWLEDGED|SERVICE_PASSIVE_CHECK,TAC_TITLE_SVC_UNKNOWN_UNACK_PASSIVE,services_unknown_passive_unacknowledged-services_unknown_passive_unacknowledged_host_down);
+ printf("<a target='main' href='%s?host=all&type=detail&servicestatustypes=%d&hoststatustypes=%d&serviceprops=%d' title='%s'> %d </a>",STATUS_CGI,SERVICE_UNKNOWN,HOST_UP|HOST_PENDING,SERVICE_NO_SCHEDULED_DOWNTIME|SERVICE_STATE_ACKNOWLEDGED,TAC_TITLE_SVC_UNKNOWN_ACK,services_unknown_acknowledged-services_unknown_acknowledged_host_down);
+ printf("<a target='main' href='%s?host=all&type=detail&servicestatustypes=%d&hoststatustypes=%d' title='%s'>UNKNOWN</a> </div>\n",STATUS_CGI,SERVICE_UNKNOWN,HOST_UP|HOST_PENDING,TAC_TITLE_SVC_UNKNOWN_ALL);
printf("</div>\n");
printf("</td>\n");
+ /* Services PENDING */
+ if(show_tac_header_pending==TRUE){
+ printf("<td>\n");
+ printf("<div class='tacheader-overall-status-item'>\n");
+
+ if(services_pending_active > 0)
+ tacheader_color = "tacheader-status-pending color";
+ else if(services_pending_passive > 0)
+ tacheader_color = "tacheader-status-pending-passive color";
+ else
+ tacheader_color = "gray";
+
+ printf("<div class='tacheader-status %s'>",tacheader_color);
+ printf("<a target='main' href='%s?host=all&type=detail&servicestatustypes=%d&hoststatustypes=%d&serviceprops=%d' title='%s'> %d </a>/",STATUS_CGI,SERVICE_PENDING,HOST_UP|HOST_PENDING,SERVICE_CHECKS_ENABLED,TAC_TITLE_SVC_PENDING_ACTIVE,services_pending_active);
+ printf("<a target='main' href='%s?host=all&type=detail&servicestatustypes=%d&hoststatustypes=%d&serviceprops=%d' title='%s'> %d </a>",STATUS_CGI,SERVICE_PENDING,HOST_UP|HOST_PENDING,SERVICE_CHECKS_DISABLED,TAC_TITLE_SVC_PENDING_PASSIVE,services_pending_passive);
+ printf("<a target='main' href='%s?host=all&type=detail&servicestatustypes=%d&hoststatustypes=%d' title='%s'>PENDING</a> </div>\n",STATUS_CGI,SERVICE_PENDING,HOST_UP|HOST_PENDING,TAC_TITLE_SVC_PENDING_ALL);
+ printf("</div>\n");
+ printf("</td>\n");
+ }
+
/* Services IN TOTAL */
printf("<td>\n");
printf("<div class='tacheader-overall-status-item'>\n");
printf("<div class='tacheader-status gray'>");
- printf("<a target='main' href='%s?host=all' title='%s'> %d IN TOTAL </a></div>\n",STATUS_CGI,TAC_TITLE_SVC_TOTAL_ALL,total_services);
+ if(show_tac_header_pending==TRUE)
+ printf("<a target='main' href='%s?host=all&type=detail&servicestatustypes=%d' title='%s'> %d /</a>",STATUS_CGI,SERVICE_UNKNOWN|SERVICE_CRITICAL|SERVICE_WARNING|SERVICE_PENDING,TAC_TITLE_SVC_PROBLEM_ALL,services_warning+services_unknown+services_critical+services_pending);
+ else
+ printf("<a target='main' href='%s?host=all&type=detail&servicestatustypes=%d' title='%s'> %d /</a>",STATUS_CGI,SERVICE_UNKNOWN|SERVICE_CRITICAL|SERVICE_WARNING,TAC_TITLE_SVC_PROBLEM_ALL,services_warning+services_unknown+services_critical);
+ printf("<a target='main' href='%s?host=all&type=detail&hoststatustypes=%d' title='%s'> %d /</a>",STATUS_CGI,HOST_UP|HOST_PENDING,TAC_TITLE_SVC_NON_HOST_PROBLEM_ALL,total_services - services_unknown_host_problem - services_critical_host_problem - services_warning_host_problem);
+ printf("<a target='main' href='%s?host=all' title='%s'> %d TOTAL </a></div>\n",STATUS_CGI,TAC_TITLE_SVC_TOTAL_ALL,total_services);
printf("</div>\n");
printf("</td>\n");
@@ -1079,36 +1171,44 @@
printf("<td><img src='%s%s' width='16' height='16' alt='Hosts (active/passive)' /></td>\n",url_images_path,TAC_HEADER_HOST_ICON);
printf("<td>\n");
printf("<div class='tacheader-monitor'>");
- printf("<a target='main' href='%s?hostgroup=all&hostprops=%d&style=hostdetail'>%d</a> / <a target='main' href='%s?hostgroup=all&hostprops=%d&style=hostdetail'>%d</a></div>\n",STATUS_CGI,HOST_ACTIVE_CHECK,total_active_host_checks,STATUS_CGI,HOST_PASSIVE_CHECK,total_passive_host_checks);
+ printf("<a target='main' href='%s?hostgroup=all&hostprops=%d&style=hostdetail' title='Hosts Active'>%d</a> / <a target='main' href='%s?hostgroup=all&hostprops=%d&style=hostdetail' title='Hosts Passive'>%d</a></div>\n",STATUS_CGI,HOST_ACTIVE_CHECK,total_active_host_checks,STATUS_CGI,HOST_PASSIVE_CHECK,total_passive_host_checks);
printf("</td>\n");
printf("<td><img src='%s%s' width='16' height='16' alt='Services (active/passive)' /></td>\n",url_images_path,TAC_HEADER_SERVICE_ICON);
printf("<td>\n");
printf("<div class='tacheader-monitor'>");
- printf("<a target='main' href='%s?host=all&serviceprops=%d'>%d</a> / <a target='main' href='%s?host=all&serviceprops=%d'>%d</a></div>\n",STATUS_CGI,SERVICE_ACTIVE_CHECK,total_active_service_checks,STATUS_CGI,SERVICE_PASSIVE_CHECK,total_passive_service_checks);
+ printf("<a target='main' href='%s?host=all&serviceprops=%d' title='Services Active'>%d</a> / <a target='main' href='%s?host=all&serviceprops=%d' title='Services Passive'>%d</a></div>\n",STATUS_CGI,SERVICE_ACTIVE_CHECK,total_active_service_checks,STATUS_CGI,SERVICE_PASSIVE_CHECK,total_passive_service_checks);
printf("</td>\n");
printf("</tr>\n");
printf("<tr>\n");
- printf("<td><img src='%s%s' width='16' height='16' alt='Host Execution Time (min/avg/max)' /></td>\n",url_images_path,TAC_HEADER_EXECUTION_ICON);
+ printf("<td><img src='%s%s' width='16' height='16' alt='Host Execution Time (min/max/avg)' /></td>\n",url_images_path,TAC_HEADER_EXECUTION_ICON);
printf("<td nowrap='nowrap'>\n");
printf("<div class='tacheader-monitor'>");
- printf("<a target='main' href='%s?type=%d'>%.2f / %.2f / %.3f s</a></div>\n",EXTINFO_CGI,DISPLAY_PERFORMANCE,min_host_execution_time,max_host_execution_time,average_host_execution_time);
- printf("</td>\n");
- printf("<td><img src='%s%s' width='16' height='16' alt='Service Execution Time (min/avg/max)' /></td>\n",url_images_path,TAC_HEADER_EXECUTION_ICON);
+ printf("<a target='main' href='%s?type=%d' title='Min Host Check Execution Time'>%.2f </a>/",EXTINFO_CGI,DISPLAY_PERFORMANCE,min_host_execution_time);
+ printf("<a target='main' href='%s?type=%d' title='Max Host Check Execution Time'> %.2f </a>/",EXTINFO_CGI,DISPLAY_PERFORMANCE,max_host_execution_time);
+ printf("<a target='main' href='%s?type=%d' title='Average Host Check Execution Time'> %.3f </a>s",EXTINFO_CGI,DISPLAY_PERFORMANCE,average_host_execution_time);
+ printf("</div>\n</td>\n");
+ printf("<td><img src='%s%s' width='16' height='16' alt='Service Execution Time (min/max/avg)' /></td>\n",url_images_path,TAC_HEADER_EXECUTION_ICON);
printf("<td nowrap='nowrap'>\n");
printf("<div class='tacheader-monitor'>");
- printf("<a target='main' href='%s?type=%d'>%.2f / %.2f / %.3f s</a></div>\n",EXTINFO_CGI,DISPLAY_PERFORMANCE,min_service_execution_time,max_service_execution_time,average_service_execution_time);
- printf("</td>\n");
+ printf("<a target='main' href='%s?type=%d' title='Min Service Check Execution Time'>%.2f </a>/",EXTINFO_CGI,DISPLAY_PERFORMANCE,min_service_execution_time);
+ printf("<a target='main' href='%s?type=%d' title='Max Service Check Execution Time'> %.2f </a>/",EXTINFO_CGI,DISPLAY_PERFORMANCE,max_service_execution_time);
+ printf("<a target='main' href='%s?type=%d' title='Average Service Check Execution Time'> %.3f </a>s",EXTINFO_CGI,DISPLAY_PERFORMANCE,average_service_execution_time);
+ printf("</div>\n</td>\n");
printf("</tr>\n");
printf("<tr>\n");
- printf("<td><img src='%s%s' width='16' height='16' alt='Host Latency (min/avg/max)' /></td>\n",url_images_path,TAC_HEADER_LATENCY_ICON);
+ printf("<td><img src='%s%s' width='16' height='16' alt='Host Latency (min/max/avg)' /></td>\n",url_images_path,TAC_HEADER_LATENCY_ICON);
printf("<td nowrap='nowrap'>\n");
printf("<div class='tacheader-monitor'>");
- printf("<a target='main' href='%s?type=%d'>%.2f / %.2f / %.3f s</a></div>\n",EXTINFO_CGI,DISPLAY_PERFORMANCE,min_host_latency,max_host_latency,average_host_latency);
- printf("</td>\n");
- printf("<td><img src='%s%s' width='16' height='16' alt='Service Latency (min/avg/max)' /></td>\n",url_images_path,TAC_HEADER_LATENCY_ICON);
+ printf("<a target='main' href='%s?type=%d' title='Min Host Check Latency'>%.2f </a>/",EXTINFO_CGI,DISPLAY_PERFORMANCE,min_host_latency);
+ printf("<a target='main' href='%s?type=%d' title='Max Host Check Latency'> %.2f </a>/",EXTINFO_CGI,DISPLAY_PERFORMANCE,max_host_latency);
+ printf("<a target='main' href='%s?type=%d' title='Average Host Check Latency'> %.3f </a>s",EXTINFO_CGI,DISPLAY_PERFORMANCE,average_host_latency);
+ printf("</div>\n</td>\n");
+ printf("<td><img src='%s%s' width='16' height='16' alt='Service Latency (min/max/avg)' /></td>\n",url_images_path,TAC_HEADER_LATENCY_ICON);
printf("<td nowrap='nowrap'>\n");
printf("<div class='tacheader-monitor'>");
- printf("<a target='main' href='%s?type=%d'>%.2f / %.2f / %.3f s</a></div>\n",EXTINFO_CGI,DISPLAY_PERFORMANCE,min_service_latency,max_service_latency,average_service_latency);
+ printf("<a target='main' href='%s?type=%d' title='Min Service Check Latency'>%.2f </a>/",EXTINFO_CGI,DISPLAY_PERFORMANCE,min_service_latency);
+ printf("<a target='main' href='%s?type=%d' title='Max Service Check Latency'> %.2f </a>/",EXTINFO_CGI,DISPLAY_PERFORMANCE,max_service_latency);
+ printf("<a target='main' href='%s?type=%d' title='Average Service Check Latency'> %.3f </a>s",EXTINFO_CGI,DISPLAY_PERFORMANCE,average_service_latency);
printf("</td>\n");
printf("</tr>\n");
printf("</table></td>\n");
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/configure
^
|
@@ -2399,7 +2399,7 @@
PKG_NAME=icinga-core
-PKG_VERSION="1.4.0"
+PKG_VERSION="1.4.1"
PKG_HOME_URL="http://www.icinga.org/"
PKG_REL_DATE="05-11-2011"
@@ -8273,7 +8273,13 @@
perl subst $srcdir/include/locations.h
+
perl subst $srcdir/contrib/eventhandlers/submit_check_result
+perl subst $srcdir/contrib/eventhandlers/disable_active_service_checks
+perl subst $srcdir/contrib/eventhandlers/disable_notifications
+perl subst $srcdir/contrib/eventhandlers/enable_active_service_checks
+perl subst $srcdir/contrib/eventhandlers/enable_notifications
+
perl subst $srcdir/html/index.html
perl subst $srcdir/html/menu.html
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/configure.in
^
|
@@ -9,7 +9,7 @@
AC_PREFIX_DEFAULT(/usr/local/icinga)
PKG_NAME=icinga-core
-PKG_VERSION="1.4.0"
+PKG_VERSION="1.4.1"
PKG_HOME_URL="http://www.icinga.org/"
PKG_REL_DATE="05-11-2011"
@@ -1171,7 +1171,13 @@
perl subst $srcdir/include/locations.h
+
perl subst $srcdir/contrib/eventhandlers/submit_check_result
+perl subst $srcdir/contrib/eventhandlers/disable_active_service_checks
+perl subst $srcdir/contrib/eventhandlers/disable_notifications
+perl subst $srcdir/contrib/eventhandlers/enable_active_service_checks
+perl subst $srcdir/contrib/eventhandlers/enable_notifications
+
perl subst $srcdir/html/index.html
perl subst $srcdir/html/menu.html
|
[-]
[+]
|
Added |
icinga-1.4.1.tar.bz2/contrib/eventhandlers/disable_active_service_checks.in
^
|
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+# Write a command to the Nagios command file to cause
+# it to disable active service checks. This can be
+# referred to as 'standby' mode in a redundant monitoring
+# environment.
+
+# Notes:
+# 1) This script is not intended to be used as an
+# event handler by itself. Instead, it is used by other
+# event handler scripts (like the redundancy examples).
+# 2) In order for Nagios to process any commands that
+# are written to the command file, you must enable
+# the check_external_commands option in the main
+# configuration file.
+
+printfcmd="/usr/bin/printf"
+
+CommandFile="@EXTCMDFILEDIR@/icinga.cmd"
+
+# get the current date/time in seconds since UNIX epoch
+datetime=`date +%s`
+
+# pipe the command to the command file
+`$printfcmd "[%i] STOP_EXECUTING_SVC_CHECKS\n" $datetime >> $CommandFile`
+
|
[-]
[+]
|
Added |
icinga-1.4.1.tar.bz2/contrib/eventhandlers/disable_notifications.in
^
|
@@ -0,0 +1,24 @@
+#!/bin/sh
+
+# Write a command to the Nagios command file to cause
+# it to disable host and service notifications
+
+# Notes:
+# 1) This script is not intended to be used as an
+# event handler by itself. Instead, it is used by other
+# event handler scripts (like the redundancy examples).
+# 2) In order for Nagios to process any commands that
+# are written to the command file, you must enable
+# the check_external_commands option in the main
+# configuration file.
+
+printfcmd="/usr/bin/printf"
+
+CommandFile="@EXTCMDFILEDIR@/icinga.cmd"
+
+# get the current date/time in seconds since UNIX epoch
+datetime=`date +%s`
+
+# pipe the command to the command file
+`$printfcmd "[%i] DISABLE_NOTIFICATIONS;%i\n" $datetime $datetime >> $CommandFile`
+
|
[-]
[+]
|
Added |
icinga-1.4.1.tar.bz2/contrib/eventhandlers/enable_active_service_checks.in
^
|
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+# Write a command to the Nagios command file to cause
+# it to enable active service checks. This can be
+# referred to as 'active' mode in a redundant monitoring
+# environment.
+
+# Notes:
+# 1) This script is not intended to be used as an
+# event handler by itself. Instead, it is used by other
+# event handler scripts (like the redundancy examples).
+# 2) In order for Nagios to process any commands that
+# are written to the command file, you must enable
+# the check_external_commands option in the main
+# configuration file.
+
+printfcmd="/usr/bin/printf"
+
+CommandFile="@EXTCMDFILEDIR@/icinga.cmd"
+
+# get the current date/time in seconds since UNIX epoch
+datetime=`date +%s`
+
+# pipe the command to the command file
+`$printfcmd "[%i] START_EXECUTING_SVC_CHECKS\n" $datetime >> $CommandFile`
+
|
[-]
[+]
|
Added |
icinga-1.4.1.tar.bz2/contrib/eventhandlers/enable_notifications.in
^
|
@@ -0,0 +1,27 @@
+#!/bin/sh
+
+# Write a command to the Nagios command file to cause
+# it to enable host and service notifications
+
+# Notes:
+# 1) This script is not intended to be used as an
+# event handler by itself. Instead, it is used by other
+# event handler scripts (like the redundancy examples).
+# 2) In order for Nagios to process any commands that
+# are written to the command file, you must enable
+# the check_external_commands option in the main
+# configuration file.
+
+printfcmd="/usr/bin/printf"
+
+CommandFile="@EXTCMDFILEDIR@/icinga.cmd"
+
+# get the current date/time in seconds since UNIX epoch
+datetime=`date +%s`
+
+# pipe the command to the command file
+`$printfcmd "[%i] ENABLE_NOTIFICATIONS;%i\n" $datetime $datetime >> $CommandFile`
+
+
+
+
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/daemon-init.in
^
|
@@ -130,7 +130,7 @@
exit 1
else
echo "Icinga PID $IcingaPID not running. Removing lockfile."
- rm -f $IcingaStatusFile $IcingaRunFile $IcingaLockDir/$IcingaLockFile $IcingaCommandFile
+ rm -f $IcingaRunFile $IcingaLockDir/$IcingaLockFile
fi
fi
@@ -180,7 +180,7 @@
echo 'Warning - icinga did not exit in a timely manner. Please try again.'
else
echo 'Stopping icinga done.'
- rm -f $IcingaStatusFile $IcingaRunFile $IcingaLockDir/$IcingaLockFile $IcingaCommandFile
+ rm -f $IcingaRunFile $IcingaLockDir/$IcingaLockFile
fi
;;
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/docbook/de/configcgi.xml
^
|
@@ -1564,7 +1564,7 @@
</row>
<row>
- <entry align="left" valign="top"><para>Example:</para></entry>
+ <entry align="left" valign="top"><para>Beispiel:</para></entry>
<entry><para> <emphasis condition="red" role="color"> <emphasis role="bold">show_tac_header=0</emphasis> </emphasis>
</para></entry>
@@ -1630,6 +1630,39 @@
<para>Diese Option ist verfügbar ab &name-icinga; 1.4.</para>
</note>
+ <para><anchor xml:id="configcgi-show_tac_header_pending" /> <emphasis role="bold">Pending-Anzahlen in Tactical Overview-Header anzeigen</emphasis></para>
+
+ <informaltable frame="none">
+ <tgroup cols="2">
+ <colspec colname="c1" colwidth="5*" />
+
+ <colspec colname="c2" colwidth="50*" />
+
+ <tbody>
+ <row>
+ <entry align="left" valign="top"><para>Format:</para></entry>
+
+ <entry><para> <emphasis role="bold">show_tac_header_pending=<0|1></emphasis> </para></entry>
+ </row>
+
+ <row>
+ <entry align="left" valign="top"><para>Beispiel:</para></entry>
+
+ <entry><para> <emphasis condition="red" role="color"> <emphasis role="bold">show_tac_header_pending=0</emphasis> </emphasis>
+ </para></entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+
+ <para>Diese Option aktiviert die Anzeige von Pending-Anzahlen im Tactical-Overview-Header. Wenn Ihre Auflösung kleiner als 1024x768 und
+ diese Option aktiviert ist, dann passen die taktischen Informationen ggf. nicht in den verfügbaren Platz. Diese Option ist per Default
+ deaktiviert.</para>
+
+ <note>
+ <para>Diese Option ist verfügbar ab &name-icinga; 1.4.1.</para>
+ </note>
+
<indexterm zone="configcgi">
<primary>CGI-Konfiguration</primary>
@@ -1861,4 +1894,10 @@
<secondary>Tactical Overview-Header anzeigen</secondary>
</indexterm>
+
+ <indexterm zone="configcgi-show_tac_header_pending">
+ <primary>show_tac_header_pending=</primary>
+
+ <secondary>Pending-Anzahlen in Tactical Overview-Header anzeigen</secondary>
+ </indexterm>
</section>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/docbook/de/quickstart-idoutils-freebsd.xml
^
|
@@ -178,13 +178,25 @@
<para>Führen Sie das &name-icinga;-configure-Script aus. Durch die Nutzung des --help-Flags erhalten Sie Hilfe zu den Optionen.</para>
<programlisting> #> ./configure --with-command-group=icinga-cmd \
- --enable-idoutils CPPFLAGS=-I/usr/local/include
+ --enable-idoutils CPPFLAGS=-I/usr/local/include \
+ CFLAGS="-I/usr/local/include -L/usr/local/lib" \
--with-dbi-lib=/usr/local/lib --with-dbi-inc=/usr/local/include</programlisting>
<important>
<para>Das angehängte <emphasis>CPPFLAGS=-I/usr/local/include</emphasis> ist wichtig für die &name-idoutils; bzw. das
Broker-Modul.</para>
</important>
+ <note>
+ <para>Sie sollten <literal>CFLAGS=..."</literal> wie oben angegeben benutzen. Anderenfalls finden Sie ggf. später folgende Zeilen in
+ <filename>icinga.log</filename>:
+ <screen> Error: Module ‘/usr/local/icinga/bin/idomod.o’ is using an old or unspecified version of the event broker API. Module will
+ be unloaded.
+ Event broker module ‘/usr/local/icinga/bin/idomod.o’ deinitialized successfully.</screen>
+ Mehr Informationen zu diesem Fehler finden Sie <link xlink:href="http://www.mazej.net/icinga-idomod-o-is-using-an-old-or-unspecified-version-of-the-event-broker-api/">
+ hier</link>.
+ </para>
+ </note>
+
<para><emphasis role="bold">Mit SSL-Verschlüsselung:</emphasis></para>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/docbook/en/configcgi.xml
^
|
@@ -234,6 +234,10 @@
<listitem>
<para><link linkend="configcgi-show_tac_header">Show Header with Tactical Information</link></para>
</listitem>
+
+ <listitem>
+ <para><link linkend="configcgi-show_tac_header_pending">Show Header with Pending Counts</link></para>
+ </listitem>
</itemizedlist>
<para><anchor xml:id="configcgi-main_cfg_file" /> <emphasis role="bold">Main Configuration File Location</emphasis></para>
@@ -1279,7 +1283,7 @@
</tgroup>
</informaltable>
- <para>This options allows you to specify if the tactical overview should only show hard states on hosts and services. If you set this
+ <para>This option allows you to specify if the tactical overview should only show hard states on hosts and services. If you set this
option to 1 the tactical overview shows only states on hosts and services. By default disabled, all states will be shown.</para>
<para><anchor xml:id="configcgi-enable_splunk_integration" /> <emphasis role="bold">Splunk Integration Option</emphasis></para>
@@ -1905,6 +1909,38 @@
<para>This option is available starting with &name-icinga; 1.4.</para>
</note>
+ <para><anchor xml:id="configcgi-show_tac_header_pending" /> <emphasis role="bold">Show header including pending counts</emphasis></para>
+
+ <informaltable frame="none">
+ <tgroup cols="2">
+ <colspec colname="c1" colwidth="5*" />
+
+ <colspec colname="c2" colwidth="50*" />
+
+ <tbody>
+ <row>
+ <entry align="left" valign="top"><para>Format:</para></entry>
+
+ <entry><para> <emphasis role="bold">show_tac_header_pending=<0|1></emphasis> </para></entry>
+ </row>
+
+ <row>
+ <entry align="left" valign="top"><para>Example:</para></entry>
+
+ <entry><para> <emphasis condition="red" role="color"> <emphasis role="bold">show_tac_header_pending=0</emphasis> </emphasis>
+ </para></entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+
+ <para>This option enables the display of pending counts in the tac header. If your display is less than 1024x768 and this is enabled,
+ the tactical information may not fit well in the top frame. By default it is disabled.</para>
+
+ <note>
+ <para>This option is available starting with &name-icinga; 1.4.1</para>
+ </note>
+
<indexterm zone="config_cgi">
<primary>CGI Configuration File Options</primary>
</indexterm>
@@ -2134,4 +2170,10 @@
<secondary>Show header with tactical information</secondary>
</indexterm>
+
+ <indexterm zone="configcgi-show_tac_header_pending">
+ <primary>show_tac_header_pending=</primary>
+
+ <secondary>Show header including pending counts</secondary>
+ </indexterm>
</section>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/docbook/en/quickstart-idoutils-freebsd.xml
^
|
@@ -176,12 +176,23 @@
<programlisting> #> ./configure --with-command-group=icinga-cmd \
--enable-idoutils CPPFLAGS=-I/usr/local/include \
+ CFLAGS="-I/usr/local/include -L/usr/local/lib" \
--with-dbi-lib=/usr/local/lib --with-dbi-inc=/usr/local/include</programlisting>
<important>
<para>Appending <emphasis>CPPFLAGS=-I/usr/local/include</emphasis> is important for the &name-idoutils; and the broker modul
respectively.</para>
</important>
+ <note>
+ <para>You should include <literal>CFLAGS=..."</literal> like specified above. Otherwise you might get the following lines in
+ <filename>icinga.log</filename>:
+ <screen> Error: Module ‘/usr/local/icinga/bin/idomod.o’ is using an old or unspecified version of the event broker API. Module will
+ be unloaded.
+ Event broker module ‘/usr/local/icinga/bin/idomod.o’ deinitialized successfully.</screen>
+ More details on this error can be found <link xlink:href="http://www.mazej.net/icinga-idomod-o-is-using-an-old-or-unspecified-version-of-the-event-broker-api/">
+ here</link>.
+ </para>
+ </note>
<para><emphasis role="bold">With SSL-encryption:</emphasis></para>
|
|
Changed |
icinga-1.4.1.tar.bz2/docbook/images/distributed.png
^
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/about.html
^
|
@@ -133,17 +133,17 @@
<p>Icinga und das Icinga-Logo sind Markenzeichen von icinga.org. Alle anderen Markenzeichen, Dienstmarkenzeichen,
registrierte Markenzeichen und registrierte Dienstmarkenzeichen können das Eigentum der jeweiligen Inhaber sein.</p>
- <a class="indexterm" name="id1455095"></a>
+ <a class="indexterm" name="id5669774"></a>
- <a class="indexterm" name="id1455105"></a>
+ <a class="indexterm" name="id5669783"></a>
- <a class="indexterm" name="id1455115"></a>
+ <a class="indexterm" name="id5669794"></a>
- <a class="indexterm" name="id1455125"></a>
+ <a class="indexterm" name="id5669803"></a>
- <a class="indexterm" name="id1455135"></a>
+ <a class="indexterm" name="id5669813"></a>
- <a class="indexterm" name="id1455144"></a>
+ <a class="indexterm" name="id5669824"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/activechecks.html
^
|
@@ -79,8 +79,8 @@
durchführen, um den genauen Status eines bestimmten Netzwerk-Segments zu ermitteln. Prüfungen nach Bedarf finden sich auch in
der <a class="link" href="dependencychecks.html" title="Vorausschauende Abhängigkeitsprüfungen">vorausschauenden Abhängigkeitsprüfung</a>s-Logik, um sicherzustellen, dass Icinga
möglichst genaue Statusinformationen hat.</p>
- <a class="indexterm" name="id1526354"></a>
- <a class="indexterm" name="id1526362"></a>
+ <a class="indexterm" name="id5741533"></a>
+ <a class="indexterm" name="id5741531"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/adaptive.html
^
|
@@ -108,8 +108,8 @@
Befehlsdefinitionen während der Laufzeit verarbeitet werden, finden Sie in der Dokumentation zu <a class="link" href="macros.html" title="Makros verstehen und wie sie arbeiten">Makros</a>.</p>
</li>
</ul></div>
- <a class="indexterm" name="id1552641"></a>
- <a class="indexterm" name="id1552649"></a>
+ <a class="indexterm" name="id5767941"></a>
+ <a class="indexterm" name="id5767956"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/addons.html
^
|
@@ -141,55 +141,55 @@
Icinga dienen. Neben MySQL werden auch Oracle und PostgreSQL unterstützt.</p>
<p>Das IDOUtils-Addon und die Dokumentation finden Sie unter <a class="link" href="http://docs.icinga.org/" target="_top">http://docs.icinga.org/</a>.</p>
- <a class="indexterm" name="id1563318"></a>
+ <a class="indexterm" name="id5778652"></a>
- <a class="indexterm" name="id1563332"></a>
+ <a class="indexterm" name="id5778671"></a>
- <a class="indexterm" name="id1563346"></a>
+ <a class="indexterm" name="id5778672"></a>
- <a class="indexterm" name="id1563360"></a>
+ <a class="indexterm" name="id5778721"></a>
- <a class="indexterm" name="id1563370"></a>
+ <a class="indexterm" name="id5778729"></a>
- <a class="indexterm" name="id1563383"></a>
+ <a class="indexterm" name="id5778744"></a>
- <a class="indexterm" name="id1563393"></a>
+ <a class="indexterm" name="id5778752"></a>
- <a class="indexterm" name="id1563406"></a>
+ <a class="indexterm" name="id5778768"></a>
- <a class="indexterm" name="id1563416"></a>
+ <a class="indexterm" name="id5778776"></a>
- <a class="indexterm" name="id1563430"></a>
+ <a class="indexterm" name="id5778792"></a>
- <a class="indexterm" name="id1563440"></a>
+ <a class="indexterm" name="id5778799"></a>
- <a class="indexterm" name="id1563453"></a>
+ <a class="indexterm" name="id5778815"></a>
- <a class="indexterm" name="id1563463"></a>
+ <a class="indexterm" name="id5778824"></a>
- <a class="indexterm" name="id1563476"></a>
+ <a class="indexterm" name="id5778838"></a>
- <a class="indexterm" name="id1563486"></a>
+ <a class="indexterm" name="id5778847"></a>
- <a class="indexterm" name="id1563499"></a>
+ <a class="indexterm" name="id5778862"></a>
- <a class="indexterm" name="id1563509"></a>
+ <a class="indexterm" name="id5778870"></a>
- <a class="indexterm" name="id1563522"></a>
+ <a class="indexterm" name="id5778885"></a>
- <a class="indexterm" name="id1563532"></a>
+ <a class="indexterm" name="id5778894"></a>
- <a class="indexterm" name="id1563546"></a>
+ <a class="indexterm" name="id5778909"></a>
- <a class="indexterm" name="id1563556"></a>
+ <a class="indexterm" name="id5778917"></a>
- <a class="indexterm" name="id1563569"></a>
+ <a class="indexterm" name="id5778929"></a>
- <a class="indexterm" name="id1563579"></a>
+ <a class="indexterm" name="id5778931"></a>
- <a class="indexterm" name="id1563592"></a>
+ <a class="indexterm" name="id5778954"></a>
- <a class="indexterm" name="id1563602"></a>
+ <a class="indexterm" name="id5778956"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/beginners.html
^
|
@@ -64,7 +64,7 @@
finden Sie unter <a class="link" href="http://www.Icinga-portal.de" target="_top">http://www.Icinga-portal.de</a></p>
</li>
</ol></div>
- <a class="indexterm" name="id1455596"></a>
+ <a class="indexterm" name="id5670277"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/cachedchecks.html
^
|
@@ -199,8 +199,8 @@
um die cached-check-horizon-Variablen entsprechend für Ihre Situation anzupassen. Überwachen Sie weiterhin die MRTG-Graphen, um
zu sehen, wie die Änderung der horizon-Variablen die zwischengespeicherten Prüf-Statistiken beeinflusst. Ändern und wiederholen
Sie, falls erforderlich.</p>
- <a class="indexterm" name="id1553342"></a>
- <a class="indexterm" name="id1553348"></a>
+ <a class="indexterm" name="id5768654"></a>
+ <a class="indexterm" name="id5768660"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/cgiauth.html
^
|
@@ -292,14 +292,14 @@
nicht einen sicheren Web-Server haben und sicher sind, dass sich jeder, der die CGIs aufruft, in irgendeiner Weise
authentifiziert hat. Wenn Sie diese Variable definieren, dann wird jeder, der sich am Web-Server authentifiziert, alle Rechte
dieses Benutzers erben!</p>
- <a class="indexterm" name="id1504644"></a>
- <a class="indexterm" name="id1504650"></a>
- <a class="indexterm" name="id1504659"></a>
- <a class="indexterm" name="id1504670"></a>
- <a class="indexterm" name="id1504677"></a>
- <a class="indexterm" name="id1504688"></a>
- <a class="indexterm" name="id1504697"></a>
- <a class="indexterm" name="id1504709"></a>
+ <a class="indexterm" name="id5719737"></a>
+ <a class="indexterm" name="id5719747"></a>
+ <a class="indexterm" name="id5719758"></a>
+ <a class="indexterm" name="id5719766"></a>
+ <a class="indexterm" name="id5719776"></a>
+ <a class="indexterm" name="id5719767"></a>
+ <a class="indexterm" name="id5719795"></a>
+ <a class="indexterm" name="id5719805"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/cgiincludes.html
^
|
@@ -75,7 +75,7 @@
<p>Sie sind nicht gezwungen, irgendwelche angepassten Kopf- und Fußzeilen zu benutzen. Sie können nur eine globale Kopfzeile
benutzen, wenn Sie möchten. Sie können nur CGI-spezifische Kopfzeilen und eine globale Fußzeile benutzen, wenn Sie möchten. Ganz
wie Sie wollen. Wirklich.</p>
- <a class="indexterm" name="id1554986"></a>
+ <a class="indexterm" name="id5770307"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/cgiparams.html
^
|
@@ -2630,9 +2630,9 @@
finden Sie im <a class="link" href="https://wiki.icinga.org/display/howtos/Using+JSON+export+in+Classic-UI" target="_top">Icinga-Wiki</a>.</p>
- <a class="indexterm" name="id1540055"></a>
+ <a class="indexterm" name="id5755274"></a>
- <a class="indexterm" name="id1540070"></a>
+ <a class="indexterm" name="id5755293"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/cgis.html
^
|
@@ -795,37 +795,37 @@
</li>
</ul></div>
- <a class="indexterm" name="id1532814"></a>
+ <a class="indexterm" name="id5748059"></a>
- <a class="indexterm" name="id1532826"></a>
+ <a class="indexterm" name="id5748004"></a>
- <a class="indexterm" name="id1532838"></a>
+ <a class="indexterm" name="id5748084"></a>
- <a class="indexterm" name="id1532852"></a>
+ <a class="indexterm" name="id5748098"></a>
- <a class="indexterm" name="id1532865"></a>
+ <a class="indexterm" name="id5748111"></a>
- <a class="indexterm" name="id1532877"></a>
+ <a class="indexterm" name="id5748125"></a>
- <a class="indexterm" name="id1532891"></a>
+ <a class="indexterm" name="id5748138"></a>
- <a class="indexterm" name="id1532906"></a>
+ <a class="indexterm" name="id5748151"></a>
- <a class="indexterm" name="id1532919"></a>
+ <a class="indexterm" name="id5748165"></a>
- <a class="indexterm" name="id1532932"></a>
+ <a class="indexterm" name="id5748178"></a>
- <a class="indexterm" name="id1532947"></a>
+ <a class="indexterm" name="id5748192"></a>
- <a class="indexterm" name="id1532960"></a>
+ <a class="indexterm" name="id5748206"></a>
- <a class="indexterm" name="id1532973"></a>
+ <a class="indexterm" name="id5748219"></a>
- <a class="indexterm" name="id1532985"></a>
+ <a class="indexterm" name="id5748233"></a>
- <a class="indexterm" name="id1532986"></a>
+ <a class="indexterm" name="id5748246"></a>
- <a class="indexterm" name="id1533012"></a>
+ <a class="indexterm" name="id5748260"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/cgisecurity.html
^
|
@@ -205,11 +205,11 @@
Sie</strong></span> ! Vielleicht durch das Anhören eines Podcasts wie z.B. "<a class="link" href="http://www.grc.com/securitynow.htm" target="_top">Security Now!</a>".</p>
</li>
</ul></div>
- <a class="indexterm" name="id1558818"></a>
- <a class="indexterm" name="id1558827"></a>
- <a class="indexterm" name="id1558838"></a>
- <a class="indexterm" name="id1558846"></a>
- <a class="indexterm" name="id1558858"></a>
+ <a class="indexterm" name="id5774094"></a>
+ <a class="indexterm" name="id5774163"></a>
+ <a class="indexterm" name="id5774174"></a>
+ <a class="indexterm" name="id5774182"></a>
+ <a class="indexterm" name="id5774141"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/ch03.html
^
|
@@ -35,21 +35,21 @@
<dt><span class="section"><a href="configobject.html">Ãœberblick Objektkonfiguration</a></span></dt>
<dt><span class="section"><a href="objectdefinitions.html">Objektdefinitionen</a></span></dt>
<dd><dl>
-<dt><span class="section"><a href="objectdefinitions.html#id1483847">Host-Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1483849">Hostgruppen-Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1486350">Service-Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1486882">Servicegruppen-Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1489192">Kontakt-Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1489753">Kontaktgruppen-Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1490954">Zeitfenster-Definition (timeperiod)</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1491345">Befehls-Definition (command)</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1491805">Service-Abhängigkeits-Definition (servicedependency)</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1492209">Serviceeskalations-Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1493058">Host-Abhängigkeits-Definition (hostdependency)</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1494201">Host-Eskalations-Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1494903">erweiterte Hostinformations-Definition (hostextinfo)</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1495827">erweiterte Serviceinformations-Definition (serviceextinfo)</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1496606">Module-Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5698705">Host-Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5698708">Hostgruppen-Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5701230">Service-Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5701768">Servicegruppen-Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5704087">Kontakt-Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5704642">Kontaktgruppen-Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5705860">Zeitfenster-Definition (timeperiod)</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5706256">Befehls-Definition (command)</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5706709">Service-Abhängigkeits-Definition (servicedependency)</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5707115">Serviceeskalations-Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5707972">Host-Abhängigkeits-Definition (hostdependency)</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5709124">Host-Eskalations-Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5709830">erweiterte Hostinformations-Definition (hostextinfo)</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5710762">erweiterte Serviceinformations-Definition (serviceextinfo)</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5711541">Module-Definition</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="customobjectvars.html">Maßgeschneiderte Objektvariablen</a></span></dt>
<dt><span class="section"><a href="configcgi.html">Optionen CGI-Konfigurationsdatei</a></span></dt>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/ch12.html
^
|
@@ -32,32 +32,32 @@
<dl>
<dt><span class="section"><a href="db_intro.html">Einleitung</a></span></dt>
<dd><dl>
-<dt><span class="section"><a href="db_intro.html#id1573753">Zweck</a></span></dt>
-<dt><span class="section"><a href="db_intro.html#id1574484">Design-Ãœberblick</a></span></dt>
-<dt><span class="section"><a href="db_intro.html#id1574573">Instanzen</a></span></dt>
-<dt><span class="section"><a href="db_intro.html#id1574646">Installation</a></span></dt>
+<dt><span class="section"><a href="db_intro.html#id5789165">Zweck</a></span></dt>
+<dt><span class="section"><a href="db_intro.html#id5789884">Design-Ãœberblick</a></span></dt>
+<dt><span class="section"><a href="db_intro.html#id5789942">Instanzen</a></span></dt>
+<dt><span class="section"><a href="db_intro.html#id5790049">Installation</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="components.html">Komponenten</a></span></dt>
<dd><dl>
-<dt><span class="section"><a href="components.html#id1574672">Ãœberblick</a></span></dt>
-<dt><span class="section"><a href="components.html#id1574719">IDOMOD</a></span></dt>
-<dt><span class="section"><a href="components.html#id1574808">LOG2IDO</a></span></dt>
-<dt><span class="section"><a href="components.html#id1574834">FILE2SOCK</a></span></dt>
+<dt><span class="section"><a href="components.html#id5789968">Ãœberblick</a></span></dt>
+<dt><span class="section"><a href="components.html#id5790120">IDOMOD</a></span></dt>
+<dt><span class="section"><a href="components.html#id5790188">LOG2IDO</a></span></dt>
+<dt><span class="section"><a href="components.html#id5790153">FILE2SOCK</a></span></dt>
<dt><span class="section"><a href="components.html#IDO2DB-description">IDO2DB. IDO2DB</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="example-configs.html">Beispielkonfigurationen</a></span></dt>
<dd><dl>
-<dt><span class="section"><a href="example-configs.html#id1574970">Einzelner Server, einzelne Instanz</a></span></dt>
-<dt><span class="section"><a href="example-configs.html#id1575084">Einzelner Server, mehrere Instanzen</a></span></dt>
-<dt><span class="section"><a href="example-configs.html#id1575178">Einzelner Server, einzelne Instanz, Log-Datei-Import</a></span></dt>
+<dt><span class="section"><a href="example-configs.html#id5790375">Einzelner Server, einzelne Instanz</a></span></dt>
+<dt><span class="section"><a href="example-configs.html#id5790485">Einzelner Server, mehrere Instanzen</a></span></dt>
+<dt><span class="section"><a href="example-configs.html#id5790578">Einzelner Server, einzelne Instanz, Log-Datei-Import</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="db_model.html">IDOUtils Database Model</a></span></dt>
<dd><dl>
-<dt><span class="section"><a href="db_model.html#id1575448">Central Tables</a></span></dt>
-<dt><span class="section"><a href="db_model.html#id1575450"> Debugging Tables</a></span></dt>
-<dt><span class="section"><a href="db_model.html#id1575894">Historical Tables</a></span></dt>
-<dt><span class="section"><a href="db_model.html#id1576397"> Current Status Tables</a></span></dt>
-<dt><span class="section"><a href="db_model.html#id1576410"> Configuration Tables</a></span></dt>
+<dt><span class="section"><a href="db_model.html#id5790845">Central Tables</a></span></dt>
+<dt><span class="section"><a href="db_model.html#id5791268"> Debugging Tables</a></span></dt>
+<dt><span class="section"><a href="db_model.html#id5791407">Historical Tables</a></span></dt>
+<dt><span class="section"><a href="db_model.html#id5798162"> Current Status Tables</a></span></dt>
+<dt><span class="section"><a href="db_model.html#id5791802"> Configuration Tables</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="db_changes.html">Datenbank-Anpassungen/Änderungen</a></span></dt>
</dl>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/checkscheduling.html
^
|
@@ -390,20 +390,20 @@
<p>Die meisten der o.g. Informationen treffen auch auf Host-Prüfungen zu.</p>
<p>Dieser Abschnitt wird aktualisiert. Voraussichtlich gibt es mehr Informationen in einer der nächsten Ausgaben...</p>
- <a class="indexterm" name="id1554735"></a>
- <a class="indexterm" name="id1554743"></a>
- <a class="indexterm" name="id1554752"></a>
- <a class="indexterm" name="id1554763"></a>
- <a class="indexterm" name="id1554772"></a>
- <a class="indexterm" name="id1554782"></a>
- <a class="indexterm" name="id1554792"></a>
- <a class="indexterm" name="id1554802"></a>
- <a class="indexterm" name="id1554811"></a>
- <a class="indexterm" name="id1554822"></a>
- <a class="indexterm" name="id1554830"></a>
- <a class="indexterm" name="id1554841"></a>
- <a class="indexterm" name="id1554849"></a>
- <a class="indexterm" name="id1554860"></a>
+ <a class="indexterm" name="id5770051"></a>
+ <a class="indexterm" name="id5769983"></a>
+ <a class="indexterm" name="id5770070"></a>
+ <a class="indexterm" name="id5770080"></a>
+ <a class="indexterm" name="id5770090"></a>
+ <a class="indexterm" name="id5770101"></a>
+ <a class="indexterm" name="id5770110"></a>
+ <a class="indexterm" name="id5770120"></a>
+ <a class="indexterm" name="id5770129"></a>
+ <a class="indexterm" name="id5770140"></a>
+ <a class="indexterm" name="id5770149"></a>
+ <a class="indexterm" name="id5770158"></a>
+ <a class="indexterm" name="id5770169"></a>
+ <a class="indexterm" name="id5770160"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/clusters.html
^
|
@@ -159,7 +159,7 @@
Denken Sie daran, dass Sie der Status der einzelnen Hosts weniger interessiert als der Gesamtstatus des Clusters. Abhängig von
Ihrem Netzwerk-Layout und von dem, was Sie erreichen wollen, möchten Sie vielleicht die Benachrichtigungen für
UNREACHABLE-Zustände bei den Host-Definitionen aktiviert lassen.</p>
- <a class="indexterm" name="id1549935"></a>
+ <a class="indexterm" name="id5765233"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/components.html
^
|
@@ -31,7 +31,7 @@
<div class="section" title="Ãœberblick">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1574672"></a>Ãœberblick</h3></div></div></div>
+<a name="id5789968"></a>Ãœberblick</h3></div></div></div>
<p>Es gibt vier Hauptkomponenten, aus denen die IDO-Utilities bestehen:</p>
@@ -56,7 +56,7 @@
<div class="section" title="IDOMOD">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1574719"></a>IDOMOD</h3></div></div></div>
+<a name="id5790120"></a>IDOMOD</h3></div></div></div>
<p>Die IDO-Utilities enthalten ein Icinga-Event-Broker-Modul (IDOMOD.O), das die Daten des Icinga-Daemon
@@ -67,7 +67,7 @@
wird, kann es auf die Daten und die Logik des laufenden Icinga-Prozesses zugreifen.</p>
<div class="figure">
-<a name="id1574736"></a><p class="title"><b>Abbildung 12.5. Geladenes IDOMOD-Event-Broker-Modul</b></p>
+<a name="id5790137"></a><p class="title"><b>Abbildung 12.5. Geladenes IDOMOD-Event-Broker-Modul</b></p>
<div class="figure-contents">
@@ -81,7 +81,7 @@
Datei, einen Unix-Domain- oder einen TCP-Socket senden.</p>
<div class="figure">
-<a name="id1574758"></a><p class="title"><b>Abbildung 12.6. IDOMOD-Möglichkeiten</b></p>
+<a name="id5790174"></a><p class="title"><b>Abbildung 12.6. IDOMOD-Möglichkeiten</b></p>
<div class="figure-contents">
@@ -104,7 +104,7 @@
<div class="section" title="LOG2IDO">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1574808"></a>LOG2IDO</h3></div></div></div>
+<a name="id5790188"></a>LOG2IDO</h3></div></div></div>
<p>Das LOG2IDO-Utility wurde entwickelt, damit Sie über den IDO2DB-Daemon (<a class="link" href="components.html#IDO2DB-description" title="IDO2DB">wird später
@@ -114,7 +114,7 @@
Informationen in einer Datenbank zu speichern.</p>
<div class="figure">
-<a name="id1574816"></a><p class="title"><b>Abbildung 12.7. LOG2IDO-Utility</b></p>
+<a name="id5790234"></a><p class="title"><b>Abbildung 12.7. LOG2IDO-Utility</b></p>
<div class="figure-contents">
@@ -126,7 +126,7 @@
<div class="section" title="FILE2SOCK">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1574834"></a>FILE2SOCK</h3></div></div></div>
+<a name="id5790153"></a>FILE2SOCK</h3></div></div></div>
<p>Das FILE2SOCK-Utility ist ziemlich simpel. Es liest Eingaben von einer normalen Daten (oder STDIN) und schickt diese Daten
@@ -134,7 +134,7 @@
werden.</p>
<div class="figure">
-<a name="id1574842"></a><p class="title"><b>Abbildung 12.8. FILE2SOCK-Utility</b></p>
+<a name="id5790266"></a><p class="title"><b>Abbildung 12.8. FILE2SOCK-Utility</b></p>
<div class="figure-contents">
@@ -161,7 +161,7 @@
wird).</p>
<div class="figure">
-<a name="id1574911"></a><p class="title"><b>Abbildung 12.9. IDO2DB-Daemon</b></p>
+<a name="id5790316"></a><p class="title"><b>Abbildung 12.9. IDO2DB-Daemon</b></p>
<div class="figure-contents">
@@ -175,7 +175,7 @@
Datenbank für spätere Abfragen und Verarbeitung gespeichert.</p>
<div class="figure">
-<a name="id1574939"></a><p class="title"><b>Abbildung 12.10. IDO2DB mit mehreren Clients</b></p>
+<a name="id5790329"></a><p class="title"><b>Abbildung 12.10. IDO2DB mit mehreren Clients</b></p>
<div class="figure-contents">
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/config.html
^
|
@@ -78,7 +78,7 @@
konfiguriert haben und wo Ihre Objektdefinitionen gespeichert sind.</p>
<p>Dokumentation zur CGI-Konfigurationsdatei finden Sie <a class="link" href="configcgi.html" title="Optionen CGI-Konfigurationsdatei">hier</a>.</p>
- <a class="indexterm" name="id1464934"></a>
+ <a class="indexterm" name="id5679681"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/configcgi.html
^
|
@@ -1506,7 +1506,7 @@
<td><p> <span class="bold"><strong>show_tac_header=<0|1></strong></span> </p></td>
</tr>
<tr>
-<td align="left" valign="top"><p>Example:</p></td>
+<td align="left" valign="top"><p>Beispiel:</p></td>
<td><p> <span class="color"><font color="red"> <span class="bold"><strong>show_tac_header=0</strong></span> </font></span>
</p></td>
</tr>
@@ -1549,7 +1549,7 @@
aktive Prüfungen dargestellt werden.</p>
<div class="figure">
-<a name="id1503218"></a><p class="title"><b>Abbildung 3.1. Beispiel des neuen Headers</b></p>
+<a name="id5718177"></a><p class="title"><b>Abbildung 3.1. Beispiel des neuen Headers</b></p>
<div class="figure-contents">
@@ -1568,83 +1568,121 @@
</td></tr>
</table></div>
- <a class="indexterm" name="id1503246"></a>
+ <p><a name="configcgi-show_tac_header_pending"></a> <span class="bold"><strong>Pending-Anzahlen in Tactical Overview-Header anzeigen</strong></span></p>
- <a class="indexterm" name="id1503259"></a>
+ <div class="informaltable">
+ <table border="0">
+<colgroup>
+<col>
+<col>
+</colgroup>
+<tbody>
+<tr>
+<td align="left" valign="top"><p>Format:</p></td>
+<td><p> <span class="bold"><strong>show_tac_header_pending=<0|1></strong></span> </p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p>Beispiel:</p></td>
+<td><p> <span class="color"><font color="red"> <span class="bold"><strong>show_tac_header_pending=0</strong></span> </font></span>
+ </p></td>
+</tr>
+</tbody>
+</table>
+ </div>
+
+ <p>Diese Option aktiviert die Anzeige von Pending-Anzahlen im Tactical-Overview-Header. Wenn Ihre Auflösung kleiner als 1024x768 und
+ diese Option aktiviert ist, dann passen die taktischen Informationen ggf. nicht in den verfügbaren Platz. Diese Option ist per Default
+ deaktiviert.</p>
+
+ <div class="note" title="Anmerkung" style="margin-left: 0.5in; margin-right: 0.5in;"><table border="0" summary="Note">
+<tr>
+<td rowspan="2" align="center" valign="top" width="25"><img alt="[Anmerkung]" src="../images/note.png"></td>
+<th align="left">Anmerkung</th>
+</tr>
+<tr><td align="left" valign="top">
+ <p>Diese Option ist verfügbar ab Icinga 1.4.1.</p>
+ </td></tr>
+</table></div>
+
+ <a class="indexterm" name="id5718321"></a>
+
+ <a class="indexterm" name="id5718334"></a>
+
+ <a class="indexterm" name="id5718346"></a>
- <a class="indexterm" name="id1503273"></a>
+ <a class="indexterm" name="id5718357"></a>
- <a class="indexterm" name="id1503286"></a>
+ <a class="indexterm" name="id5718370"></a>
- <a class="indexterm" name="id1503300"></a>
+ <a class="indexterm" name="id5718383"></a>
- <a class="indexterm" name="id1503314"></a>
+ <a class="indexterm" name="id5718397"></a>
- <a class="indexterm" name="id1503327"></a>
+ <a class="indexterm" name="id5718384"></a>
- <a class="indexterm" name="id1503341"></a>
+ <a class="indexterm" name="id5718426"></a>
- <a class="indexterm" name="id1503354"></a>
+ <a class="indexterm" name="id5718411"></a>
- <a class="indexterm" name="id1503368"></a>
+ <a class="indexterm" name="id5718452"></a>
- <a class="indexterm" name="id1503381"></a>
+ <a class="indexterm" name="id5718464"></a>
- <a class="indexterm" name="id1503394"></a>
+ <a class="indexterm" name="id5718479"></a>
- <a class="indexterm" name="id1503408"></a>
+ <a class="indexterm" name="id5718481"></a>
- <a class="indexterm" name="id1503421"></a>
+ <a class="indexterm" name="id5718508"></a>
- <a class="indexterm" name="id1503433"></a>
+ <a class="indexterm" name="id5718494"></a>
- <a class="indexterm" name="id1503444"></a>
+ <a class="indexterm" name="id5718523"></a>
- <a class="indexterm" name="id1503458"></a>
+ <a class="indexterm" name="id5718549"></a>
- <a class="indexterm" name="id1503472"></a>
+ <a class="indexterm" name="id5718536"></a>
- <a class="indexterm" name="id1503485"></a>
+ <a class="indexterm" name="id5718579"></a>
- <a class="indexterm" name="id1503499"></a>
+ <a class="indexterm" name="id5718564"></a>
- <a class="indexterm" name="id1503512"></a>
+ <a class="indexterm" name="id5718606"></a>
- <a class="indexterm" name="id1503526"></a>
+ <a class="indexterm" name="id5718619"></a>
- <a class="indexterm" name="id1503539"></a>
+ <a class="indexterm" name="id5718632"></a>
- <a class="indexterm" name="id1503553"></a>
+ <a class="indexterm" name="id5718646"></a>
- <a class="indexterm" name="id1503562"></a>
+ <a class="indexterm" name="id5718661"></a>
- <a class="indexterm" name="id1503580"></a>
+ <a class="indexterm" name="id5718647"></a>
- <a class="indexterm" name="id1503593"></a>
+ <a class="indexterm" name="id5718686"></a>
- <a class="indexterm" name="id1503608"></a>
+ <a class="indexterm" name="id5718673"></a>
- <a class="indexterm" name="id1503622"></a>
+ <a class="indexterm" name="id5718713"></a>
- <a class="indexterm" name="id1503636"></a>
+ <a class="indexterm" name="id5718728"></a>
- <a class="indexterm" name="id1503649"></a>
+ <a class="indexterm" name="id5718741"></a>
- <a class="indexterm" name="id1503663"></a>
+ <a class="indexterm" name="id5718744"></a>
- <a class="indexterm" name="id1503674"></a>
+ <a class="indexterm" name="id5718742"></a>
- <a class="indexterm" name="id1503687"></a>
+ <a class="indexterm" name="id5718781"></a>
- <a class="indexterm" name="id1503701"></a>
+ <a class="indexterm" name="id5718794"></a>
- <a class="indexterm" name="id1503714"></a>
+ <a class="indexterm" name="id5718808"></a>
- <a class="indexterm" name="id1503723"></a>
+ <a class="indexterm" name="id5718822"></a>
- <a class="indexterm" name="id1503742"></a>
+ <a class="indexterm" name="id5718836"></a>
- <a class="indexterm" name="id1503751"></a>
+ <a class="indexterm" name="id5718849"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/configmain.html
^
|
@@ -4617,271 +4617,271 @@
</td></tr>
</table></div>
- <a class="indexterm" name="id1480851"></a>
+ <a class="indexterm" name="id5695690"></a>
- <a class="indexterm" name="id1480865"></a>
+ <a class="indexterm" name="id5695703"></a>
- <a class="indexterm" name="id1480878"></a>
+ <a class="indexterm" name="id5695716"></a>
- <a class="indexterm" name="id1480892"></a>
+ <a class="indexterm" name="id5695730"></a>
- <a class="indexterm" name="id1480906"></a>
+ <a class="indexterm" name="id5695744"></a>
- <a class="indexterm" name="id1480916"></a>
+ <a class="indexterm" name="id5695758"></a>
- <a class="indexterm" name="id1480928"></a>
+ <a class="indexterm" name="id5695770"></a>
- <a class="indexterm" name="id1480940"></a>
+ <a class="indexterm" name="id5695784"></a>
- <a class="indexterm" name="id1480951"></a>
+ <a class="indexterm" name="id5695797"></a>
- <a class="indexterm" name="id1480963"></a>
+ <a class="indexterm" name="id5695812"></a>
- <a class="indexterm" name="id1480978"></a>
+ <a class="indexterm" name="id5695825"></a>
- <a class="indexterm" name="id1480992"></a>
+ <a class="indexterm" name="id5695839"></a>
- <a class="indexterm" name="id1481004"></a>
+ <a class="indexterm" name="id5695851"></a>
- <a class="indexterm" name="id1481018"></a>
+ <a class="indexterm" name="id5695866"></a>
- <a class="indexterm" name="id1481032"></a>
+ <a class="indexterm" name="id5695881"></a>
- <a class="indexterm" name="id1481045"></a>
+ <a class="indexterm" name="id5695894"></a>
- <a class="indexterm" name="id1481057"></a>
+ <a class="indexterm" name="id5695907"></a>
- <a class="indexterm" name="id1481069"></a>
+ <a class="indexterm" name="id5695920"></a>
- <a class="indexterm" name="id1481087"></a>
+ <a class="indexterm" name="id5695934"></a>
- <a class="indexterm" name="id1481100"></a>
+ <a class="indexterm" name="id5695947"></a>
- <a class="indexterm" name="id1481113"></a>
+ <a class="indexterm" name="id5695962"></a>
- <a class="indexterm" name="id1481127"></a>
+ <a class="indexterm" name="id5695948"></a>
- <a class="indexterm" name="id1481140"></a>
+ <a class="indexterm" name="id5695991"></a>
- <a class="indexterm" name="id1481152"></a>
+ <a class="indexterm" name="id5696002"></a>
- <a class="indexterm" name="id1481168"></a>
+ <a class="indexterm" name="id5696014"></a>
- <a class="indexterm" name="id1481180"></a>
+ <a class="indexterm" name="id5696030"></a>
- <a class="indexterm" name="id1481195"></a>
+ <a class="indexterm" name="id5696017"></a>
- <a class="indexterm" name="id1481209"></a>
+ <a class="indexterm" name="id5696055"></a>
- <a class="indexterm" name="id1481221"></a>
+ <a class="indexterm" name="id5696071"></a>
- <a class="indexterm" name="id1481237"></a>
+ <a class="indexterm" name="id5696056"></a>
- <a class="indexterm" name="id1481245"></a>
+ <a class="indexterm" name="id5696098"></a>
- <a class="indexterm" name="id1481259"></a>
+ <a class="indexterm" name="id5696111"></a>
- <a class="indexterm" name="id1481274"></a>
+ <a class="indexterm" name="id5696127"></a>
- <a class="indexterm" name="id1481288"></a>
+ <a class="indexterm" name="id5696139"></a>
- <a class="indexterm" name="id1481302"></a>
+ <a class="indexterm" name="id5696154"></a>
- <a class="indexterm" name="id1481320"></a>
+ <a class="indexterm" name="id5696169"></a>
- <a class="indexterm" name="id1481335"></a>
+ <a class="indexterm" name="id5696182"></a>
- <a class="indexterm" name="id1481348"></a>
+ <a class="indexterm" name="id5696170"></a>
- <a class="indexterm" name="id1481363"></a>
+ <a class="indexterm" name="id5696211"></a>
- <a class="indexterm" name="id1481377"></a>
+ <a class="indexterm" name="id5696212"></a>
- <a class="indexterm" name="id1481391"></a>
+ <a class="indexterm" name="id5696238"></a>
- <a class="indexterm" name="id1481405"></a>
+ <a class="indexterm" name="id5696253"></a>
- <a class="indexterm" name="id1481418"></a>
+ <a class="indexterm" name="id5696226"></a>
- <a class="indexterm" name="id1481432"></a>
+ <a class="indexterm" name="id5696281"></a>
- <a class="indexterm" name="id1481446"></a>
+ <a class="indexterm" name="id5696267"></a>
- <a class="indexterm" name="id1481460"></a>
+ <a class="indexterm" name="id5696240"></a>
- <a class="indexterm" name="id1481474"></a>
+ <a class="indexterm" name="id5696296"></a>
- <a class="indexterm" name="id1481487"></a>
+ <a class="indexterm" name="id5696309"></a>
- <a class="indexterm" name="id1481501"></a>
+ <a class="indexterm" name="id5696323"></a>
- <a class="indexterm" name="id1481515"></a>
+ <a class="indexterm" name="id5696308"></a>
- <a class="indexterm" name="id1481529"></a>
+ <a class="indexterm" name="id5696351"></a>
- <a class="indexterm" name="id1481542"></a>
+ <a class="indexterm" name="id5696392"></a>
- <a class="indexterm" name="id1481556"></a>
+ <a class="indexterm" name="id5696378"></a>
- <a class="indexterm" name="id1481570"></a>
+ <a class="indexterm" name="id5696418"></a>
- <a class="indexterm" name="id1481584"></a>
+ <a class="indexterm" name="id5696434"></a>
- <a class="indexterm" name="id1481598"></a>
+ <a class="indexterm" name="id5696446"></a>
- <a class="indexterm" name="id1481613"></a>
+ <a class="indexterm" name="id5696462"></a>
- <a class="indexterm" name="id1481627"></a>
+ <a class="indexterm" name="id5696407"></a>
- <a class="indexterm" name="id1481640"></a>
+ <a class="indexterm" name="id5696488"></a>
- <a class="indexterm" name="id1481654"></a>
+ <a class="indexterm" name="id5696504"></a>
- <a class="indexterm" name="id1481668"></a>
+ <a class="indexterm" name="id5696490"></a>
- <a class="indexterm" name="id1481683"></a>
+ <a class="indexterm" name="id5696529"></a>
- <a class="indexterm" name="id1481696"></a>
+ <a class="indexterm" name="id5696545"></a>
- <a class="indexterm" name="id1481710"></a>
+ <a class="indexterm" name="id5696558"></a>
- <a class="indexterm" name="id1481723"></a>
+ <a class="indexterm" name="id5696572"></a>
- <a class="indexterm" name="id1481737"></a>
+ <a class="indexterm" name="id5696587"></a>
- <a class="indexterm" name="id1481751"></a>
+ <a class="indexterm" name="id5696573"></a>
- <a class="indexterm" name="id1481764"></a>
+ <a class="indexterm" name="id5696615"></a>
- <a class="indexterm" name="id1481779"></a>
+ <a class="indexterm" name="id5696601"></a>
- <a class="indexterm" name="id1481792"></a>
+ <a class="indexterm" name="id5696643"></a>
- <a class="indexterm" name="id1481807"></a>
+ <a class="indexterm" name="id5696655"></a>
- <a class="indexterm" name="id1481821"></a>
+ <a class="indexterm" name="id5696670"></a>
- <a class="indexterm" name="id1481835"></a>
+ <a class="indexterm" name="id5696682"></a>
- <a class="indexterm" name="id1481848"></a>
+ <a class="indexterm" name="id5696695"></a>
- <a class="indexterm" name="id1481863"></a>
+ <a class="indexterm" name="id5696712"></a>
- <a class="indexterm" name="id1481877"></a>
+ <a class="indexterm" name="id5696725"></a>
- <a class="indexterm" name="id1481890"></a>
+ <a class="indexterm" name="id5696738"></a>
- <a class="indexterm" name="id1481904"></a>
+ <a class="indexterm" name="id5696713"></a>
- <a class="indexterm" name="id1481918"></a>
+ <a class="indexterm" name="id5696767"></a>
- <a class="indexterm" name="id1481932"></a>
+ <a class="indexterm" name="id5696697"></a>
- <a class="indexterm" name="id1481946"></a>
+ <a class="indexterm" name="id5696752"></a>
- <a class="indexterm" name="id1481959"></a>
+ <a class="indexterm" name="id5696806"></a>
- <a class="indexterm" name="id1481973"></a>
+ <a class="indexterm" name="id5696796"></a>
- <a class="indexterm" name="id1481987"></a>
+ <a class="indexterm" name="id5696835"></a>
- <a class="indexterm" name="id1482001"></a>
+ <a class="indexterm" name="id5696847"></a>
- <a class="indexterm" name="id1482015"></a>
+ <a class="indexterm" name="id5696864"></a>
- <a class="indexterm" name="id1482028"></a>
+ <a class="indexterm" name="id5696875"></a>
- <a class="indexterm" name="id1482042"></a>
+ <a class="indexterm" name="id5696891"></a>
- <a class="indexterm" name="id1482055"></a>
+ <a class="indexterm" name="id5696893"></a>
- <a class="indexterm" name="id1482069"></a>
+ <a class="indexterm" name="id5696919"></a>
- <a class="indexterm" name="id1482082"></a>
+ <a class="indexterm" name="id5696906"></a>
- <a class="indexterm" name="id1482096"></a>
+ <a class="indexterm" name="id5696934"></a>
- <a class="indexterm" name="id1482110"></a>
+ <a class="indexterm" name="id5696948"></a>
- <a class="indexterm" name="id1482124"></a>
+ <a class="indexterm" name="id5696962"></a>
- <a class="indexterm" name="id1482137"></a>
+ <a class="indexterm" name="id5696988"></a>
- <a class="indexterm" name="id1482146"></a>
+ <a class="indexterm" name="id5696975"></a>
- <a class="indexterm" name="id1482165"></a>
+ <a class="indexterm" name="id5697018"></a>
- <a class="indexterm" name="id1482174"></a>
+ <a class="indexterm" name="id5697029"></a>
- <a class="indexterm" name="id1482193"></a>
+ <a class="indexterm" name="id5697003"></a>
- <a class="indexterm" name="id1482206"></a>
+ <a class="indexterm" name="id5697057"></a>
- <a class="indexterm" name="id1482215"></a>
+ <a class="indexterm" name="id5697044"></a>
- <a class="indexterm" name="id1482234"></a>
+ <a class="indexterm" name="id5697086"></a>
- <a class="indexterm" name="id1482247"></a>
+ <a class="indexterm" name="id5697097"></a>
- <a class="indexterm" name="id1482261"></a>
+ <a class="indexterm" name="id5697113"></a>
- <a class="indexterm" name="id1482276"></a>
+ <a class="indexterm" name="id5697072"></a>
- <a class="indexterm" name="id1482290"></a>
+ <a class="indexterm" name="id5697140"></a>
- <a class="indexterm" name="id1482305"></a>
+ <a class="indexterm" name="id5697152"></a>
- <a class="indexterm" name="id1482319"></a>
+ <a class="indexterm" name="id5697157"></a>
- <a class="indexterm" name="id1482334"></a>
+ <a class="indexterm" name="id5697187"></a>
- <a class="indexterm" name="id1482342"></a>
+ <a class="indexterm" name="id5697198"></a>
- <a class="indexterm" name="id1482361"></a>
+ <a class="indexterm" name="id5697213"></a>
- <a class="indexterm" name="id1482370"></a>
+ <a class="indexterm" name="id5697225"></a>
- <a class="indexterm" name="id1482389"></a>
+ <a class="indexterm" name="id5697240"></a>
- <a class="indexterm" name="id1482403"></a>
+ <a class="indexterm" name="id5697253"></a>
- <a class="indexterm" name="id1482415"></a>
+ <a class="indexterm" name="id5697255"></a>
- <a class="indexterm" name="id1482431"></a>
+ <a class="indexterm" name="id5697281"></a>
- <a class="indexterm" name="id1482444"></a>
+ <a class="indexterm" name="id5697295"></a>
- <a class="indexterm" name="id1482458"></a>
+ <a class="indexterm" name="id5697282"></a>
- <a class="indexterm" name="id1482472"></a>
+ <a class="indexterm" name="id5697308"></a>
- <a class="indexterm" name="id1482486"></a>
+ <a class="indexterm" name="id5697336"></a>
- <a class="indexterm" name="id1482499"></a>
+ <a class="indexterm" name="id5697350"></a>
- <a class="indexterm" name="id1482511"></a>
+ <a class="indexterm" name="id5697363"></a>
- <a class="indexterm" name="id1482521"></a>
+ <a class="indexterm" name="id5697378"></a>
- <a class="indexterm" name="id1482540"></a>
+ <a class="indexterm" name="id5697392"></a>
- <a class="indexterm" name="id1482554"></a>
+ <a class="indexterm" name="id5697364"></a>
- <a class="indexterm" name="id1482568"></a>
+ <a class="indexterm" name="id5697419"></a>
- <a class="indexterm" name="id1482579"></a>
+ <a class="indexterm" name="id5697432"></a>
- <a class="indexterm" name="id1482580"></a>
+ <a class="indexterm" name="id5697445"></a>
- <a class="indexterm" name="id1482609"></a>
+ <a class="indexterm" name="id5697460"></a>
- <a class="indexterm" name="id1482622"></a>
+ <a class="indexterm" name="id5697476"></a>
- <a class="indexterm" name="id1482637"></a>
+ <a class="indexterm" name="id5697461"></a>
- <a class="indexterm" name="id1482652"></a>
+ <a class="indexterm" name="id5697502"></a>
- <a class="indexterm" name="id1482664"></a>
+ <a class="indexterm" name="id5697516"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/configobject.html
^
|
@@ -295,7 +295,7 @@
</tr></tbody>
</table>
</div>
- <a class="indexterm" name="id1483527"></a>
+ <a class="indexterm" name="id5698377"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/customobjectvars.html
^
|
@@ -158,7 +158,7 @@
<p><span class="bold"><strong>maßgeschneiderte Variablen und Vererbung</strong></span></p>
<p>Maßgeschneiderte Objektvariablen werden genau wie Standard-Host-, Service- oder Kontaktvariablen <a class="link" href="objectinheritance.html" title="Objektvererbung">vererbt</a>.</p>
- <a class="indexterm" name="id1498000"></a>
+ <a class="indexterm" name="id5712939"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/db_changes.html
^
|
@@ -80,7 +80,7 @@
</li>
</ul></div>
- <a class="indexterm" name="id1595416"></a>
+ <a class="indexterm" name="id5810833"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/db_intro.html
^
|
@@ -34,7 +34,7 @@
<div class="section" title="Zweck">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1573753"></a>Zweck</h3></div></div></div>
+<a name="id5789165"></a>Zweck</h3></div></div></div>
<p>Das IDOUtils-Addon dient dazu, alle Konfigurations- und Ereignisdaten von Icinga in einer relationalen Datenbank zu
@@ -47,7 +47,7 @@
<div class="section" title="Design-Ãœberblick">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1574484"></a>Design-Ãœberblick</h3></div></div></div>
+<a name="id5789884"></a>Design-Ãœberblick</h3></div></div></div>
<p>Das IDOUtils-Addon wurde entwickelt für Benutzer mit:</p>
@@ -68,7 +68,7 @@
Datenbanken wie die Daten von anderen Icinga-Instanzen gespeichert werden.</p>
<div class="figure">
-<a name="id1574526"></a><p class="title"><b>Abbildung 12.1. Mögliche Anordnungen</b></p>
+<a name="id5789926"></a><p class="title"><b>Abbildung 12.1. Mögliche Anordnungen</b></p>
<div class="figure-contents">
@@ -81,7 +81,7 @@
gespeichert werden, falls das gewünscht wird..</p>
<div class="figure">
-<a name="id1574539"></a><p class="title"><b>Abbildung 12.2. zukünfte Entwicklung: Eine Instanz, mehrere Datenbanken</b></p>
+<a name="id5789955"></a><p class="title"><b>Abbildung 12.2. zukünfte Entwicklung: Eine Instanz, mehrere Datenbanken</b></p>
<div class="figure-contents">
@@ -93,7 +93,7 @@
<div class="section" title="Instanzen">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1574573"></a>Instanzen</h3></div></div></div>
+<a name="id5789942"></a>Instanzen</h3></div></div></div>
<p>Jeder Icinga-Prozess, egal ob es ein einzelner Ãœberwachungsserver oder Teil eines verteilten, redundanten Setups ist, ggf.
@@ -104,7 +104,7 @@
aufgrund des geografischen Standorts bezeichnen....</p>
<div class="figure">
-<a name="id1574593"></a><p class="title"><b>Abbildung 12.3. Instanznamen basierend auf dem geografischen Standorts</b></p>
+<a name="id5789992"></a><p class="title"><b>Abbildung 12.3. Instanznamen basierend auf dem geografischen Standorts</b></p>
<div class="figure-contents">
@@ -116,7 +116,7 @@
<p>Oder Sie können die Icinga-Instanzen nach dem Zweck benennen...</p>
<div class="figure">
-<a name="id1574616"></a><p class="title"><b>Abbildung 12.4. Instanznamen basierend auf dem Zweck</b></p>
+<a name="id5790017"></a><p class="title"><b>Abbildung 12.4. Instanznamen basierend auf dem Zweck</b></p>
<div class="figure-contents">
@@ -133,7 +133,7 @@
<div class="section" title="Installation">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1574646"></a>Installation</h3></div></div></div>
+<a name="id5790049"></a>Installation</h3></div></div></div>
<p>Die installation der IDOUtils wird im <a class="link" href="quickstart-idoutils.html" title="Icinga-Schnellstart mit IDOUtils">Quickstart IDOUtils</a>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/db_model.html
^
|
@@ -87,10 +87,10 @@
<div class="section" title="Central Tables">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1575448"></a><a name="dbm_ct"></a>Central Tables</h3></div></div></div>
+<a name="id5790845"></a><a name="dbm_ct"></a>Central Tables</h3></div></div></div>
- <a class="indexterm" name="id1575460"></a>
+ <a class="indexterm" name="id5790861"></a>
<p>There are two "core" or "central" tables, described below, that are referenced by nearly every table in the database. Read below
for more information.</p>
@@ -109,7 +109,7 @@
<p><span class="emphasis"><em>Relationship Diagram</em></span></p>
<div class="figure">
-<a name="id1575515"></a><p class="title"><b>Abbildung 12.14. Relationship of Central Tables</b></p>
+<a name="id5790918"></a><p class="title"><b>Abbildung 12.14. Relationship of Central Tables</b></p>
<div class="figure-contents">
@@ -120,7 +120,7 @@
<a name="dbm_instances"></a>
- <a class="indexterm" name="id1575536"></a>
+ <a class="indexterm" name="id5790942"></a>
<p><span class="emphasis"><em>Instance Table</em></span></p>
@@ -169,7 +169,7 @@
<a name="dbm_objects"></a>
- <a class="indexterm" name="id1575654"></a>
+ <a class="indexterm" name="id5791056"></a>
<p><span class="emphasis"><em>Objects Table</em></span></p>
@@ -271,10 +271,10 @@
<div class="section" title="Debugging Tables">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1575450"></a><a name="dbm_dt"></a> Debugging Tables</h3></div></div></div>
+<a name="id5791268"></a><a name="dbm_dt"></a> Debugging Tables</h3></div></div></div>
- <a class="indexterm" name="id1575903"></a>
+ <a class="indexterm" name="id5791308"></a>
<p>There is currently only one table in the database that is used to hold information that might be useful for debugging purposes.
Read below for more information.</p>
@@ -288,7 +288,7 @@
<p>Relationship Diagram</p>
<div class="figure">
-<a name="id1575932"></a><p class="title"><b>Abbildung 12.15. Relationship of Debugging Tables</b></p>
+<a name="id5790820"></a><p class="title"><b>Abbildung 12.15. Relationship of Debugging Tables</b></p>
<div class="figure-contents">
@@ -299,7 +299,7 @@
<a name="dbm_conninfo"></a>
- <a class="indexterm" name="id1575967"></a>
+ <a class="indexterm" name="id5791375"></a>
<p><span class="emphasis"><em>Conninfo Table</em></span></p>
@@ -460,10 +460,10 @@
<div class="section" title="Historical Tables">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1575894"></a><a name="dbm_ht"></a>Historical Tables</h3></div></div></div>
+<a name="id5791407"></a><a name="dbm_ht"></a>Historical Tables</h3></div></div></div>
- <a class="indexterm" name="id1576426"></a>
+ <a class="indexterm" name="id5791826"></a>
<p><span class="bold"><strong>Historical Data Tables</strong></span></p>
@@ -529,7 +529,7 @@
please excuse the mess. :-)</p>
<div class="figure">
-<a name="id1576641"></a><p class="title"><b>Abbildung 12.16. Relationship of Historical Tables</b></p>
+<a name="id5792043"></a><p class="title"><b>Abbildung 12.16. Relationship of Historical Tables</b></p>
<div class="figure-contents">
@@ -540,7 +540,7 @@
<a name="dbm_acknowledgements"></a>
- <a class="indexterm" name="id1576662"></a>
+ <a class="indexterm" name="id5792067"></a>
<p><span class="emphasis"><em>Acknowledgements Table</em></span></p>
@@ -678,7 +678,7 @@
<a name="dbm_commenthistory"></a>
- <a class="indexterm" name="id1577026"></a>
+ <a class="indexterm" name="id5792435"></a>
<p><span class="emphasis"><em>Commenthistory Table</em></span></p>
@@ -852,7 +852,7 @@
<a name="dbm_contactnotifications"></a>
- <a class="indexterm" name="id1577508"></a>
+ <a class="indexterm" name="id5792908"></a>
<p><span class="emphasis"><em>Contactnotifications Table</em></span></p>
@@ -967,7 +967,7 @@
<a name="dbm_contactnotificationsmethods"></a>
- <a class="indexterm" name="id1577806"></a>
+ <a class="indexterm" name="id5793208"></a>
<p><span class="emphasis"><em>Contactnotificationmethods Table</em></span></p>
@@ -1089,7 +1089,7 @@
<a name="dbm_downtimehistory"></a>
- <a class="indexterm" name="id1578115"></a>
+ <a class="indexterm" name="id5793527"></a>
<p><span class="emphasis"><em>Downtimehistory Table</em></span></p>
@@ -1286,7 +1286,7 @@
<a name="dbm_eventhandlers"></a>
- <a class="indexterm" name="id1578658"></a>
+ <a class="indexterm" name="id5794060"></a>
<p><span class="emphasis"><em>Eventhandlers Table</em></span></p>
@@ -1473,7 +1473,7 @@
<a name="dbm_externalcommands"></a>
- <a class="indexterm" name="id1579158"></a>
+ <a class="indexterm" name="id5794568"></a>
<p><span class="emphasis"><em>Externalcommands Table</em></span></p>
@@ -1566,7 +1566,7 @@
<a name="dbm_flappinghistory"></a>
- <a class="indexterm" name="id1579387"></a>
+ <a class="indexterm" name="id5794800"></a>
<p><span class="emphasis"><em>Flappinghistory Table</em></span></p>
@@ -1712,7 +1712,7 @@
<a name="dbm_hostchecks"></a>
- <a class="indexterm" name="id1579785"></a>
+ <a class="indexterm" name="id5795187"></a>
<p><span class="emphasis"><em>Hostchecks Table</em></span></p>
@@ -1940,7 +1940,7 @@
<a name="dbm_logentries"></a>
- <a class="indexterm" name="id1580396"></a>
+ <a class="indexterm" name="id5795807"></a>
<p><span class="emphasis"><em>Logentries Table</em></span></p>
@@ -2054,7 +2054,7 @@
<a name="dbm_notifications"></a>
- <a class="indexterm" name="id1580691"></a>
+ <a class="indexterm" name="id5796098"></a>
<p><span class="emphasis"><em>Notifications Table</em></span></p>
@@ -2203,7 +2203,7 @@
<a name="dbm_processevents"></a>
- <a class="indexterm" name="id1581100"></a>
+ <a class="indexterm" name="id5796496"></a>
<p><span class="emphasis"><em>Processevents Table</em></span></p>
@@ -2318,7 +2318,7 @@
<a name="dbm_servicechecks"></a>
- <a class="indexterm" name="id1581376"></a>
+ <a class="indexterm" name="id5796787"></a>
<p><span class="emphasis"><em>Servicechecks Table</em></span></p>
@@ -2534,7 +2534,7 @@
<a name="dbm_statehistory"></a>
- <a class="indexterm" name="id1581975"></a>
+ <a class="indexterm" name="id5797378"></a>
<p><span class="emphasis"><em>Statehistory Table</em></span></p>
@@ -2681,7 +2681,7 @@
<a name="dbm_systemcommands"></a>
- <a class="indexterm" name="id1582362"></a>
+ <a class="indexterm" name="id5797773"></a>
<p><span class="emphasis"><em>Systemcommands Table</em></span></p>
@@ -2817,7 +2817,7 @@
<a name="dbm_timedevents"></a>
- <a class="indexterm" name="id1582716"></a>
+ <a class="indexterm" name="id5798129"></a>
<p><span class="emphasis"><em>Timedevents Table</em></span></p>
@@ -2953,10 +2953,10 @@
<div class="section" title="Current Status Tables">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1576397"></a><a name="dbm_cu"></a> Current Status Tables</h3></div></div></div>
+<a name="id5798162"></a><a name="dbm_cu"></a> Current Status Tables</h3></div></div></div>
- <a class="indexterm" name="id1583075"></a>
+ <a class="indexterm" name="id5791818"></a>
<p>There are several tables in the database which are used to hold current status information on the Icinga process and all
hosts and services that it is monitoring. Entries in these tables are cleared whenever the Icinga daemon (belonging to the same
@@ -2995,7 +2995,7 @@
related) is not shown.</p>
<div class="figure">
-<a name="id1583200"></a><p class="title"><b>Abbildung 12.17. Relationship of Current Status Tables</b></p>
+<a name="id5798607"></a><p class="title"><b>Abbildung 12.17. Relationship of Current Status Tables</b></p>
<div class="figure-contents">
@@ -3006,7 +3006,7 @@
<a name="dbm_comments"></a>
- <a class="indexterm" name="id1583223"></a>
+ <a class="indexterm" name="id5798632"></a>
<p><span class="emphasis"><em>Comments Table</em></span></p>
@@ -3166,7 +3166,7 @@
<a name="dbm_customvariablestatus"></a>
- <a class="indexterm" name="id1583648"></a>
+ <a class="indexterm" name="id5799061"></a>
<p><span class="emphasis"><em>Customvariablestatus Table</em></span></p>
@@ -3271,7 +3271,7 @@
<a name="dbm_hoststatus"></a>
- <a class="indexterm" name="id1583912"></a>
+ <a class="indexterm" name="id5799326"></a>
<p><span class="emphasis"><em>Hoststatus Table</em></span></p>
@@ -3695,7 +3695,7 @@
<a name="dbm_programstatus"></a>
- <a class="indexterm" name="id1584993"></a>
+ <a class="indexterm" name="id5800406"></a>
<p><span class="emphasis"><em>Programstatus Table</em></span></p>
@@ -3947,7 +3947,7 @@
<a name="dbm_runtimevariables"></a>
- <a class="indexterm" name="id1585647"></a>
+ <a class="indexterm" name="id5801054"></a>
<p><span class="emphasis"><em>Runtimevariables Table</em></span></p>
@@ -4027,7 +4027,7 @@
<a name="dbm_scheduleddowntime"></a>
- <a class="indexterm" name="id1585830"></a>
+ <a class="indexterm" name="id5801244"></a>
<p><span class="emphasis"><em>Scheduleddowntime Table</em></span></p>
@@ -4203,7 +4203,7 @@
<a name="dbm_servicestatus"></a>
- <a class="indexterm" name="id1586294"></a>
+ <a class="indexterm" name="id5801708"></a>
<p><span class="emphasis"><em>Servicestatus Table</em></span></p>
@@ -4583,7 +4583,7 @@
<a name="dbm_timedeventqueue"></a>
- <a class="indexterm" name="id1587372"></a>
+ <a class="indexterm" name="id5802788"></a>
<p><span class="emphasis"><em>Timedeventqueue Table</em></span></p>
@@ -4696,10 +4696,10 @@
<div class="section" title="Configuration Tables">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1576410"></a><a name="dbm_cf"></a> Configuration Tables</h3></div></div></div>
+<a name="id5791802"></a><a name="dbm_cf"></a> Configuration Tables</h3></div></div></div>
- <a class="indexterm" name="id1587687"></a>
+ <a class="indexterm" name="id5803096"></a>
<div class="note" title="Anmerkung" style="margin-left: 0.5in; margin-right: 0.5in;"><table border="0" summary="Note">
<tr>
@@ -4803,7 +4803,7 @@
</ul></div>
<div class="figure">
-<a name="id1587723"></a><p class="title"><b>Abbildung 12.18. Relationship of Configuration Tables</b></p>
+<a name="id5803439"></a><p class="title"><b>Abbildung 12.18. Relationship of Configuration Tables</b></p>
<div class="figure-contents">
@@ -4814,7 +4814,7 @@
<a name="dbm_commands"></a>
- <a class="indexterm" name="id1588035"></a>
+ <a class="indexterm" name="id5803456"></a>
<p><span class="emphasis"><em>Commands Table</em></span></p>
@@ -4879,7 +4879,7 @@
<a name="dbm_configfiles"></a>
- <a class="indexterm" name="id1588201"></a>
+ <a class="indexterm" name="id5803623"></a>
<p><span class="emphasis"><em>Configfiles Table</em></span></p>
@@ -4937,7 +4937,7 @@
<a name="dbm_configfilevariables"></a>
- <a class="indexterm" name="id1588350"></a>
+ <a class="indexterm" name="id5803771"></a>
<p><span class="emphasis"><em>Configfilevariables Table</em></span></p>
@@ -5002,7 +5002,7 @@
<a name="dbm_contact_addresses"></a>
- <a class="indexterm" name="id1588514"></a>
+ <a class="indexterm" name="id5803934"></a>
<p><span class="emphasis"><em>Contact_addresses Table</em></span></p>
@@ -5067,7 +5067,7 @@
<a name="dbm_contact_notificationcommands"></a>
- <a class="indexterm" name="id1588686"></a>
+ <a class="indexterm" name="id5804102"></a>
<p><span class="emphasis"><em>Contact_notificationcommands Table</em></span></p>
@@ -5139,7 +5139,7 @@
<a name="dbm_contactgroup_members"></a>
- <a class="indexterm" name="id1588877"></a>
+ <a class="indexterm" name="id5803960"></a>
<p><span class="emphasis"><em>Contactgroup_members Table</em></span></p>
@@ -5197,7 +5197,7 @@
<a name="dbm_contactgroups"></a>
- <a class="indexterm" name="id1589028"></a>
+ <a class="indexterm" name="id5804438"></a>
<p><span class="emphasis"><em>Contactgroups Table</em></span></p>
@@ -5262,7 +5262,7 @@
<a name="dbm_contactnotificationmethods"></a>
- <a class="indexterm" name="id1589183"></a>
+ <a class="indexterm" name="id5804605"></a>
<p><span class="emphasis"><em>Contactnotificationmethods Table</em></span></p>
@@ -5355,7 +5355,7 @@
<a name="dbm_contacts"></a>
- <a class="indexterm" name="id1589426"></a>
+ <a class="indexterm" name="id5804848"></a>
<p><span class="emphasis"><em>Contacts Table</em></span></p>
@@ -5546,7 +5546,7 @@
<a name="dbm_customvariables"></a>
- <a class="indexterm" name="id1589985"></a>
+ <a class="indexterm" name="id5805404"></a>
<p><span class="emphasis"><em>customvariables Table</em></span></p>
@@ -5625,7 +5625,7 @@
<a name="dbm_host_contactgroups"></a>
- <a class="indexterm" name="id1590193"></a>
+ <a class="indexterm" name="id5805611"></a>
<p><span class="emphasis"><em>Host_contactgroups Table</em></span></p>
@@ -5683,7 +5683,7 @@
<a name="dbm_hostescalation_contactgroups"></a>
- <a class="indexterm" name="id1590335"></a>
+ <a class="indexterm" name="id5805759"></a>
<p><span class="emphasis"><em>Hostescalation_contactgroups Table</em></span></p>
@@ -5741,7 +5741,7 @@
<a name="dbm_host_parenthosts"></a>
- <a class="indexterm" name="id1590481"></a>
+ <a class="indexterm" name="id5805907"></a>
<p><span class="emphasis"><em>Host_parenthosts Table</em></span></p>
@@ -5799,7 +5799,7 @@
<a name="dbm_hostdependencies"></a>
- <a class="indexterm" name="id1590632"></a>
+ <a class="indexterm" name="id5806054"></a>
<p><span class="emphasis"><em>Hostdependencies Table</em></span></p>
@@ -5906,7 +5906,7 @@
<a name="dbm_hostescalations"></a>
- <a class="indexterm" name="id1590940"></a>
+ <a class="indexterm" name="id5806357"></a>
<p><span class="emphasis"><em>Hostescalations Table</em></span></p>
@@ -6013,7 +6013,7 @@
<a name="dbm_hostgroup_members"></a>
- <a class="indexterm" name="id1591231"></a>
+ <a class="indexterm" name="id5806643"></a>
<p><span class="emphasis"><em>Hostgroup_members Table</em></span></p>
@@ -6071,7 +6071,7 @@
<a name="dbm_hostgroups"></a>
- <a class="indexterm" name="id1591369"></a>
+ <a class="indexterm" name="id5806792"></a>
<p><span class="emphasis"><em>Hostgroups Table</em></span></p>
@@ -6136,7 +6136,7 @@
<a name="dbm_hosts"></a>
- <a class="indexterm" name="id1591532"></a>
+ <a class="indexterm" name="id5806957"></a>
<p><span class="emphasis"><em>Hosts Table</em></span></p>
@@ -6572,7 +6572,7 @@
<a name="dbm_service_contactgroups"></a>
- <a class="indexterm" name="id1591555"></a>
+ <a class="indexterm" name="id5807007"></a>
<p><span class="emphasis"><em>Service_contactgroups Table</em></span></p>
@@ -6630,7 +6630,7 @@
<a name="dbm_servicedependencies"></a>
- <a class="indexterm" name="id1592836"></a>
+ <a class="indexterm" name="id5808260"></a>
<p><span class="emphasis"><em>Servicedependencies Table</em></span></p>
@@ -6744,7 +6744,7 @@
<a name="dbm_serviceescalation_contactgroups"></a>
- <a class="indexterm" name="id1593152"></a>
+ <a class="indexterm" name="id5808570"></a>
<p><span class="emphasis"><em>Serviceescalation_contactgroups Table</em></span></p>
@@ -6802,7 +6802,7 @@
<a name="dbm_serviceescalations"></a>
- <a class="indexterm" name="id1593302"></a>
+ <a class="indexterm" name="id5808718"></a>
<p><span class="emphasis"><em>Serviceescalations Table</em></span></p>
@@ -6916,7 +6916,7 @@
<a name="dbm_servicegroup_members"></a>
- <a class="indexterm" name="id1593604"></a>
+ <a class="indexterm" name="id5809020"></a>
<p><span class="emphasis"><em>Servicegroup_members Table</em></span></p>
@@ -6974,7 +6974,7 @@
<a name="dbm_servicegroups"></a>
- <a class="indexterm" name="id1593744"></a>
+ <a class="indexterm" name="id5809168"></a>
<p><span class="emphasis"><em>Servicegroups Table</em></span></p>
@@ -7039,7 +7039,7 @@
<a name="dbm_services"></a>
- <a class="indexterm" name="id1593913"></a>
+ <a class="indexterm" name="id5809335"></a>
<p><span class="emphasis"><em>Services Table</em></span></p>
@@ -7426,7 +7426,7 @@
<a name="dbm_timeperiod_timeranges"></a>
- <a class="indexterm" name="id1593959"></a>
+ <a class="indexterm" name="id5809387"></a>
<p><span class="emphasis"><em>Timeperiod_timeranges Table</em></span></p>
@@ -7498,7 +7498,7 @@
<a name="dbm_timeperiods"></a>
- <a class="indexterm" name="id1595125"></a>
+ <a class="indexterm" name="id5810548"></a>
<p><span class="emphasis"><em>Timeperiods Table</em></span></p>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/dependencies.html
^
|
@@ -293,8 +293,8 @@
(abhängigen) Host unterdrücken. Irgendwann in der Zukunft können die Benachrichtigungsabhängigkeitstests für den Host
erfolgreich durchlaufen werden. Wenn dies geschieht, wird Icinga mit dem Versand von Benachrichtigungen für diesen Host
beginnen, wie es das normal tun würde. Mehr Informationen über die Benachrichtigungslogik finden Sie <a class="link" href="notifications.html" title="Benachrichtigungen">hier</a>.</p>
- <a class="indexterm" name="id1550652"></a>
- <a class="indexterm" name="id1550663"></a>
+ <a class="indexterm" name="id5765949"></a>
+ <a class="indexterm" name="id5765943"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/dependencychecks.html
^
|
@@ -89,7 +89,7 @@
<p>Vorausschauende Abhängigkeitsprüfungen sind Prüfungen nach Bedarf und daher den Regeln von <a class="link" href="cachedchecks.html" title="Zwischengespeicherte Prüfungen">cached checks</a> unterworfen. Cached checks können Ihnen Performance-Verbesserungen liefern, wenn
Icinga darauf verzichtet, eine Host- oder Serviceprüfung durchzuführen, wenn es statt dessen ein relativ aktuelles
Prüfungsergebnis nutzen kann. Mehr Informationen über cached checks finden Sie <a class="link" href="cachedchecks.html" title="Zwischengespeicherte Prüfungen">hier</a>.</p>
- <a class="indexterm" name="id1552880"></a>
+ <a class="indexterm" name="id5768178"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/distributed.html
^
|
@@ -365,7 +365,7 @@
die Verarbeitung von Service-Prüfergebnissen benutzt wird (siehe oben). Um sicherzustellen, dass passive Host-Prüfergebnisse
aktuell sind, sollten Sie <a class="link" href="freshness.html" title="Service- und Host-Frische-Prüfungen">Frische-Prüfungen</a> für Hosts aktivieren (ähnlich zu dem, was weiter
oben für Services beschrieben wird).</p>
- <a class="indexterm" name="id1546872"></a>
+ <a class="indexterm" name="id5762144"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/downtime.html
^
|
@@ -122,8 +122,8 @@
21:30 Uhr und 21:20 bis 1:30 Uhr), wird Icinga warten, bis die letzte Periode geplanter Ausfallzeiten vorüber ist, bevor
Benachrichtigungen zu diesem Host oder Service versandt werden. In diesem Beispiel werden Benachrichtigungen für Host A bis
Dienstagmorgen 1:30 Uhr unterdrückt.</p>
- <a class="indexterm" name="id1551906"></a>
- <a class="indexterm" name="id1551917"></a>
+ <a class="indexterm" name="id5767210"></a>
+ <a class="indexterm" name="id5767223"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/embeddedperl.html
^
|
@@ -200,7 +200,7 @@
<p><span class="bold"><strong>Plugins für die Nutzung mit Embedded Perl entwickeln</strong></span></p>
<p>Informationen über die Entwicklung von Plugins zur Nutzung mit dem eingebetteten Perl-Interpreter finden Sie <a class="link" href="epnplugins.html" title="Entwickeln von Plugins für die Nutzung mit Embedded Perl">hier</a>.</p>
- <a class="indexterm" name="id1552404"></a>
+ <a class="indexterm" name="id5767673"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/epnplugins.html
^
|
@@ -264,7 +264,7 @@
p1.pl-Datei steht (diese Datei wird mit Icinga ausgeliefert). ]</font></span></p>
</li>
</ol></div>
- <a class="indexterm" name="id1567051"></a>
+ <a class="indexterm" name="id5782140"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/escalation_condition.html
^
|
@@ -99,7 +99,7 @@
CRITICAL.</p>
<p>[ Thanks to: Vitali Voroth, DECOIT GmbH * http://www.decoit.de ]</p>
- <a class="indexterm" name="id1549271"></a>
+ <a class="indexterm" name="id5764559"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/escalations.html
^
|
@@ -285,7 +285,7 @@
einem bestimmten Zustand befindet, so können Sie die <span class="emphasis"><em>escalation_options</em></span>-Direktive in der Host- oder
Service-Eskalationsdefinition benutzen. Wenn Sie die <span class="emphasis"><em>escalation_options</em></span>-Direktive nicht verwenden, werden
die Eskalationen in jedem Status der Hosts oder Services benutzt.</p>
- <a class="indexterm" name="id1549087"></a>
+ <a class="indexterm" name="id5764377"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/eventhandlers.html
^
|
@@ -256,8 +256,8 @@
<p>Das ist alles! Eventhandler sind ziemlich einfach zu schreiben und zu implementieren, also versuchen Sie es und sehen, was
Sie tun können.</p>
- <a class="indexterm" name="id1545253"></a>
- <a class="indexterm" name="id1545261"></a>
+ <a class="indexterm" name="id5760516"></a>
+ <a class="indexterm" name="id5760518"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/example-configs.html
^
|
@@ -31,7 +31,7 @@
<div class="section" title="Einzelner Server, einzelne Instanz">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1574970"></a>Einzelner Server, einzelne Instanz</h3></div></div></div>
+<a name="id5790375"></a>Einzelner Server, einzelne Instanz</h3></div></div></div>
<p>Die einfachste Konfiguration tritt auf, wenn in Ihrem Netzwerk eine einzelne Icinga-Instanz läuft. In diesem Fall ist die
@@ -41,7 +41,7 @@
zusammenspielen...</p>
<div class="figure">
-<a name="id1574988"></a><p class="title"><b>Abbildung 12.11. Einzelserver, Einzelinstanz</b></p>
+<a name="id5790391"></a><p class="title"><b>Abbildung 12.11. Einzelserver, Einzelinstanz</b></p>
<div class="figure-contents">
@@ -87,7 +87,7 @@
<div class="section" title="Einzelner Server, mehrere Instanzen">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1575084"></a>Einzelner Server, mehrere Instanzen</h3></div></div></div>
+<a name="id5790485"></a>Einzelner Server, mehrere Instanzen</h3></div></div></div>
<p>Eine weitere einfache Konfiguration kann genutzt werden, wenn Sie mehrere Icinga-Instanzen haben, die auf einem einzigen
@@ -98,7 +98,7 @@
Icinga-Instanzen"-Aufbau zusammenspielen...</p>
<div class="figure">
-<a name="id1575103"></a><p class="title"><b>Abbildung 12.12. Einzelner Server, mehrere Instanzen</b></p>
+<a name="id5790502"></a><p class="title"><b>Abbildung 12.12. Einzelner Server, mehrere Instanzen</b></p>
<div class="figure-contents">
@@ -134,7 +134,7 @@
<div class="section" title="Einzelner Server, einzelne Instanz, Log-Datei-Import">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1575178"></a>Einzelner Server, einzelne Instanz, Log-Datei-Import</h3></div></div></div>
+<a name="id5790578"></a>Einzelner Server, einzelne Instanz, Log-Datei-Import</h3></div></div></div>
<p>Es gibt zwei Gründe, warum Sie vielleicht Ihre Icinga-Log-Dateien in die gleiche Datenbank importieren möchte, die
@@ -154,7 +154,7 @@
</ol></div>
<div class="figure">
-<a name="id1575216"></a><p class="title"><b>Abbildung 12.13. Einzelner Server, einzelne Instanz, Log-Datei-Import</b></p>
+<a name="id5790616"></a><p class="title"><b>Abbildung 12.13. Einzelner Server, einzelne Instanz, Log-Datei-Import</b></p>
<div class="figure-contents">
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/extcommands.html
^
|
@@ -91,7 +91,7 @@
<p>Eine komplette Liste der Befehle, die benutzt werden können, finden Sie in der <a class="link" href="extcommands2.html" title="Liste der externen Befehle">Liste der
externen Befehle</a>.</p>
- <a class="indexterm" name="id1544657"></a>
+ <a class="indexterm" name="id5759915"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/extcommands2.html
^
|
@@ -1228,323 +1228,323 @@
<p>Deaktiviert die Verarbeitung von Service-Prüfungen mit Hilfe des OCSP-Befehls auf programmweiter Ebene.</p>
- <a class="indexterm" name="id1571275"></a>
+ <a class="indexterm" name="id5786662"></a>
- <a class="indexterm" name="id1571291"></a>
+ <a class="indexterm" name="id5786676"></a>
- <a class="indexterm" name="id1571304"></a>
+ <a class="indexterm" name="id5786689"></a>
- <a class="indexterm" name="id1571318"></a>
+ <a class="indexterm" name="id5786701"></a>
- <a class="indexterm" name="id1571332"></a>
+ <a class="indexterm" name="id5786716"></a>
- <a class="indexterm" name="id1571346"></a>
+ <a class="indexterm" name="id5786730"></a>
- <a class="indexterm" name="id1571360"></a>
+ <a class="indexterm" name="id5786745"></a>
- <a class="indexterm" name="id1571373"></a>
+ <a class="indexterm" name="id5786732"></a>
- <a class="indexterm" name="id1571387"></a>
+ <a class="indexterm" name="id5786775"></a>
- <a class="indexterm" name="id1571401"></a>
+ <a class="indexterm" name="id5786786"></a>
- <a class="indexterm" name="id1571414"></a>
+ <a class="indexterm" name="id5786801"></a>
- <a class="indexterm" name="id1571428"></a>
+ <a class="indexterm" name="id5786788"></a>
- <a class="indexterm" name="id1571441"></a>
+ <a class="indexterm" name="id5786829"></a>
- <a class="indexterm" name="id1571456"></a>
+ <a class="indexterm" name="id5786844"></a>
- <a class="indexterm" name="id1571469"></a>
+ <a class="indexterm" name="id5786857"></a>
- <a class="indexterm" name="id1571482"></a>
+ <a class="indexterm" name="id5786870"></a>
- <a class="indexterm" name="id1571496"></a>
+ <a class="indexterm" name="id5786884"></a>
- <a class="indexterm" name="id1571510"></a>
+ <a class="indexterm" name="id5786885"></a>
- <a class="indexterm" name="id1571524"></a>
+ <a class="indexterm" name="id5786912"></a>
- <a class="indexterm" name="id1571538"></a>
+ <a class="indexterm" name="id5786898"></a>
- <a class="indexterm" name="id1571551"></a>
+ <a class="indexterm" name="id5786938"></a>
- <a class="indexterm" name="id1571565"></a>
+ <a class="indexterm" name="id5786951"></a>
- <a class="indexterm" name="id1571579"></a>
+ <a class="indexterm" name="id5786966"></a>
- <a class="indexterm" name="id1571593"></a>
+ <a class="indexterm" name="id5786981"></a>
- <a class="indexterm" name="id1571606"></a>
+ <a class="indexterm" name="id5786993"></a>
- <a class="indexterm" name="id1571621"></a>
+ <a class="indexterm" name="id5787008"></a>
- <a class="indexterm" name="id1571635"></a>
+ <a class="indexterm" name="id5787021"></a>
- <a class="indexterm" name="id1571648"></a>
+ <a class="indexterm" name="id5787036"></a>
- <a class="indexterm" name="id1571662"></a>
+ <a class="indexterm" name="id5787049"></a>
- <a class="indexterm" name="id1571676"></a>
+ <a class="indexterm" name="id5787064"></a>
- <a class="indexterm" name="id1571690"></a>
+ <a class="indexterm" name="id5787050"></a>
- <a class="indexterm" name="id1571703"></a>
+ <a class="indexterm" name="id5787091"></a>
- <a class="indexterm" name="id1571717"></a>
+ <a class="indexterm" name="id5787105"></a>
- <a class="indexterm" name="id1571730"></a>
+ <a class="indexterm" name="id5787118"></a>
- <a class="indexterm" name="id1571744"></a>
+ <a class="indexterm" name="id5787106"></a>
- <a class="indexterm" name="id1571758"></a>
+ <a class="indexterm" name="id5787148"></a>
- <a class="indexterm" name="id1571772"></a>
+ <a class="indexterm" name="id5787133"></a>
- <a class="indexterm" name="id1571786"></a>
+ <a class="indexterm" name="id5787159"></a>
- <a class="indexterm" name="id1571799"></a>
+ <a class="indexterm" name="id5787161"></a>
- <a class="indexterm" name="id1571813"></a>
+ <a class="indexterm" name="id5787200"></a>
- <a class="indexterm" name="id1571826"></a>
+ <a class="indexterm" name="id5787215"></a>
- <a class="indexterm" name="id1571840"></a>
+ <a class="indexterm" name="id5787230"></a>
- <a class="indexterm" name="id1571854"></a>
+ <a class="indexterm" name="id5787216"></a>
- <a class="indexterm" name="id1571868"></a>
+ <a class="indexterm" name="id5787255"></a>
- <a class="indexterm" name="id1571882"></a>
+ <a class="indexterm" name="id5787270"></a>
- <a class="indexterm" name="id1571896"></a>
+ <a class="indexterm" name="id5787272"></a>
- <a class="indexterm" name="id1571909"></a>
+ <a class="indexterm" name="id5787286"></a>
- <a class="indexterm" name="id1571922"></a>
+ <a class="indexterm" name="id5787313"></a>
- <a class="indexterm" name="id1571937"></a>
+ <a class="indexterm" name="id5787327"></a>
- <a class="indexterm" name="id1571950"></a>
+ <a class="indexterm" name="id5787338"></a>
- <a class="indexterm" name="id1571964"></a>
+ <a class="indexterm" name="id5787340"></a>
- <a class="indexterm" name="id1571978"></a>
+ <a class="indexterm" name="id5787367"></a>
- <a class="indexterm" name="id1571991"></a>
+ <a class="indexterm" name="id5787379"></a>
- <a class="indexterm" name="id1572005"></a>
+ <a class="indexterm" name="id5787368"></a>
- <a class="indexterm" name="id1572018"></a>
+ <a class="indexterm" name="id5787382"></a>
- <a class="indexterm" name="id1572032"></a>
+ <a class="indexterm" name="id5787410"></a>
- <a class="indexterm" name="id1572046"></a>
+ <a class="indexterm" name="id5787424"></a>
- <a class="indexterm" name="id1572060"></a>
+ <a class="indexterm" name="id5787452"></a>
- <a class="indexterm" name="id1572073"></a>
+ <a class="indexterm" name="id5787437"></a>
- <a class="indexterm" name="id1572087"></a>
+ <a class="indexterm" name="id5787466"></a>
- <a class="indexterm" name="id1572101"></a>
+ <a class="indexterm" name="id5787493"></a>
- <a class="indexterm" name="id1572115"></a>
+ <a class="indexterm" name="id5787504"></a>
- <a class="indexterm" name="id1572128"></a>
+ <a class="indexterm" name="id5787521"></a>
- <a class="indexterm" name="id1572142"></a>
+ <a class="indexterm" name="id5787507"></a>
- <a class="indexterm" name="id1572156"></a>
+ <a class="indexterm" name="id5787409"></a>
- <a class="indexterm" name="id1572169"></a>
+ <a class="indexterm" name="id5787535"></a>
- <a class="indexterm" name="id1572183"></a>
+ <a class="indexterm" name="id5787575"></a>
- <a class="indexterm" name="id1572197"></a>
+ <a class="indexterm" name="id5787587"></a>
- <a class="indexterm" name="id1572210"></a>
+ <a class="indexterm" name="id5787562"></a>
- <a class="indexterm" name="id1572224"></a>
+ <a class="indexterm" name="id5787589"></a>
- <a class="indexterm" name="id1572238"></a>
+ <a class="indexterm" name="id5787631"></a>
- <a class="indexterm" name="id1572252"></a>
+ <a class="indexterm" name="id5787644"></a>
- <a class="indexterm" name="id1572266"></a>
+ <a class="indexterm" name="id5787632"></a>
- <a class="indexterm" name="id1572280"></a>
+ <a class="indexterm" name="id5787617"></a>
- <a class="indexterm" name="id1572294"></a>
+ <a class="indexterm" name="id5787685"></a>
- <a class="indexterm" name="id1572307"></a>
+ <a class="indexterm" name="id5787700"></a>
- <a class="indexterm" name="id1572321"></a>
+ <a class="indexterm" name="id5787712"></a>
- <a class="indexterm" name="id1572335"></a>
+ <a class="indexterm" name="id5787726"></a>
- <a class="indexterm" name="id1572348"></a>
+ <a class="indexterm" name="id5787742"></a>
- <a class="indexterm" name="id1572362"></a>
+ <a class="indexterm" name="id5787728"></a>
- <a class="indexterm" name="id1572376"></a>
+ <a class="indexterm" name="id5787772"></a>
- <a class="indexterm" name="id1572390"></a>
+ <a class="indexterm" name="id5787757"></a>
- <a class="indexterm" name="id1572404"></a>
+ <a class="indexterm" name="id5787797"></a>
- <a class="indexterm" name="id1572418"></a>
+ <a class="indexterm" name="id5787811"></a>
- <a class="indexterm" name="id1572432"></a>
+ <a class="indexterm" name="id5787825"></a>
- <a class="indexterm" name="id1572443"></a>
+ <a class="indexterm" name="id5787837"></a>
- <a class="indexterm" name="id1572459"></a>
+ <a class="indexterm" name="id5787854"></a>
- <a class="indexterm" name="id1572473"></a>
+ <a class="indexterm" name="id5787869"></a>
- <a class="indexterm" name="id1572486"></a>
+ <a class="indexterm" name="id5787881"></a>
- <a class="indexterm" name="id1572500"></a>
+ <a class="indexterm" name="id5787895"></a>
- <a class="indexterm" name="id1572514"></a>
+ <a class="indexterm" name="id5787906"></a>
- <a class="indexterm" name="id1572528"></a>
+ <a class="indexterm" name="id5787924"></a>
- <a class="indexterm" name="id1572541"></a>
+ <a class="indexterm" name="id5787909"></a>
- <a class="indexterm" name="id1572555"></a>
+ <a class="indexterm" name="id5787950"></a>
- <a class="indexterm" name="id1572567"></a>
+ <a class="indexterm" name="id5787962"></a>
- <a class="indexterm" name="id1572582"></a>
+ <a class="indexterm" name="id5787977"></a>
- <a class="indexterm" name="id1572595"></a>
+ <a class="indexterm" name="id5787964"></a>
- <a class="indexterm" name="id1572610"></a>
+ <a class="indexterm" name="id5788006"></a>
- <a class="indexterm" name="id1572624"></a>
+ <a class="indexterm" name="id5788007"></a>
- <a class="indexterm" name="id1572638"></a>
+ <a class="indexterm" name="id5788033"></a>
- <a class="indexterm" name="id1572652"></a>
+ <a class="indexterm" name="id5788020"></a>
- <a class="indexterm" name="id1572665"></a>
+ <a class="indexterm" name="id5788059"></a>
- <a class="indexterm" name="id1572679"></a>
+ <a class="indexterm" name="id5788073"></a>
- <a class="indexterm" name="id1572693"></a>
+ <a class="indexterm" name="id5788086"></a>
- <a class="indexterm" name="id1572706"></a>
+ <a class="indexterm" name="id5788100"></a>
- <a class="indexterm" name="id1572720"></a>
+ <a class="indexterm" name="id5788115"></a>
- <a class="indexterm" name="id1572734"></a>
+ <a class="indexterm" name="id5788102"></a>
- <a class="indexterm" name="id1572748"></a>
+ <a class="indexterm" name="id5788145"></a>
- <a class="indexterm" name="id1572762"></a>
+ <a class="indexterm" name="id5788130"></a>
- <a class="indexterm" name="id1572776"></a>
+ <a class="indexterm" name="id5788171"></a>
- <a class="indexterm" name="id1572790"></a>
+ <a class="indexterm" name="id5788181"></a>
- <a class="indexterm" name="id1572803"></a>
+ <a class="indexterm" name="id5788200"></a>
- <a class="indexterm" name="id1572817"></a>
+ <a class="indexterm" name="id5788159"></a>
- <a class="indexterm" name="id1572831"></a>
+ <a class="indexterm" name="id5788223"></a>
- <a class="indexterm" name="id1572845"></a>
+ <a class="indexterm" name="id5788214"></a>
- <a class="indexterm" name="id1572858"></a>
+ <a class="indexterm" name="id5788256"></a>
- <a class="indexterm" name="id1572872"></a>
+ <a class="indexterm" name="id5788268"></a>
- <a class="indexterm" name="id1572886"></a>
+ <a class="indexterm" name="id5788226"></a>
- <a class="indexterm" name="id1572899"></a>
+ <a class="indexterm" name="id5788296"></a>
- <a class="indexterm" name="id1572913"></a>
+ <a class="indexterm" name="id5788240"></a>
- <a class="indexterm" name="id1572927"></a>
+ <a class="indexterm" name="id5788282"></a>
- <a class="indexterm" name="id1572940"></a>
+ <a class="indexterm" name="id5788310"></a>
- <a class="indexterm" name="id1572954"></a>
+ <a class="indexterm" name="id5788324"></a>
- <a class="indexterm" name="id1572968"></a>
+ <a class="indexterm" name="id5788366"></a>
- <a class="indexterm" name="id1572982"></a>
+ <a class="indexterm" name="id5788352"></a>
- <a class="indexterm" name="id1572996"></a>
+ <a class="indexterm" name="id5788394"></a>
- <a class="indexterm" name="id1573010"></a>
+ <a class="indexterm" name="id5788408"></a>
- <a class="indexterm" name="id1573023"></a>
+ <a class="indexterm" name="id5788421"></a>
- <a class="indexterm" name="id1573037"></a>
+ <a class="indexterm" name="id5788434"></a>
- <a class="indexterm" name="id1573050"></a>
+ <a class="indexterm" name="id5788448"></a>
- <a class="indexterm" name="id1573064"></a>
+ <a class="indexterm" name="id5788463"></a>
- <a class="indexterm" name="id1573078"></a>
+ <a class="indexterm" name="id5788449"></a>
- <a class="indexterm" name="id1573091"></a>
+ <a class="indexterm" name="id5788490"></a>
- <a class="indexterm" name="id1573105"></a>
+ <a class="indexterm" name="id5788477"></a>
- <a class="indexterm" name="id1573119"></a>
+ <a class="indexterm" name="id5788518"></a>
- <a class="indexterm" name="id1573132"></a>
+ <a class="indexterm" name="id5788504"></a>
- <a class="indexterm" name="id1573147"></a>
+ <a class="indexterm" name="id5788546"></a>
- <a class="indexterm" name="id1573160"></a>
+ <a class="indexterm" name="id5788559"></a>
- <a class="indexterm" name="id1573174"></a>
+ <a class="indexterm" name="id5788573"></a>
- <a class="indexterm" name="id1573188"></a>
+ <a class="indexterm" name="id5788560"></a>
- <a class="indexterm" name="id1573201"></a>
+ <a class="indexterm" name="id5788600"></a>
- <a class="indexterm" name="id1573215"></a>
+ <a class="indexterm" name="id5788613"></a>
- <a class="indexterm" name="id1573229"></a>
+ <a class="indexterm" name="id5788629"></a>
- <a class="indexterm" name="id1573242"></a>
+ <a class="indexterm" name="id5788640"></a>
- <a class="indexterm" name="id1573257"></a>
+ <a class="indexterm" name="id5788656"></a>
- <a class="indexterm" name="id1573270"></a>
+ <a class="indexterm" name="id5788670"></a>
- <a class="indexterm" name="id1573282"></a>
+ <a class="indexterm" name="id5788642"></a>
- <a class="indexterm" name="id1573297"></a>
+ <a class="indexterm" name="id5788695"></a>
- <a class="indexterm" name="id1573311"></a>
+ <a class="indexterm" name="id5788709"></a>
- <a class="indexterm" name="id1573324"></a>
+ <a class="indexterm" name="id5788723"></a>
- <a class="indexterm" name="id1573338"></a>
+ <a class="indexterm" name="id5788738"></a>
- <a class="indexterm" name="id1573352"></a>
+ <a class="indexterm" name="id5788724"></a>
- <a class="indexterm" name="id1573366"></a>
+ <a class="indexterm" name="id5788764"></a>
- <a class="indexterm" name="id1573380"></a>
+ <a class="indexterm" name="id5788780"></a>
- <a class="indexterm" name="id1573393"></a>
+ <a class="indexterm" name="id5788752"></a>
- <a class="indexterm" name="id1573407"></a>
+ <a class="indexterm" name="id5788806"></a>
- <a class="indexterm" name="id1573421"></a>
+ <a class="indexterm" name="id5788794"></a>
- <a class="indexterm" name="id1573435"></a>
+ <a class="indexterm" name="id5788832"></a>
- <a class="indexterm" name="id1573448"></a>
+ <a class="indexterm" name="id5788848"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/faststartup.html
^
|
@@ -237,19 +237,19 @@
<p>5. Das war's! Erfreuen Sie sich am Geschwindigkeitsgewinn beim Start.</p>
- <a class="indexterm" name="id1559956"></a>
+ <a class="indexterm" name="id5775301"></a>
- <a class="indexterm" name="id1559965"></a>
+ <a class="indexterm" name="id5775303"></a>
- <a class="indexterm" name="id1559978"></a>
+ <a class="indexterm" name="id5775312"></a>
- <a class="indexterm" name="id1559990"></a>
+ <a class="indexterm" name="id5775336"></a>
- <a class="indexterm" name="id1560005"></a>
+ <a class="indexterm" name="id5775350"></a>
- <a class="indexterm" name="id1560017"></a>
+ <a class="indexterm" name="id5775364"></a>
- <a class="indexterm" name="id1560018"></a>
+ <a class="indexterm" name="id5775378"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/flapping.html
^
|
@@ -311,7 +311,7 @@
<p>Wenn Sie die Flatter-Erkennung nur für einige Hosts oder Services deaktivieren wollen, nutzen Sie die
<span class="emphasis"><em>flap_detection_enabled</em></span>-Direktive in den Host- oder Service-Definitionen, um das zu tun.</p>
- <a class="indexterm" name="id1548619"></a>
+ <a class="indexterm" name="id5763906"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/freshness.html
^
|
@@ -147,7 +147,7 @@
<span class="emphasis"><em>check_dummy</em></span>-Plugin ausgeführt wird, das einen kritischen Status an Icinga meldet. Der Service wird
dann in einen kritischen Zustand gehen (falls das nicht bereits der Fall ist) und wahrscheinlich wird jemand über das Problem
informiert.</p>
- <a class="indexterm" name="id1545998"></a>
+ <a class="indexterm" name="id5761260"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/hostchecks.html
^
|
@@ -217,7 +217,7 @@
Szenario, mit dem man sich befassen muss. Icinga kann erkennen, wenn Hosts anfangen zu flattern, und kann
Benachrichtigungen unterdrücken, bis das Flattern stoppt und sich der Host-Status stabilisiert. Mehr Informationen über die
Erkennungslogik des Flatterns finden Sie <a class="link" href="flapping.html" title="Erkennung und Behandlung von Status-Flattern">hier</a>.</p>
- <a class="indexterm" name="id1525906"></a>
+ <a class="indexterm" name="id5741101"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/howtos.html
^
|
@@ -85,7 +85,7 @@
<p>Herzlichen Dank an ALLE die ihre Dokumentationen anderen zur Verfügung stellen!</p>
- <a class="indexterm" name="id1460112"></a>
+ <a class="indexterm" name="id5674762"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/icinga-api.html
^
|
@@ -285,9 +285,9 @@
</li>
</ol></div>
- <a class="indexterm" name="id1573730"></a>
+ <a class="indexterm" name="id5789125"></a>
- <a class="indexterm" name="id1573740"></a>
+ <a class="indexterm" name="id5789123"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/icinga-web-api.html
^
|
@@ -408,7 +408,7 @@
<p>Dies gibt uns das gleiche Ergebnis zurück, wie zuvor in der GET-Anfrage.</p>
- <a class="indexterm" name="id1574453"></a>
+ <a class="indexterm" name="id5789854"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/icinga-web-config.html
^
|
@@ -302,19 +302,19 @@
<p>Benötigen Sie weitere Informationen? Schauen Sie bitte in unserem<a class="link" href="https://dev.icinga.org/projects/icinga-development/wiki/" target="_top"> Development Wiki.</a></p>
- <a class="indexterm" name="id1541768"></a>
+ <a class="indexterm" name="id5756996"></a>
- <a class="indexterm" name="id1541759"></a>
+ <a class="indexterm" name="id5757002"></a>
- <a class="indexterm" name="id1541786"></a>
+ <a class="indexterm" name="id5757010"></a>
- <a class="indexterm" name="id1541762"></a>
+ <a class="indexterm" name="id5757030"></a>
- <a class="indexterm" name="id1541760"></a>
+ <a class="indexterm" name="id5757039"></a>
- <a class="indexterm" name="id1541822"></a>
+ <a class="indexterm" name="id5757041"></a>
- <a class="indexterm" name="id1541835"></a>
+ <a class="indexterm" name="id5757068"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/icinga-web-introduction.html
^
|
@@ -45,7 +45,7 @@
den Login-Bildschirm sehen</p>
<div class="figure">
-<a name="id1542230"></a><p class="title"><b>Abbildung 6.1. Icinga-Web Login-Bildschirm</b></p>
+<a name="id5757474"></a><p class="title"><b>Abbildung 6.1. Icinga-Web Login-Bildschirm</b></p>
<div class="figure-contents">
@@ -60,7 +60,7 @@
überwachten Hosts und Services dargestellt wird.</p>
<div class="figure">
-<a name="id1542262"></a><p class="title"><b>Abbildung 6.2. Icinga-Web Ãœberblick</b></p>
+<a name="id5757505"></a><p class="title"><b>Abbildung 6.2. Icinga-Web Ãœberblick</b></p>
<div class="figure-contents">
@@ -79,7 +79,7 @@
Suchresultate werden ebenfalls hier in einem neuen Tab geöffnet; das gilt auch für das Öffnen verfügbarer Cronks.</p>
<div class="figure">
-<a name="id1542296"></a><p class="title"><b>Abbildung 6.3. Icinga-Web Zentrale Ãœbersicht</b></p>
+<a name="id5757539"></a><p class="title"><b>Abbildung 6.3. Icinga-Web Zentrale Ãœbersicht</b></p>
<div class="figure-contents">
@@ -109,7 +109,7 @@
</ul></div>
<div class="figure">
-<a name="id1542360"></a><p class="title"><b>Abbildung 6.4. Icinga-Web Status-Cronk</b></p>
+<a name="id5757591"></a><p class="title"><b>Abbildung 6.4. Icinga-Web Status-Cronk</b></p>
<div class="figure-contents">
@@ -126,7 +126,7 @@
oben können Sie den gerade eingeloggten Benutzer bearbeiten oder sich aus Icinga-Web ausloggen.</p>
<div class="figure">
-<a name="id1542395"></a><p class="title"><b>Abbildung 6.5. Icinga-Web top menu</b></p>
+<a name="id5757617"></a><p class="title"><b>Abbildung 6.5. Icinga-Web top menu</b></p>
<div class="figure-contents">
@@ -148,7 +148,7 @@
<p>"Data", um Status-, historische und Konfigurationsdaten zu erhalten</p>
<div class="figure">
-<a name="id1542439"></a><p class="title"><b>Abbildung 6.6. Icinga-Web Data-Cronks</b></p>
+<a name="id5757678"></a><p class="title"><b>Abbildung 6.6. Icinga-Web Data-Cronks</b></p>
<div class="figure-contents">
@@ -163,7 +163,7 @@
<p>"Tactical Overview" bietet generelle Charts und eigene angepasste an (Custom Variables)</p>
<div class="figure">
-<a name="id1542472"></a><p class="title"><b>Abbildung 6.7. Icinga-Web Tactical Overview-Cronks</b></p>
+<a name="id5757649"></a><p class="title"><b>Abbildung 6.7. Icinga-Web Tactical Overview-Cronks</b></p>
<div class="figure-contents">
@@ -178,7 +178,7 @@
<p>"Misc" enthält verschiedene nützliche Cronks, wie iframe für externe Webseiten oder 1,2,3-Spaltenansichten</p>
<div class="figure">
-<a name="id1542505"></a><p class="title"><b>Abbildung 6.8. Icinga-Web "Misc"-Cronks</b></p>
+<a name="id5757744"></a><p class="title"><b>Abbildung 6.8. Icinga-Web "Misc"-Cronks</b></p>
<div class="figure-contents">
@@ -197,7 +197,7 @@
anklicken, wird ein neuer Tab mit näheren Informationen geöffnet.</p>
<div class="figure">
-<a name="id1542540"></a><p class="title"><b>Abbildung 6.9. Icinga-Web Live-Suche</b></p>
+<a name="id5757778"></a><p class="title"><b>Abbildung 6.9. Icinga-Web Live-Suche</b></p>
<div class="figure-contents">
@@ -214,7 +214,7 @@
minimiert werden, um mehr Platz für die zentrale Übersicht zu schaffen.</p>
<div class="figure">
-<a name="id1542574"></a><p class="title"><b>Abbildung 6.10. Icinga-Web Log</b></p>
+<a name="id5757813"></a><p class="title"><b>Abbildung 6.10. Icinga-Web Log</b></p>
<div class="figure-contents">
@@ -234,7 +234,7 @@
zusammen (einige Cronks bieten zusätzliche Items, wie etwas das Senden von Kommandos).</p>
<div class="figure">
-<a name="id1542619"></a><p class="title"><b>Abbildung 6.11. Icinga-Web Cronk bar</b></p>
+<a name="id5757856"></a><p class="title"><b>Abbildung 6.11. Icinga-Web Cronk bar</b></p>
<div class="figure-contents">
@@ -261,7 +261,7 @@
</ul></div>
<div class="figure">
-<a name="id1542672"></a><p class="title"><b>Abbildung 6.12. Icinga-Web Cronk bar</b></p>
+<a name="id5757911"></a><p class="title"><b>Abbildung 6.12. Icinga-Web Cronk bar</b></p>
<div class="figure-contents">
@@ -289,7 +289,7 @@
</li></ul></div>
<div class="figure">
-<a name="id1542738"></a><p class="title"><b>Abbildung 6.13. Icinga-Web Host-Befehle</b></p>
+<a name="id5757976"></a><p class="title"><b>Abbildung 6.13. Icinga-Web Host-Befehle</b></p>
<div class="figure-contents">
@@ -305,7 +305,7 @@
</li></ul></div>
<div class="figure">
-<a name="id1542772"></a><p class="title"><b>Abbildung 6.14. Icinga-Web Service-Befehle</b></p>
+<a name="id5758010"></a><p class="title"><b>Abbildung 6.14. Icinga-Web Service-Befehle</b></p>
<div class="figure-contents">
@@ -324,7 +324,7 @@
unterschiedlich). Wiederholen Sie diesen Schritt, um verschiedene Restriktionen zu setzen.</p>
<div class="figure">
-<a name="id1542807"></a><p class="title"><b>Abbildung 6.15. Icinga-Web Filter restriction</b></p>
+<a name="id5758046"></a><p class="title"><b>Abbildung 6.15. Icinga-Web Filter restriction</b></p>
<div class="figure-contents">
@@ -339,7 +339,7 @@
is, is not). Fügen Sie zu jeder Bedingung einen Wert hinzu; Vorschläge werden eingeblendet, sobald Sie tippen.</p>
<div class="figure">
-<a name="id1542836"></a><p class="title"><b>Abbildung 6.16. Icinga-Web filter condition</b></p>
+<a name="id5758062"></a><p class="title"><b>Abbildung 6.16. Icinga-Web filter condition</b></p>
<div class="figure-contents">
@@ -354,7 +354,7 @@
Restriktionen und Bedingungen hinzufügen/entfernen. Ein aktiver Filter wird rot markiert.</p>
<div class="figure">
-<a name="id1542865"></a><p class="title"><b>Abbildung 6.17. Icinga-Web filter active</b></p>
+<a name="id5758092"></a><p class="title"><b>Abbildung 6.17. Icinga-Web filter active</b></p>
<div class="figure-contents">
@@ -373,7 +373,7 @@
oder "Logs".</p>
<div class="figure">
-<a name="id1542906"></a><p class="title"><b>Abbildung 6.18. Icinga-Web top menu admin</b></p>
+<a name="id5758146"></a><p class="title"><b>Abbildung 6.18. Icinga-Web top menu admin</b></p>
<div class="figure-contents">
@@ -389,7 +389,7 @@
<p>Sie können Benutzer hinzufügen, löschen oder editieren.</p>
<div class="figure">
-<a name="id1542935"></a><p class="title"><b>Abbildung 6.19. Icinga-Web user admin</b></p>
+<a name="id5758182"></a><p class="title"><b>Abbildung 6.19. Icinga-Web user admin</b></p>
<div class="figure-contents">
@@ -420,7 +420,7 @@
</ul></div>
<div class="figure">
-<a name="id1542998"></a><p class="title"><b>Abbildung 6.20. Icinga-Web edit user</b></p>
+<a name="id5758237"></a><p class="title"><b>Abbildung 6.20. Icinga-Web edit user</b></p>
<div class="figure-contents">
@@ -437,7 +437,7 @@
anpassen.</p>
<div class="figure">
-<a name="id1543015"></a><p class="title"><b>Abbildung 6.21. Icinga-Web group admin</b></p>
+<a name="id5758279"></a><p class="title"><b>Abbildung 6.21. Icinga-Web group admin</b></p>
<div class="figure-contents">
@@ -462,7 +462,7 @@
</ul></div>
<div class="figure">
-<a name="id1543080"></a><p class="title"><b>Abbildung 6.22. Icinga-Web groups</b></p>
+<a name="id5758325"></a><p class="title"><b>Abbildung 6.22. Icinga-Web groups</b></p>
<div class="figure-contents">
@@ -479,7 +479,7 @@
Nachfolgend eine Liste der verfügbaren Principals:</p>
<div class="figure">
-<a name="id1543112"></a><p class="title"><b>Abbildung 6.23. Icinga-Web principals</b></p>
+<a name="id5758361"></a><p class="title"><b>Abbildung 6.23. Icinga-Web principals</b></p>
<div class="figure-contents">
@@ -495,7 +495,7 @@
<p>Hier können Sie verschiedene Logs betrachten, um diese als Hilfe bei Ihrer Fehlersuche zu verwenden.</p>
<div class="figure">
-<a name="id1543145"></a><p class="title"><b>Abbildung 6.24. Icinga-Web logs</b></p>
+<a name="id5758381"></a><p class="title"><b>Abbildung 6.24. Icinga-Web logs</b></p>
<div class="figure-contents">
@@ -506,7 +506,7 @@
</div>
<br class="figure-break">
- <a class="indexterm" name="id1543171"></a>
+ <a class="indexterm" name="id5758404"></a>
</div>
<div class="section" title="Einführung in Icinga-Web">
@@ -523,7 +523,7 @@
den Login-Bildschirm sehen</p>
<div class="figure">
-<a name="id1543223"></a><p class="title"><b>Abbildung 6.25. Icinga-Web Login-Bildschirm</b></p>
+<a name="id5758477"></a><p class="title"><b>Abbildung 6.25. Icinga-Web Login-Bildschirm</b></p>
<div class="figure-contents">
@@ -538,7 +538,7 @@
überwachten Hosts und Services dargestellt wird.</p>
<div class="figure">
-<a name="id1543256"></a><p class="title"><b>Abbildung 6.26. Icinga-Web Ãœberblick</b></p>
+<a name="id5758507"></a><p class="title"><b>Abbildung 6.26. Icinga-Web Ãœberblick</b></p>
<div class="figure-contents">
@@ -557,7 +557,7 @@
Suchresultate werden ebenfalls hier in einem neuen Tab geöffnet; das gilt auch für das Öffnen verfügbarer Cronks.</p>
<div class="figure">
-<a name="id1543290"></a><p class="title"><b>Abbildung 6.27. Icinga-Web Zentrale Ãœbersicht</b></p>
+<a name="id5758544"></a><p class="title"><b>Abbildung 6.27. Icinga-Web Zentrale Ãœbersicht</b></p>
<div class="figure-contents">
@@ -587,7 +587,7 @@
</ul></div>
<div class="figure">
-<a name="id1543349"></a><p class="title"><b>Abbildung 6.28. Icinga-Web Status-Cronk</b></p>
+<a name="id5758601"></a><p class="title"><b>Abbildung 6.28. Icinga-Web Status-Cronk</b></p>
<div class="figure-contents">
@@ -604,7 +604,7 @@
Rechts oben können Sie den gerade eingeloggten Benutzer bearbeiten oder sich aus Icinga-Web ausloggen.</p>
<div class="figure">
-<a name="id1543384"></a><p class="title"><b>Abbildung 6.29. Icinga-Web top menu</b></p>
+<a name="id5758638"></a><p class="title"><b>Abbildung 6.29. Icinga-Web top menu</b></p>
<div class="figure-contents">
@@ -626,7 +626,7 @@
<p>"Data", um Status-, historische und Konfigurationsdaten zu erhalten</p>
<div class="figure">
-<a name="id1543429"></a><p class="title"><b>Abbildung 6.30. Icinga-Web Data-Cronks</b></p>
+<a name="id5758679"></a><p class="title"><b>Abbildung 6.30. Icinga-Web Data-Cronks</b></p>
<div class="figure-contents">
@@ -641,7 +641,7 @@
<p>"Tactical Overview" bietet generelle Charts und eigene angepasste an (Custom Variables)</p>
<div class="figure">
-<a name="id1543464"></a><p class="title"><b>Abbildung 6.31. Icinga-Web Tactical Overview-Cronks</b></p>
+<a name="id5758717"></a><p class="title"><b>Abbildung 6.31. Icinga-Web Tactical Overview-Cronks</b></p>
<div class="figure-contents">
@@ -656,7 +656,7 @@
<p>"Misc" enthält verschiedene nützliche Cronks, wie iframe für externe Webseiten oder 1,2,3-Spaltenansichten</p>
<div class="figure">
-<a name="id1543498"></a><p class="title"><b>Abbildung 6.32. Icinga-Web "Misc"-Cronks</b></p>
+<a name="id5758747"></a><p class="title"><b>Abbildung 6.32. Icinga-Web "Misc"-Cronks</b></p>
<div class="figure-contents">
@@ -675,7 +675,7 @@
anklicken, wird ein neuer Tab mit näheren Informationen geöffnet.</p>
<div class="figure">
-<a name="id1543533"></a><p class="title"><b>Abbildung 6.33. Icinga-Web Live-Suche</b></p>
+<a name="id5758653"></a><p class="title"><b>Abbildung 6.33. Icinga-Web Live-Suche</b></p>
<div class="figure-contents">
@@ -692,7 +692,7 @@
minimiert werden, um mehr Platz für die zentrale Übersicht zu schaffen.</p>
<div class="figure">
-<a name="id1543568"></a><p class="title"><b>Abbildung 6.34. Icinga-Web Log</b></p>
+<a name="id5758760"></a><p class="title"><b>Abbildung 6.34. Icinga-Web Log</b></p>
<div class="figure-contents">
@@ -712,7 +712,7 @@
zusammen (einige Cronks bieten zusätzliche Items, wie etwas das Senden von Kommandos).</p>
<div class="figure">
-<a name="id1543612"></a><p class="title"><b>Abbildung 6.35. Icinga-Web Cronk bar</b></p>
+<a name="id5758823"></a><p class="title"><b>Abbildung 6.35. Icinga-Web Cronk bar</b></p>
<div class="figure-contents">
@@ -739,7 +739,7 @@
</ul></div>
<div class="figure">
-<a name="id1543666"></a><p class="title"><b>Abbildung 6.36. Icinga-Web Cronk bar</b></p>
+<a name="id5758913"></a><p class="title"><b>Abbildung 6.36. Icinga-Web Cronk bar</b></p>
<div class="figure-contents">
@@ -767,7 +767,7 @@
</li></ul></div>
<div class="figure">
-<a name="id1543733"></a><p class="title"><b>Abbildung 6.37. Icinga-Web Host-Befehle</b></p>
+<a name="id5758981"></a><p class="title"><b>Abbildung 6.37. Icinga-Web Host-Befehle</b></p>
<div class="figure-contents">
@@ -783,7 +783,7 @@
</li></ul></div>
<div class="figure">
-<a name="id1543769"></a><p class="title"><b>Abbildung 6.38. Icinga-Web Service-Befehle</b></p>
+<a name="id5759016"></a><p class="title"><b>Abbildung 6.38. Icinga-Web Service-Befehle</b></p>
<div class="figure-contents">
@@ -801,7 +801,7 @@
unterschiedlich). Wiederholen Sie diesen Schritt, um verschiedene Restriktionen zu setzen.</p>
<div class="figure">
-<a name="id1543806"></a><p class="title"><b>Abbildung 6.39. Icinga-Web Filter restriction</b></p>
+<a name="id5759056"></a><p class="title"><b>Abbildung 6.39. Icinga-Web Filter restriction</b></p>
<div class="figure-contents">
@@ -816,7 +816,7 @@
is, is not). Fügen Sie zu jeder Bedingung einen Wert hinzu; Vorschläge werden eingeblendet, sobald Sie tippen.</p>
<div class="figure">
-<a name="id1543835"></a><p class="title"><b>Abbildung 6.40. Icinga-Web filter condition</b></p>
+<a name="id5759086"></a><p class="title"><b>Abbildung 6.40. Icinga-Web filter condition</b></p>
<div class="figure-contents">
@@ -831,7 +831,7 @@
Restriktionen und Bedingungen hinzufügen/entfernen. Ein aktiver Filter wird rot markiert.</p>
<div class="figure">
-<a name="id1543864"></a><p class="title"><b>Abbildung 6.41. Icinga-Web filter active</b></p>
+<a name="id5759100"></a><p class="title"><b>Abbildung 6.41. Icinga-Web filter active</b></p>
<div class="figure-contents">
@@ -850,7 +850,7 @@
oder "Logs".</p>
<div class="figure">
-<a name="id1543907"></a><p class="title"><b>Abbildung 6.42. Icinga-Web top menu admin</b></p>
+<a name="id5759155"></a><p class="title"><b>Abbildung 6.42. Icinga-Web top menu admin</b></p>
<div class="figure-contents">
@@ -866,7 +866,7 @@
<p>Sie können Benutzer hinzufügen, löschen oder editieren.</p>
<div class="figure">
-<a name="id1543939"></a><p class="title"><b>Abbildung 6.43. Icinga-Web user admin</b></p>
+<a name="id5759190"></a><p class="title"><b>Abbildung 6.43. Icinga-Web user admin</b></p>
<div class="figure-contents">
@@ -897,7 +897,7 @@
</ul></div>
<div class="figure">
-<a name="id1544000"></a><p class="title"><b>Abbildung 6.44. Icinga-Web edit user</b></p>
+<a name="id5759251"></a><p class="title"><b>Abbildung 6.44. Icinga-Web edit user</b></p>
<div class="figure-contents">
@@ -914,7 +914,7 @@
anpassen.</p>
<div class="figure">
-<a name="id1544031"></a><p class="title"><b>Abbildung 6.45. Icinga-Web group admin</b></p>
+<a name="id5759285"></a><p class="title"><b>Abbildung 6.45. Icinga-Web group admin</b></p>
<div class="figure-contents">
@@ -939,7 +939,7 @@
</ul></div>
<div class="figure">
-<a name="id1544077"></a><p class="title"><b>Abbildung 6.46. Icinga-Web groups</b></p>
+<a name="id5759334"></a><p class="title"><b>Abbildung 6.46. Icinga-Web groups</b></p>
<div class="figure-contents">
@@ -956,7 +956,7 @@
Nachfolgend eine Liste der verfügbaren Principals:</p>
<div class="figure">
-<a name="id1544110"></a><p class="title"><b>Abbildung 6.47. Icinga-Web principals</b></p>
+<a name="id5759369"></a><p class="title"><b>Abbildung 6.47. Icinga-Web principals</b></p>
<div class="figure-contents">
@@ -972,7 +972,7 @@
<p>Hier können Sie verschiedene Logs betrachten, um diese als Hilfe bei Ihrer Fehlersuche zu verwenden.</p>
<div class="figure">
-<a name="id1544143"></a><p class="title"><b>Abbildung 6.48. Icinga-Web logs</b></p>
+<a name="id5759402"></a><p class="title"><b>Abbildung 6.48. Icinga-Web logs</b></p>
<div class="figure-contents">
@@ -989,7 +989,7 @@
"Tasks"-Menü ausführen.</p>
<div class="figure">
-<a name="id1544178"></a><p class="title"><b>Abbildung 6.49. Icinga-Web Tasks</b></p>
+<a name="id5759437"></a><p class="title"><b>Abbildung 6.49. Icinga-Web Tasks</b></p>
<div class="figure-contents">
@@ -1000,7 +1000,7 @@
</div>
<br class="figure-break">
- <a class="indexterm" name="id1544203"></a>
+ <a class="indexterm" name="id5759457"></a>
</div>
</div>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/icinga-web-pnp.html
^
|
@@ -33,7 +33,7 @@
integrieren möchten, lesen Sie bitte die PNP4Nagios <a class="link" href="http://docs.pnp4nagios.org/de/pnp-0.6/start" target="_top">Dokumentation.</a></p>
<div class="figure">
-<a name="id1544228"></a><p class="title"><b>Abbildung 6.50. PNP4Nagios integriert in Icinga-Web</b></p>
+<a name="id5759487"></a><p class="title"><b>Abbildung 6.50. PNP4Nagios integriert in Icinga-Web</b></p>
<div class="figure-contents">
@@ -271,7 +271,7 @@
<p>Das war es auch schon, Sie sind fertig!</p>
- <a class="indexterm" name="id1544496"></a>
+ <a class="indexterm" name="id5759755"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/icinga-web-scratch.html
^
|
@@ -714,9 +714,9 @@
</li>
</ol></div>
- <a class="indexterm" name="id1540856"></a>
+ <a class="indexterm" name="id5756094"></a>
- <a class="indexterm" name="id1541090"></a>
+ <a class="indexterm" name="id5756088"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/icingastats.html
^
|
@@ -117,7 +117,7 @@
<p><span class="inlinemediaobject"><img src="../images/note.gif"></span> Anmerkung: Informationen zum Gebrauch des <span class="emphasis"><em>icingastats</em></span>-Utilitys zu Generierung von
MRTG-Grafiken zu Darstellung von Icinga-Leistungsstatistiken finden Sie <a class="link" href="mrtggraphs.html" title="grafische Darstellung von Performance-Informationen mit MRTG">hier</a>.</p>
- <a class="indexterm" name="id1560346"></a>
+ <a class="indexterm" name="id5775694"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/index.html
^
|
@@ -27,18 +27,18 @@
<div><h1 class="title">
<a name="Icinga"></a><a name="Icinga.xml"></a>Icinga Version 1.4 Dokumentation</h1></div>
<div><div class="legalnotice" title="Rechtlicher Hinweis">
-<a name="id1454466"></a>
+<a name="id5669254"></a>
<p>Copyright 2009-2011 Icinga Development Team.</p>
</div></div>
<div><div class="legalnotice" title="Rechtlicher Hinweis">
-<a name="id1454449"></a>
+<a name="id5669249"></a>
<p>Teile Copyright © von Nagios/Icinga-Community-Mitgliedern - weitere Informationen finden Sie in der Datei THANKS in den
Icinga-Core-Sourcen.</p>
<p>Kudos an Yoann LAMY für die Erstellung des Vautour Style, den wir für Icinga Classic UI nutzen.</p>
</div></div>
<div><div class="legalnotice" title="Rechtlicher Hinweis">
-<a name="id1454633"></a>
+<a name="id5669313"></a>
<p>Icinga ist lizenziert unter den Bedingungen der GNU General Public License Version 2 wie von der Free Software
Foundation veröffentlicht. Das gibt Ihnen das Recht, Icinga unter bestimmten Bedingungen zu kopieren, zu verteilen und/oder
zu modifizieren. Lesen Sie die 'LICENSE'-Datei in der Icinga-Distribution oder lesen Sie die Online-Version der Lizenz für
@@ -48,7 +48,7 @@
GARANTIE DES DESIGNS, DER VERMARKTBARKEIT UND DER TAUGLICHKEIT FÃœR EINEN BESTIMMTEN ZWECK.</span>“</span></p>
</div></div>
<div><div class="legalnotice" title="Rechtlicher Hinweis">
-<a name="id1454652"></a>
+<a name="id5669339"></a>
<p>Nagios ist lizenziert unter den Bedingungen der GNU General Public License Version 2 wie von der Free Software
Foundation veröffentlicht. Das gibt Ihnen das Recht, Nagios unter bestimmten Bedingungen zu kopieren, zu verteilen und/oder
zu modifizieren. Lesen Sie die 'LICENSE'-Datei in der Nagios-Distribution oder lesen Sie die Online-Version der Lizenz für
@@ -115,21 +115,21 @@
<dt><span class="section"><a href="configobject.html">Ãœberblick Objektkonfiguration</a></span></dt>
<dt><span class="section"><a href="objectdefinitions.html">Objektdefinitionen</a></span></dt>
<dd><dl>
-<dt><span class="section"><a href="objectdefinitions.html#id1483847">Host-Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1483849">Hostgruppen-Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1486350">Service-Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1486882">Servicegruppen-Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1489192">Kontakt-Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1489753">Kontaktgruppen-Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1490954">Zeitfenster-Definition (timeperiod)</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1491345">Befehls-Definition (command)</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1491805">Service-Abhängigkeits-Definition (servicedependency)</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1492209">Serviceeskalations-Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1493058">Host-Abhängigkeits-Definition (hostdependency)</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1494201">Host-Eskalations-Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1494903">erweiterte Hostinformations-Definition (hostextinfo)</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1495827">erweiterte Serviceinformations-Definition (serviceextinfo)</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1496606">Module-Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5698705">Host-Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5698708">Hostgruppen-Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5701230">Service-Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5701768">Servicegruppen-Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5704087">Kontakt-Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5704642">Kontaktgruppen-Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5705860">Zeitfenster-Definition (timeperiod)</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5706256">Befehls-Definition (command)</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5706709">Service-Abhängigkeits-Definition (servicedependency)</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5707115">Serviceeskalations-Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5707972">Host-Abhängigkeits-Definition (hostdependency)</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5709124">Host-Eskalations-Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5709830">erweiterte Hostinformations-Definition (hostextinfo)</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5710762">erweiterte Serviceinformations-Definition (serviceextinfo)</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5711541">Module-Definition</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="customobjectvars.html">Maßgeschneiderte Objektvariablen</a></span></dt>
<dt><span class="section"><a href="configcgi.html">Optionen CGI-Konfigurationsdatei</a></span></dt>
@@ -231,32 +231,32 @@
<dd><dl>
<dt><span class="section"><a href="db_intro.html">Einleitung</a></span></dt>
<dd><dl>
-<dt><span class="section"><a href="db_intro.html#id1573753">Zweck</a></span></dt>
-<dt><span class="section"><a href="db_intro.html#id1574484">Design-Ãœberblick</a></span></dt>
-<dt><span class="section"><a href="db_intro.html#id1574573">Instanzen</a></span></dt>
-<dt><span class="section"><a href="db_intro.html#id1574646">Installation</a></span></dt>
+<dt><span class="section"><a href="db_intro.html#id5789165">Zweck</a></span></dt>
+<dt><span class="section"><a href="db_intro.html#id5789884">Design-Ãœberblick</a></span></dt>
+<dt><span class="section"><a href="db_intro.html#id5789942">Instanzen</a></span></dt>
+<dt><span class="section"><a href="db_intro.html#id5790049">Installation</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="components.html">Komponenten</a></span></dt>
<dd><dl>
-<dt><span class="section"><a href="components.html#id1574672">Ãœberblick</a></span></dt>
-<dt><span class="section"><a href="components.html#id1574719">IDOMOD</a></span></dt>
-<dt><span class="section"><a href="components.html#id1574808">LOG2IDO</a></span></dt>
-<dt><span class="section"><a href="components.html#id1574834">FILE2SOCK</a></span></dt>
+<dt><span class="section"><a href="components.html#id5789968">Ãœberblick</a></span></dt>
+<dt><span class="section"><a href="components.html#id5790120">IDOMOD</a></span></dt>
+<dt><span class="section"><a href="components.html#id5790188">LOG2IDO</a></span></dt>
+<dt><span class="section"><a href="components.html#id5790153">FILE2SOCK</a></span></dt>
<dt><span class="section"><a href="components.html#IDO2DB-description">IDO2DB. IDO2DB</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="example-configs.html">Beispielkonfigurationen</a></span></dt>
<dd><dl>
-<dt><span class="section"><a href="example-configs.html#id1574970">Einzelner Server, einzelne Instanz</a></span></dt>
-<dt><span class="section"><a href="example-configs.html#id1575084">Einzelner Server, mehrere Instanzen</a></span></dt>
-<dt><span class="section"><a href="example-configs.html#id1575178">Einzelner Server, einzelne Instanz, Log-Datei-Import</a></span></dt>
+<dt><span class="section"><a href="example-configs.html#id5790375">Einzelner Server, einzelne Instanz</a></span></dt>
+<dt><span class="section"><a href="example-configs.html#id5790485">Einzelner Server, mehrere Instanzen</a></span></dt>
+<dt><span class="section"><a href="example-configs.html#id5790578">Einzelner Server, einzelne Instanz, Log-Datei-Import</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="db_model.html">IDOUtils Database Model</a></span></dt>
<dd><dl>
-<dt><span class="section"><a href="db_model.html#id1575448">Central Tables</a></span></dt>
-<dt><span class="section"><a href="db_model.html#id1575450"> Debugging Tables</a></span></dt>
-<dt><span class="section"><a href="db_model.html#id1575894">Historical Tables</a></span></dt>
-<dt><span class="section"><a href="db_model.html#id1576397"> Current Status Tables</a></span></dt>
-<dt><span class="section"><a href="db_model.html#id1576410"> Configuration Tables</a></span></dt>
+<dt><span class="section"><a href="db_model.html#id5790845">Central Tables</a></span></dt>
+<dt><span class="section"><a href="db_model.html#id5791268"> Debugging Tables</a></span></dt>
+<dt><span class="section"><a href="db_model.html#id5791407">Historical Tables</a></span></dt>
+<dt><span class="section"><a href="db_model.html#id5798162"> Current Status Tables</a></span></dt>
+<dt><span class="section"><a href="db_model.html#id5791802"> Configuration Tables</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="db_changes.html">Datenbank-Anpassungen/Änderungen</a></span></dt>
</dl></dd>
@@ -266,153 +266,153 @@
<div class="list-of-figures">
<p><b>Abbildungsverzeichnis</b></p>
<dl>
-<dt>3.1. <a href="configcgi.html#id1503218">Beispiel des neuen Headers</a>
+<dt>3.1. <a href="configcgi.html#id5718177">Beispiel des neuen Headers</a>
</dt>
-<dt>6.1. <a href="icinga-web-introduction.html#id1542230">Icinga-Web Login-Bildschirm</a>
+<dt>6.1. <a href="icinga-web-introduction.html#id5757474">Icinga-Web Login-Bildschirm</a>
</dt>
-<dt>6.2. <a href="icinga-web-introduction.html#id1542262">Icinga-Web Ãœberblick</a>
+<dt>6.2. <a href="icinga-web-introduction.html#id5757505">Icinga-Web Ãœberblick</a>
</dt>
-<dt>6.3. <a href="icinga-web-introduction.html#id1542296">Icinga-Web Zentrale Ãœbersicht</a>
+<dt>6.3. <a href="icinga-web-introduction.html#id5757539">Icinga-Web Zentrale Ãœbersicht</a>
</dt>
-<dt>6.4. <a href="icinga-web-introduction.html#id1542360">Icinga-Web Status-Cronk</a>
+<dt>6.4. <a href="icinga-web-introduction.html#id5757591">Icinga-Web Status-Cronk</a>
</dt>
-<dt>6.5. <a href="icinga-web-introduction.html#id1542395">Icinga-Web top menu</a>
+<dt>6.5. <a href="icinga-web-introduction.html#id5757617">Icinga-Web top menu</a>
</dt>
-<dt>6.6. <a href="icinga-web-introduction.html#id1542439">Icinga-Web Data-Cronks</a>
+<dt>6.6. <a href="icinga-web-introduction.html#id5757678">Icinga-Web Data-Cronks</a>
</dt>
-<dt>6.7. <a href="icinga-web-introduction.html#id1542472">Icinga-Web Tactical Overview-Cronks</a>
+<dt>6.7. <a href="icinga-web-introduction.html#id5757649">Icinga-Web Tactical Overview-Cronks</a>
</dt>
-<dt>6.8. <a href="icinga-web-introduction.html#id1542505">Icinga-Web "Misc"-Cronks</a>
+<dt>6.8. <a href="icinga-web-introduction.html#id5757744">Icinga-Web "Misc"-Cronks</a>
</dt>
-<dt>6.9. <a href="icinga-web-introduction.html#id1542540">Icinga-Web Live-Suche</a>
+<dt>6.9. <a href="icinga-web-introduction.html#id5757778">Icinga-Web Live-Suche</a>
</dt>
-<dt>6.10. <a href="icinga-web-introduction.html#id1542574">Icinga-Web Log</a>
+<dt>6.10. <a href="icinga-web-introduction.html#id5757813">Icinga-Web Log</a>
</dt>
-<dt>6.11. <a href="icinga-web-introduction.html#id1542619">Icinga-Web Cronk bar</a>
+<dt>6.11. <a href="icinga-web-introduction.html#id5757856">Icinga-Web Cronk bar</a>
</dt>
-<dt>6.12. <a href="icinga-web-introduction.html#id1542672">Icinga-Web Cronk bar</a>
+<dt>6.12. <a href="icinga-web-introduction.html#id5757911">Icinga-Web Cronk bar</a>
</dt>
-<dt>6.13. <a href="icinga-web-introduction.html#id1542738">Icinga-Web Host-Befehle</a>
+<dt>6.13. <a href="icinga-web-introduction.html#id5757976">Icinga-Web Host-Befehle</a>
</dt>
-<dt>6.14. <a href="icinga-web-introduction.html#id1542772">Icinga-Web Service-Befehle</a>
+<dt>6.14. <a href="icinga-web-introduction.html#id5758010">Icinga-Web Service-Befehle</a>
</dt>
-<dt>6.15. <a href="icinga-web-introduction.html#id1542807">Icinga-Web Filter restriction</a>
+<dt>6.15. <a href="icinga-web-introduction.html#id5758046">Icinga-Web Filter restriction</a>
</dt>
-<dt>6.16. <a href="icinga-web-introduction.html#id1542836">Icinga-Web filter condition</a>
+<dt>6.16. <a href="icinga-web-introduction.html#id5758062">Icinga-Web filter condition</a>
</dt>
-<dt>6.17. <a href="icinga-web-introduction.html#id1542865">Icinga-Web filter active</a>
+<dt>6.17. <a href="icinga-web-introduction.html#id5758092">Icinga-Web filter active</a>
</dt>
-<dt>6.18. <a href="icinga-web-introduction.html#id1542906">Icinga-Web top menu admin</a>
+<dt>6.18. <a href="icinga-web-introduction.html#id5758146">Icinga-Web top menu admin</a>
</dt>
-<dt>6.19. <a href="icinga-web-introduction.html#id1542935">Icinga-Web user admin</a>
+<dt>6.19. <a href="icinga-web-introduction.html#id5758182">Icinga-Web user admin</a>
</dt>
-<dt>6.20. <a href="icinga-web-introduction.html#id1542998">Icinga-Web edit user</a>
+<dt>6.20. <a href="icinga-web-introduction.html#id5758237">Icinga-Web edit user</a>
</dt>
-<dt>6.21. <a href="icinga-web-introduction.html#id1543015">Icinga-Web group admin</a>
+<dt>6.21. <a href="icinga-web-introduction.html#id5758279">Icinga-Web group admin</a>
</dt>
-<dt>6.22. <a href="icinga-web-introduction.html#id1543080">Icinga-Web groups</a>
+<dt>6.22. <a href="icinga-web-introduction.html#id5758325">Icinga-Web groups</a>
</dt>
-<dt>6.23. <a href="icinga-web-introduction.html#id1543112">Icinga-Web principals</a>
+<dt>6.23. <a href="icinga-web-introduction.html#id5758361">Icinga-Web principals</a>
</dt>
-<dt>6.24. <a href="icinga-web-introduction.html#id1543145">Icinga-Web logs</a>
+<dt>6.24. <a href="icinga-web-introduction.html#id5758381">Icinga-Web logs</a>
</dt>
-<dt>6.25. <a href="icinga-web-introduction.html#id1543223">Icinga-Web Login-Bildschirm</a>
+<dt>6.25. <a href="icinga-web-introduction.html#id5758477">Icinga-Web Login-Bildschirm</a>
</dt>
-<dt>6.26. <a href="icinga-web-introduction.html#id1543256">Icinga-Web Ãœberblick</a>
+<dt>6.26. <a href="icinga-web-introduction.html#id5758507">Icinga-Web Ãœberblick</a>
</dt>
-<dt>6.27. <a href="icinga-web-introduction.html#id1543290">Icinga-Web Zentrale Ãœbersicht</a>
+<dt>6.27. <a href="icinga-web-introduction.html#id5758544">Icinga-Web Zentrale Ãœbersicht</a>
</dt>
-<dt>6.28. <a href="icinga-web-introduction.html#id1543349">Icinga-Web Status-Cronk</a>
+<dt>6.28. <a href="icinga-web-introduction.html#id5758601">Icinga-Web Status-Cronk</a>
</dt>
-<dt>6.29. <a href="icinga-web-introduction.html#id1543384">Icinga-Web top menu</a>
+<dt>6.29. <a href="icinga-web-introduction.html#id5758638">Icinga-Web top menu</a>
</dt>
-<dt>6.30. <a href="icinga-web-introduction.html#id1543429">Icinga-Web Data-Cronks</a>
+<dt>6.30. <a href="icinga-web-introduction.html#id5758679">Icinga-Web Data-Cronks</a>
</dt>
-<dt>6.31. <a href="icinga-web-introduction.html#id1543464">Icinga-Web Tactical Overview-Cronks</a>
+<dt>6.31. <a href="icinga-web-introduction.html#id5758717">Icinga-Web Tactical Overview-Cronks</a>
</dt>
-<dt>6.32. <a href="icinga-web-introduction.html#id1543498">Icinga-Web "Misc"-Cronks</a>
+<dt>6.32. <a href="icinga-web-introduction.html#id5758747">Icinga-Web "Misc"-Cronks</a>
</dt>
-<dt>6.33. <a href="icinga-web-introduction.html#id1543533">Icinga-Web Live-Suche</a>
+<dt>6.33. <a href="icinga-web-introduction.html#id5758653">Icinga-Web Live-Suche</a>
</dt>
-<dt>6.34. <a href="icinga-web-introduction.html#id1543568">Icinga-Web Log</a>
+<dt>6.34. <a href="icinga-web-introduction.html#id5758760">Icinga-Web Log</a>
</dt>
-<dt>6.35. <a href="icinga-web-introduction.html#id1543612">Icinga-Web Cronk bar</a>
+<dt>6.35. <a href="icinga-web-introduction.html#id5758823">Icinga-Web Cronk bar</a>
</dt>
-<dt>6.36. <a href="icinga-web-introduction.html#id1543666">Icinga-Web Cronk bar</a>
+<dt>6.36. <a href="icinga-web-introduction.html#id5758913">Icinga-Web Cronk bar</a>
</dt>
-<dt>6.37. <a href="icinga-web-introduction.html#id1543733">Icinga-Web Host-Befehle</a>
+<dt>6.37. <a href="icinga-web-introduction.html#id5758981">Icinga-Web Host-Befehle</a>
</dt>
-<dt>6.38. <a href="icinga-web-introduction.html#id1543769">Icinga-Web Service-Befehle</a>
+<dt>6.38. <a href="icinga-web-introduction.html#id5759016">Icinga-Web Service-Befehle</a>
</dt>
-<dt>6.39. <a href="icinga-web-introduction.html#id1543806">Icinga-Web Filter restriction</a>
+<dt>6.39. <a href="icinga-web-introduction.html#id5759056">Icinga-Web Filter restriction</a>
</dt>
-<dt>6.40. <a href="icinga-web-introduction.html#id1543835">Icinga-Web filter condition</a>
+<dt>6.40. <a href="icinga-web-introduction.html#id5759086">Icinga-Web filter condition</a>
</dt>
-<dt>6.41. <a href="icinga-web-introduction.html#id1543864">Icinga-Web filter active</a>
+<dt>6.41. <a href="icinga-web-introduction.html#id5759100">Icinga-Web filter active</a>
</dt>
-<dt>6.42. <a href="icinga-web-introduction.html#id1543907">Icinga-Web top menu admin</a>
+<dt>6.42. <a href="icinga-web-introduction.html#id5759155">Icinga-Web top menu admin</a>
</dt>
-<dt>6.43. <a href="icinga-web-introduction.html#id1543939">Icinga-Web user admin</a>
+<dt>6.43. <a href="icinga-web-introduction.html#id5759190">Icinga-Web user admin</a>
</dt>
-<dt>6.44. <a href="icinga-web-introduction.html#id1544000">Icinga-Web edit user</a>
+<dt>6.44. <a href="icinga-web-introduction.html#id5759251">Icinga-Web edit user</a>
</dt>
-<dt>6.45. <a href="icinga-web-introduction.html#id1544031">Icinga-Web group admin</a>
+<dt>6.45. <a href="icinga-web-introduction.html#id5759285">Icinga-Web group admin</a>
</dt>
-<dt>6.46. <a href="icinga-web-introduction.html#id1544077">Icinga-Web groups</a>
+<dt>6.46. <a href="icinga-web-introduction.html#id5759334">Icinga-Web groups</a>
</dt>
-<dt>6.47. <a href="icinga-web-introduction.html#id1544110">Icinga-Web principals</a>
+<dt>6.47. <a href="icinga-web-introduction.html#id5759369">Icinga-Web principals</a>
</dt>
-<dt>6.48. <a href="icinga-web-introduction.html#id1544143">Icinga-Web logs</a>
+<dt>6.48. <a href="icinga-web-introduction.html#id5759402">Icinga-Web logs</a>
</dt>
-<dt>6.49. <a href="icinga-web-introduction.html#id1544178">Icinga-Web Tasks</a>
+<dt>6.49. <a href="icinga-web-introduction.html#id5759437">Icinga-Web Tasks</a>
</dt>
-<dt>6.50. <a href="icinga-web-pnp.html#id1544228">PNP4Nagios integriert in Icinga-Web</a>
+<dt>6.50. <a href="icinga-web-pnp.html#id5759487">PNP4Nagios integriert in Icinga-Web</a>
</dt>
-<dt>9.1. <a href="reporting.html#id1562748">Icinga-Reporting in Icinga-Web</a>
+<dt>9.1. <a href="reporting.html#id5778105">Icinga-Reporting in Icinga-Web</a>
</dt>
-<dt>9.2. <a href="reporting.html#id1562777">Icinga-Reporting TOP10 in Icinga-Web</a>
+<dt>9.2. <a href="reporting.html#id5778103">Icinga-Reporting TOP10 in Icinga-Web</a>
</dt>
-<dt>10.1. <a href="nrpe.html#id1563648">NRPE</a>
+<dt>10.1. <a href="nrpe.html#id5779033">NRPE</a>
</dt>
-<dt>10.2. <a href="nrpe.html#id1563709">NRPE remote</a>
+<dt>10.2. <a href="nrpe.html#id5779073">NRPE remote</a>
</dt>
-<dt>10.3. <a href="nsca.html#id1565005">NSCA</a>
+<dt>10.3. <a href="nsca.html#id5780371">NSCA</a>
</dt>
-<dt>12.1. <a href="db_intro.html#id1574526">Mögliche Anordnungen</a>
+<dt>12.1. <a href="db_intro.html#id5789926">Mögliche Anordnungen</a>
</dt>
-<dt>12.2. <a href="db_intro.html#id1574539">zukünfte Entwicklung: Eine Instanz, mehrere Datenbanken</a>
+<dt>12.2. <a href="db_intro.html#id5789955">zukünfte Entwicklung: Eine Instanz, mehrere Datenbanken</a>
</dt>
-<dt>12.3. <a href="db_intro.html#id1574593">Instanznamen basierend auf dem geografischen Standorts</a>
+<dt>12.3. <a href="db_intro.html#id5789992">Instanznamen basierend auf dem geografischen Standorts</a>
</dt>
-<dt>12.4. <a href="db_intro.html#id1574616">Instanznamen basierend auf dem Zweck</a>
+<dt>12.4. <a href="db_intro.html#id5790017">Instanznamen basierend auf dem Zweck</a>
</dt>
-<dt>12.5. <a href="components.html#id1574736">Geladenes IDOMOD-Event-Broker-Modul</a>
+<dt>12.5. <a href="components.html#id5790137">Geladenes IDOMOD-Event-Broker-Modul</a>
</dt>
-<dt>12.6. <a href="components.html#id1574758">IDOMOD-Möglichkeiten</a>
+<dt>12.6. <a href="components.html#id5790174">IDOMOD-Möglichkeiten</a>
</dt>
-<dt>12.7. <a href="components.html#id1574816">LOG2IDO-Utility</a>
+<dt>12.7. <a href="components.html#id5790234">LOG2IDO-Utility</a>
</dt>
-<dt>12.8. <a href="components.html#id1574842">FILE2SOCK-Utility</a>
+<dt>12.8. <a href="components.html#id5790266">FILE2SOCK-Utility</a>
</dt>
-<dt>12.9. <a href="components.html#id1574911">IDO2DB-Daemon</a>
+<dt>12.9. <a href="components.html#id5790316">IDO2DB-Daemon</a>
</dt>
-<dt>12.10. <a href="components.html#id1574939">IDO2DB mit mehreren Clients</a>
+<dt>12.10. <a href="components.html#id5790329">IDO2DB mit mehreren Clients</a>
</dt>
-<dt>12.11. <a href="example-configs.html#id1574988">Einzelserver, Einzelinstanz</a>
+<dt>12.11. <a href="example-configs.html#id5790391">Einzelserver, Einzelinstanz</a>
</dt>
-<dt>12.12. <a href="example-configs.html#id1575103">Einzelner Server, mehrere Instanzen</a>
+<dt>12.12. <a href="example-configs.html#id5790502">Einzelner Server, mehrere Instanzen</a>
</dt>
-<dt>12.13. <a href="example-configs.html#id1575216">Einzelner Server, einzelne Instanz, Log-Datei-Import</a>
+<dt>12.13. <a href="example-configs.html#id5790616">Einzelner Server, einzelne Instanz, Log-Datei-Import</a>
</dt>
-<dt>12.14. <a href="db_model.html#id1575515">Relationship of Central Tables</a>
+<dt>12.14. <a href="db_model.html#id5790918">Relationship of Central Tables</a>
</dt>
-<dt>12.15. <a href="db_model.html#id1575932">Relationship of Debugging Tables</a>
+<dt>12.15. <a href="db_model.html#id5790820">Relationship of Debugging Tables</a>
</dt>
-<dt>12.16. <a href="db_model.html#id1576641">Relationship of Historical Tables</a>
+<dt>12.16. <a href="db_model.html#id5792043">Relationship of Historical Tables</a>
</dt>
-<dt>12.17. <a href="db_model.html#id1583200">Relationship of Current Status Tables</a>
+<dt>12.17. <a href="db_model.html#id5798607">Relationship of Current Status Tables</a>
</dt>
-<dt>12.18. <a href="db_model.html#id1587723">Relationship of Configuration Tables</a>
+<dt>12.18. <a href="db_model.html#id5803439">Relationship of Configuration Tables</a>
</dt>
</dl>
</div>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/int-mklivestatus.html
^
|
@@ -76,8 +76,8 @@
</li>
</ol></div>
- <a class="indexterm" name="id1562216"></a>
- <a class="indexterm" name="id1562226"></a>
+ <a class="indexterm" name="id5777562"></a>
+ <a class="indexterm" name="id5777578"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/int-snmptrap.html
^
|
@@ -42,7 +42,7 @@
fortgeschrittenes Trap-Behandlungssystem, das mit Icinga integriert werden kann.</p>
<p>Yep, das ist alles.</p>
- <a class="indexterm" name="id1561779"></a>
+ <a class="indexterm" name="id5777129"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/int-tcpwrappers.html
^
|
@@ -139,7 +139,7 @@
erhalten. Die Plugin-Ausgabe für den Alarm könnte wie folgt aussehen:</p>
<pre class="screen"> Denied sshd2-sdn-ar-002mnminnP321.dialsprint.net</pre>
- <a class="indexterm" name="id1562096"></a>
+ <a class="indexterm" name="id5777452"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/integration.html
^
|
@@ -102,7 +102,7 @@
</li>
</ul></div>
- <a class="indexterm" name="id1561705"></a>
+ <a class="indexterm" name="id5777057"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/ix01.html
^
|
@@ -24,7 +24,7 @@
</div>
<div class="index" title="Stichwortverzeichnis">
<div class="titlepage"><div><div><h2 class="title">
-<a name="id1595430"></a>Stichwortverzeichnis</h2></div></div></div>
+<a name="id5810834"></a>Stichwortverzeichnis</h2></div></div></div>
<div class="index">
<div class="indexdiv">
<h3>A</h3>
@@ -1743,6 +1743,9 @@
<dt>show_tac_header=</dt>
<dd><dl><dt>Tactical Overview-Header anzeigen, <a class="indexterm" href="configcgi.html#configcgi-show_tac_header">Optionen CGI-Konfigurationsdatei</a>
</dt></dl></dd>
+<dt>show_tac_header_pending=</dt>
+<dd><dl><dt>Pending-Anzahlen in Tactical Overview-Header anzeigen, <a class="indexterm" href="configcgi.html#configcgi-show_tac_header_pending">Optionen CGI-Konfigurationsdatei</a>
+</dt></dl></dd>
<dt>Sicherheitsüberlegungen, <a class="indexterm" href="security.html">Sicherheitsüberlegungen</a>
</dt>
<dt>sleep_time=</dt>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/largeinstalltweaks.html
^
|
@@ -66,7 +66,7 @@
Icinga-Installation sorgen.</p>
</li>
</ol></div>
- <a class="indexterm" name="id1560144"></a>
+ <a class="indexterm" name="id5775495"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/macrolist.html
^
|
@@ -2943,313 +2943,313 @@
<p><a name="macrolist-note10"></a><span class="bold"><strong><sup>10</sup></strong></span> Auswertungsmakros sind
nicht als Umgebungsvariablen verfügbar, wenn die Option <a class="link" href="configmain.html#configmain-use_large_installation_tweaks">use_large_installation_tweaks</a> aktiviert ist, weil sie ziemlich
CPU-intensiv zu berechnen sind.</p>
- <a class="indexterm" name="id1522381"></a>
- <a class="indexterm" name="id1522391"></a>
- <a class="indexterm" name="id1522400"></a>
- <a class="indexterm" name="id1522409"></a>
- <a class="indexterm" name="id1522419"></a>
- <a class="indexterm" name="id1522428"></a>
- <a class="indexterm" name="id1522438"></a>
- <a class="indexterm" name="id1522447"></a>
- <a class="indexterm" name="id1522458"></a>
- <a class="indexterm" name="id1522466"></a>
- <a class="indexterm" name="id1522477"></a>
- <a class="indexterm" name="id1522485"></a>
- <a class="indexterm" name="id1522496"></a>
- <a class="indexterm" name="id1522504"></a>
- <a class="indexterm" name="id1522515"></a>
- <a class="indexterm" name="id1522523"></a>
- <a class="indexterm" name="id1522534"></a>
- <a class="indexterm" name="id1522542"></a>
- <a class="indexterm" name="id1522552"></a>
- <a class="indexterm" name="id1522561"></a>
- <a class="indexterm" name="id1522572"></a>
- <a class="indexterm" name="id1522044"></a>
- <a class="indexterm" name="id1522587"></a>
- <a class="indexterm" name="id1522596"></a>
- <a class="indexterm" name="id1522605"></a>
- <a class="indexterm" name="id1522614"></a>
- <a class="indexterm" name="id1522626"></a>
- <a class="indexterm" name="id1522633"></a>
- <a class="indexterm" name="id1522643"></a>
- <a class="indexterm" name="id1522653"></a>
- <a class="indexterm" name="id1522664"></a>
- <a class="indexterm" name="id1522672"></a>
- <a class="indexterm" name="id1522682"></a>
- <a class="indexterm" name="id1522692"></a>
- <a class="indexterm" name="id1522700"></a>
- <a class="indexterm" name="id1522712"></a>
- <a class="indexterm" name="id1522719"></a>
- <a class="indexterm" name="id1522730"></a>
- <a class="indexterm" name="id1522738"></a>
- <a class="indexterm" name="id1522746"></a>
- <a class="indexterm" name="id1522758"></a>
- <a class="indexterm" name="id1522767"></a>
- <a class="indexterm" name="id1522779"></a>
- <a class="indexterm" name="id1522786"></a>
- <a class="indexterm" name="id1522797"></a>
- <a class="indexterm" name="id1522805"></a>
- <a class="indexterm" name="id1522816"></a>
- <a class="indexterm" name="id1522824"></a>
- <a class="indexterm" name="id1522834"></a>
- <a class="indexterm" name="id1522843"></a>
- <a class="indexterm" name="id1522853"></a>
- <a class="indexterm" name="id1522863"></a>
- <a class="indexterm" name="id1522871"></a>
- <a class="indexterm" name="id1522880"></a>
- <a class="indexterm" name="id1522890"></a>
- <a class="indexterm" name="id1522900"></a>
- <a class="indexterm" name="id1522910"></a>
- <a class="indexterm" name="id1522920"></a>
- <a class="indexterm" name="id1522929"></a>
- <a class="indexterm" name="id1522939"></a>
- <a class="indexterm" name="id1522948"></a>
- <a class="indexterm" name="id1522959"></a>
- <a class="indexterm" name="id1522968"></a>
- <a class="indexterm" name="id1522978"></a>
- <a class="indexterm" name="id1522987"></a>
- <a class="indexterm" name="id1522998"></a>
- <a class="indexterm" name="id1523007"></a>
- <a class="indexterm" name="id1523017"></a>
- <a class="indexterm" name="id1523026"></a>
- <a class="indexterm" name="id1523036"></a>
- <a class="indexterm" name="id1523046"></a>
- <a class="indexterm" name="id1523056"></a>
- <a class="indexterm" name="id1523065"></a>
- <a class="indexterm" name="id1523075"></a>
- <a class="indexterm" name="id1523085"></a>
- <a class="indexterm" name="id1523098"></a>
- <a class="indexterm" name="id1523107"></a>
- <a class="indexterm" name="id1523116"></a>
- <a class="indexterm" name="id1523126"></a>
- <a class="indexterm" name="id1523135"></a>
- <a class="indexterm" name="id1523146"></a>
- <a class="indexterm" name="id1523152"></a>
- <a class="indexterm" name="id1523162"></a>
- <a class="indexterm" name="id1523175"></a>
- <a class="indexterm" name="id1523183"></a>
- <a class="indexterm" name="id1523192"></a>
- <a class="indexterm" name="id1523203"></a>
- <a class="indexterm" name="id1523212"></a>
- <a class="indexterm" name="id1523222"></a>
- <a class="indexterm" name="id1523231"></a>
- <a class="indexterm" name="id1523241"></a>
- <a class="indexterm" name="id1523250"></a>
- <a class="indexterm" name="id1523260"></a>
- <a class="indexterm" name="id1523269"></a>
- <a class="indexterm" name="id1523280"></a>
- <a class="indexterm" name="id1523288"></a>
- <a class="indexterm" name="id1523299"></a>
- <a class="indexterm" name="id1523307"></a>
- <a class="indexterm" name="id1523318"></a>
- <a class="indexterm" name="id1523327"></a>
- <a class="indexterm" name="id1523337"></a>
- <a class="indexterm" name="id1523346"></a>
- <a class="indexterm" name="id1523355"></a>
- <a class="indexterm" name="id1523365"></a>
- <a class="indexterm" name="id1523374"></a>
- <a class="indexterm" name="id1523385"></a>
- <a class="indexterm" name="id1523393"></a>
- <a class="indexterm" name="id1523403"></a>
- <a class="indexterm" name="id1523414"></a>
- <a class="indexterm" name="id1523422"></a>
- <a class="indexterm" name="id1523432"></a>
- <a class="indexterm" name="id1523443"></a>
- <a class="indexterm" name="id1523451"></a>
- <a class="indexterm" name="id1523462"></a>
- <a class="indexterm" name="id1523470"></a>
- <a class="indexterm" name="id1523480"></a>
- <a class="indexterm" name="id1523491"></a>
- <a class="indexterm" name="id1523501"></a>
- <a class="indexterm" name="id1523509"></a>
- <a class="indexterm" name="id1523520"></a>
- <a class="indexterm" name="id1523530"></a>
- <a class="indexterm" name="id1523540"></a>
- <a class="indexterm" name="id1523550"></a>
- <a class="indexterm" name="id1523558"></a>
- <a class="indexterm" name="id1523568"></a>
- <a class="indexterm" name="id1523578"></a>
- <a class="indexterm" name="id1523588"></a>
- <a class="indexterm" name="id1523598"></a>
- <a class="indexterm" name="id1523607"></a>
- <a class="indexterm" name="id1523617"></a>
- <a class="indexterm" name="id1523627"></a>
- <a class="indexterm" name="id1523636"></a>
- <a class="indexterm" name="id1523647"></a>
- <a class="indexterm" name="id1523655"></a>
- <a class="indexterm" name="id1523666"></a>
- <a class="indexterm" name="id1523674"></a>
- <a class="indexterm" name="id1523684"></a>
- <a class="indexterm" name="id1523694"></a>
- <a class="indexterm" name="id1523702"></a>
- <a class="indexterm" name="id1523712"></a>
- <a class="indexterm" name="id1523721"></a>
- <a class="indexterm" name="id1523730"></a>
- <a class="indexterm" name="id1523742"></a>
- <a class="indexterm" name="id1523749"></a>
- <a class="indexterm" name="id1523761"></a>
- <a class="indexterm" name="id1523768"></a>
- <a class="indexterm" name="id1523777"></a>
- <a class="indexterm" name="id1523787"></a>
- <a class="indexterm" name="id1523797"></a>
- <a class="indexterm" name="id1523807"></a>
- <a class="indexterm" name="id1523819"></a>
- <a class="indexterm" name="id1523826"></a>
- <a class="indexterm" name="id1523838"></a>
- <a class="indexterm" name="id1523845"></a>
- <a class="indexterm" name="id1523857"></a>
- <a class="indexterm" name="id1523864"></a>
- <a class="indexterm" name="id1523873"></a>
- <a class="indexterm" name="id1523883"></a>
- <a class="indexterm" name="id1523892"></a>
- <a class="indexterm" name="id1523902"></a>
- <a class="indexterm" name="id1523912"></a>
- <a class="indexterm" name="id1523921"></a>
- <a class="indexterm" name="id1523931"></a>
- <a class="indexterm" name="id1523944"></a>
- <a class="indexterm" name="id1523950"></a>
- <a class="indexterm" name="id1523960"></a>
- <a class="indexterm" name="id1523969"></a>
- <a class="indexterm" name="id1523980"></a>
- <a class="indexterm" name="id1523992"></a>
- <a class="indexterm" name="id1523998"></a>
- <a class="indexterm" name="id1524008"></a>
- <a class="indexterm" name="id1524018"></a>
- <a class="indexterm" name="id1524030"></a>
- <a class="indexterm" name="id1524037"></a>
- <a class="indexterm" name="id1524046"></a>
- <a class="indexterm" name="id1524057"></a>
- <a class="indexterm" name="id1524069"></a>
- <a class="indexterm" name="id1524075"></a>
- <a class="indexterm" name="id1524085"></a>
- <a class="indexterm" name="id1524095"></a>
- <a class="indexterm" name="id1524107"></a>
- <a class="indexterm" name="id1524114"></a>
- <a class="indexterm" name="id1524124"></a>
- <a class="indexterm" name="id1524133"></a>
- <a class="indexterm" name="id1524143"></a>
- <a class="indexterm" name="id1524155"></a>
- <a class="indexterm" name="id1524162"></a>
- <a class="indexterm" name="id1524172"></a>
- <a class="indexterm" name="id1524182"></a>
- <a class="indexterm" name="id1524191"></a>
- <a class="indexterm" name="id1524201"></a>
- <a class="indexterm" name="id1524213"></a>
- <a class="indexterm" name="id1524220"></a>
- <a class="indexterm" name="id1524230"></a>
- <a class="indexterm" name="id1524240"></a>
- <a class="indexterm" name="id1524252"></a>
- <a class="indexterm" name="id1524262"></a>
- <a class="indexterm" name="id1524271"></a>
- <a class="indexterm" name="id1524281"></a>
- <a class="indexterm" name="id1524291"></a>
- <a class="indexterm" name="id1524300"></a>
- <a class="indexterm" name="id1524310"></a>
- <a class="indexterm" name="id1524319"></a>
- <a class="indexterm" name="id1524329"></a>
- <a class="indexterm" name="id1524338"></a>
- <a class="indexterm" name="id1524348"></a>
- <a class="indexterm" name="id1524357"></a>
- <a class="indexterm" name="id1524367"></a>
- <a class="indexterm" name="id1524376"></a>
- <a class="indexterm" name="id1524386"></a>
- <a class="indexterm" name="id1524395"></a>
- <a class="indexterm" name="id1524406"></a>
- <a class="indexterm" name="id1524414"></a>
- <a class="indexterm" name="id1524425"></a>
- <a class="indexterm" name="id1524434"></a>
- <a class="indexterm" name="id1524444"></a>
- <a class="indexterm" name="id1524453"></a>
- <a class="indexterm" name="id1524463"></a>
- <a class="indexterm" name="id1524472"></a>
- <a class="indexterm" name="id1524482"></a>
- <a class="indexterm" name="id1524491"></a>
- <a class="indexterm" name="id1524502"></a>
- <a class="indexterm" name="id1524510"></a>
- <a class="indexterm" name="id1524521"></a>
- <a class="indexterm" name="id1524530"></a>
- <a class="indexterm" name="id1524540"></a>
- <a class="indexterm" name="id1524548"></a>
- <a class="indexterm" name="id1524559"></a>
- <a class="indexterm" name="id1524568"></a>
- <a class="indexterm" name="id1524578"></a>
- <a class="indexterm" name="id1524587"></a>
- <a class="indexterm" name="id1524598"></a>
- <a class="indexterm" name="id1524606"></a>
- <a class="indexterm" name="id1524617"></a>
- <a class="indexterm" name="id1524625"></a>
- <a class="indexterm" name="id1524636"></a>
- <a class="indexterm" name="id1524645"></a>
- <a class="indexterm" name="id1524655"></a>
- <a class="indexterm" name="id1524664"></a>
- <a class="indexterm" name="id1524674"></a>
- <a class="indexterm" name="id1524683"></a>
- <a class="indexterm" name="id1524693"></a>
- <a class="indexterm" name="id1524702"></a>
- <a class="indexterm" name="id1524713"></a>
- <a class="indexterm" name="id1524721"></a>
- <a class="indexterm" name="id1524732"></a>
- <a class="indexterm" name="id1524740"></a>
- <a class="indexterm" name="id1524751"></a>
- <a class="indexterm" name="id1524760"></a>
- <a class="indexterm" name="id1524770"></a>
- <a class="indexterm" name="id1524779"></a>
- <a class="indexterm" name="id1524789"></a>
- <a class="indexterm" name="id1524798"></a>
- <a class="indexterm" name="id1524807"></a>
- <a class="indexterm" name="id1524818"></a>
- <a class="indexterm" name="id1524826"></a>
- <a class="indexterm" name="id1524836"></a>
- <a class="indexterm" name="id1524844"></a>
- <a class="indexterm" name="id1524853"></a>
- <a class="indexterm" name="id1524866"></a>
- <a class="indexterm" name="id1524874"></a>
- <a class="indexterm" name="id1524885"></a>
- <a class="indexterm" name="id1524895"></a>
- <a class="indexterm" name="id1524904"></a>
- <a class="indexterm" name="id1524913"></a>
- <a class="indexterm" name="id1524923"></a>
- <a class="indexterm" name="id1524933"></a>
- <a class="indexterm" name="id1524942"></a>
- <a class="indexterm" name="id1524952"></a>
- <a class="indexterm" name="id1524962"></a>
- <a class="indexterm" name="id1524973"></a>
- <a class="indexterm" name="id1524983"></a>
- <a class="indexterm" name="id1524991"></a>
- <a class="indexterm" name="id1525001"></a>
- <a class="indexterm" name="id1525012"></a>
- <a class="indexterm" name="id1525022"></a>
- <a class="indexterm" name="id1525031"></a>
- <a class="indexterm" name="id1525040"></a>
- <a class="indexterm" name="id1525051"></a>
- <a class="indexterm" name="id1525060"></a>
- <a class="indexterm" name="id1525069"></a>
- <a class="indexterm" name="id1525079"></a>
- <a class="indexterm" name="id1525090"></a>
- <a class="indexterm" name="id1525096"></a>
- <a class="indexterm" name="id1525106"></a>
- <a class="indexterm" name="id1525115"></a>
- <a class="indexterm" name="id1525125"></a>
- <a class="indexterm" name="id1525135"></a>
- <a class="indexterm" name="id1525145"></a>
- <a class="indexterm" name="id1525154"></a>
- <a class="indexterm" name="id1525164"></a>
- <a class="indexterm" name="id1525174"></a>
- <a class="indexterm" name="id1525184"></a>
- <a class="indexterm" name="id1525193"></a>
- <a class="indexterm" name="id1525203"></a>
- <a class="indexterm" name="id1525212"></a>
- <a class="indexterm" name="id1525222"></a>
- <a class="indexterm" name="id1525231"></a>
- <a class="indexterm" name="id1525241"></a>
- <a class="indexterm" name="id1525251"></a>
- <a class="indexterm" name="id1525260"></a>
- <a class="indexterm" name="id1525271"></a>
- <a class="indexterm" name="id1525280"></a>
- <a class="indexterm" name="id1525290"></a>
- <a class="indexterm" name="id1525299"></a>
- <a class="indexterm" name="id1525309"></a>
- <a class="indexterm" name="id1525318"></a>
+ <a class="indexterm" name="id5737585"></a>
+ <a class="indexterm" name="id5737595"></a>
+ <a class="indexterm" name="id5737602"></a>
+ <a class="indexterm" name="id5737612"></a>
+ <a class="indexterm" name="id5737621"></a>
+ <a class="indexterm" name="id5737631"></a>
+ <a class="indexterm" name="id5737640"></a>
+ <a class="indexterm" name="id5737648"></a>
+ <a class="indexterm" name="id5737657"></a>
+ <a class="indexterm" name="id5737667"></a>
+ <a class="indexterm" name="id5737676"></a>
+ <a class="indexterm" name="id5737686"></a>
+ <a class="indexterm" name="id5737696"></a>
+ <a class="indexterm" name="id5737705"></a>
+ <a class="indexterm" name="id5737715"></a>
+ <a class="indexterm" name="id5737725"></a>
+ <a class="indexterm" name="id5737735"></a>
+ <a class="indexterm" name="id5737743"></a>
+ <a class="indexterm" name="id5737754"></a>
+ <a class="indexterm" name="id5737763"></a>
+ <a class="indexterm" name="id5737745"></a>
+ <a class="indexterm" name="id5737782"></a>
+ <a class="indexterm" name="id5737789"></a>
+ <a class="indexterm" name="id5737799"></a>
+ <a class="indexterm" name="id5737809"></a>
+ <a class="indexterm" name="id5737819"></a>
+ <a class="indexterm" name="id5737829"></a>
+ <a class="indexterm" name="id5737820"></a>
+ <a class="indexterm" name="id5737831"></a>
+ <a class="indexterm" name="id5737855"></a>
+ <a class="indexterm" name="id5737866"></a>
+ <a class="indexterm" name="id5737873"></a>
+ <a class="indexterm" name="id5737883"></a>
+ <a class="indexterm" name="id5737875"></a>
+ <a class="indexterm" name="id5737902"></a>
+ <a class="indexterm" name="id5737909"></a>
+ <a class="indexterm" name="id5737920"></a>
+ <a class="indexterm" name="id5737930"></a>
+ <a class="indexterm" name="id5737940"></a>
+ <a class="indexterm" name="id5737948"></a>
+ <a class="indexterm" name="id5737960"></a>
+ <a class="indexterm" name="id5737949"></a>
+ <a class="indexterm" name="id5737975"></a>
+ <a class="indexterm" name="id5737984"></a>
+ <a class="indexterm" name="id5737994"></a>
+ <a class="indexterm" name="id5737986"></a>
+ <a class="indexterm" name="id5738013"></a>
+ <a class="indexterm" name="id5738023"></a>
+ <a class="indexterm" name="id5738014"></a>
+ <a class="indexterm" name="id5738024"></a>
+ <a class="indexterm" name="id5738043"></a>
+ <a class="indexterm" name="id5738061"></a>
+ <a class="indexterm" name="id5738070"></a>
+ <a class="indexterm" name="id5738081"></a>
+ <a class="indexterm" name="id5738091"></a>
+ <a class="indexterm" name="id5738082"></a>
+ <a class="indexterm" name="id5738093"></a>
+ <a class="indexterm" name="id5738121"></a>
+ <a class="indexterm" name="id5738110"></a>
+ <a class="indexterm" name="id5738141"></a>
+ <a class="indexterm" name="id5738149"></a>
+ <a class="indexterm" name="id5738158"></a>
+ <a class="indexterm" name="id5738169"></a>
+ <a class="indexterm" name="id5738160"></a>
+ <a class="indexterm" name="id5738187"></a>
+ <a class="indexterm" name="id5738197"></a>
+ <a class="indexterm" name="id5738205"></a>
+ <a class="indexterm" name="id5738216"></a>
+ <a class="indexterm" name="id5738226"></a>
+ <a class="indexterm" name="id5738235"></a>
+ <a class="indexterm" name="id5738244"></a>
+ <a class="indexterm" name="id5738254"></a>
+ <a class="indexterm" name="id5738262"></a>
+ <a class="indexterm" name="id5738273"></a>
+ <a class="indexterm" name="id5738283"></a>
+ <a class="indexterm" name="id5738292"></a>
+ <a class="indexterm" name="id5738302"></a>
+ <a class="indexterm" name="id5738312"></a>
+ <a class="indexterm" name="id5738303"></a>
+ <a class="indexterm" name="id5738332"></a>
+ <a class="indexterm" name="id5738314"></a>
+ <a class="indexterm" name="id5738351"></a>
+ <a class="indexterm" name="id5738341"></a>
+ <a class="indexterm" name="id5738371"></a>
+ <a class="indexterm" name="id5738360"></a>
+ <a class="indexterm" name="id5738389"></a>
+ <a class="indexterm" name="id5738398"></a>
+ <a class="indexterm" name="id5738408"></a>
+ <a class="indexterm" name="id5738418"></a>
+ <a class="indexterm" name="id5738428"></a>
+ <a class="indexterm" name="id5738419"></a>
+ <a class="indexterm" name="id5738400"></a>
+ <a class="indexterm" name="id5738457"></a>
+ <a class="indexterm" name="id5738446"></a>
+ <a class="indexterm" name="id5738448"></a>
+ <a class="indexterm" name="id5738485"></a>
+ <a class="indexterm" name="id5738466"></a>
+ <a class="indexterm" name="id5738476"></a>
+ <a class="indexterm" name="id5738494"></a>
+ <a class="indexterm" name="id5738506"></a>
+ <a class="indexterm" name="id5738514"></a>
+ <a class="indexterm" name="id5738524"></a>
+ <a class="indexterm" name="id5738553"></a>
+ <a class="indexterm" name="id5738561"></a>
+ <a class="indexterm" name="id5738544"></a>
+ <a class="indexterm" name="id5738562"></a>
+ <a class="indexterm" name="id5738592"></a>
+ <a class="indexterm" name="id5738582"></a>
+ <a class="indexterm" name="id5738611"></a>
+ <a class="indexterm" name="id5738620"></a>
+ <a class="indexterm" name="id5738612"></a>
+ <a class="indexterm" name="id5738637"></a>
+ <a class="indexterm" name="id5738647"></a>
+ <a class="indexterm" name="id5738657"></a>
+ <a class="indexterm" name="id5738668"></a>
+ <a class="indexterm" name="id5738677"></a>
+ <a class="indexterm" name="id5738659"></a>
+ <a class="indexterm" name="id5738696"></a>
+ <a class="indexterm" name="id5738707"></a>
+ <a class="indexterm" name="id5738716"></a>
+ <a class="indexterm" name="id5738726"></a>
+ <a class="indexterm" name="id5738736"></a>
+ <a class="indexterm" name="id5738745"></a>
+ <a class="indexterm" name="id5738755"></a>
+ <a class="indexterm" name="id5738765"></a>
+ <a class="indexterm" name="id5738775"></a>
+ <a class="indexterm" name="id5738784"></a>
+ <a class="indexterm" name="id5738794"></a>
+ <a class="indexterm" name="id5738803"></a>
+ <a class="indexterm" name="id5738786"></a>
+ <a class="indexterm" name="id5738822"></a>
+ <a class="indexterm" name="id5738831"></a>
+ <a class="indexterm" name="id5738843"></a>
+ <a class="indexterm" name="id5738833"></a>
+ <a class="indexterm" name="id5738813"></a>
+ <a class="indexterm" name="id5738871"></a>
+ <a class="indexterm" name="id5738882"></a>
+ <a class="indexterm" name="id5738891"></a>
+ <a class="indexterm" name="id5738901"></a>
+ <a class="indexterm" name="id5738873"></a>
+ <a class="indexterm" name="id5738920"></a>
+ <a class="indexterm" name="id5738928"></a>
+ <a class="indexterm" name="id5738939"></a>
+ <a class="indexterm" name="id5738948"></a>
+ <a class="indexterm" name="id5738959"></a>
+ <a class="indexterm" name="id5738966"></a>
+ <a class="indexterm" name="id5738978"></a>
+ <a class="indexterm" name="id5738968"></a>
+ <a class="indexterm" name="id5738949"></a>
+ <a class="indexterm" name="id5738979"></a>
+ <a class="indexterm" name="id5738998"></a>
+ <a class="indexterm" name="id5739025"></a>
+ <a class="indexterm" name="id5739015"></a>
+ <a class="indexterm" name="id5739044"></a>
+ <a class="indexterm" name="id5739053"></a>
+ <a class="indexterm" name="id5739065"></a>
+ <a class="indexterm" name="id5739074"></a>
+ <a class="indexterm" name="id5739085"></a>
+ <a class="indexterm" name="id5739075"></a>
+ <a class="indexterm" name="id5739103"></a>
+ <a class="indexterm" name="id5739114"></a>
+ <a class="indexterm" name="id5739124"></a>
+ <a class="indexterm" name="id5739133"></a>
+ <a class="indexterm" name="id5739141"></a>
+ <a class="indexterm" name="id5739153"></a>
+ <a class="indexterm" name="id5739161"></a>
+ <a class="indexterm" name="id5739170"></a>
+ <a class="indexterm" name="id5739180"></a>
+ <a class="indexterm" name="id5739171"></a>
+ <a class="indexterm" name="id5739199"></a>
+ <a class="indexterm" name="id5739208"></a>
+ <a class="indexterm" name="id5739219"></a>
+ <a class="indexterm" name="id5739227"></a>
+ <a class="indexterm" name="id5739238"></a>
+ <a class="indexterm" name="id5739229"></a>
+ <a class="indexterm" name="id5739256"></a>
+ <a class="indexterm" name="id5739266"></a>
+ <a class="indexterm" name="id5739277"></a>
+ <a class="indexterm" name="id5739285"></a>
+ <a class="indexterm" name="id5739296"></a>
+ <a class="indexterm" name="id5739286"></a>
+ <a class="indexterm" name="id5739314"></a>
+ <a class="indexterm" name="id5739324"></a>
+ <a class="indexterm" name="id5739335"></a>
+ <a class="indexterm" name="id5739344"></a>
+ <a class="indexterm" name="id5739353"></a>
+ <a class="indexterm" name="id5739364"></a>
+ <a class="indexterm" name="id5739373"></a>
+ <a class="indexterm" name="id5739383"></a>
+ <a class="indexterm" name="id5739374"></a>
+ <a class="indexterm" name="id5739354"></a>
+ <a class="indexterm" name="id5739412"></a>
+ <a class="indexterm" name="id5739402"></a>
+ <a class="indexterm" name="id5739432"></a>
+ <a class="indexterm" name="id5739422"></a>
+ <a class="indexterm" name="id5739442"></a>
+ <a class="indexterm" name="id5739460"></a>
+ <a class="indexterm" name="id5739450"></a>
+ <a class="indexterm" name="id5739479"></a>
+ <a class="indexterm" name="id5739488"></a>
+ <a class="indexterm" name="id5739480"></a>
+ <a class="indexterm" name="id5739489"></a>
+ <a class="indexterm" name="id5739498"></a>
+ <a class="indexterm" name="id5739527"></a>
+ <a class="indexterm" name="id5739517"></a>
+ <a class="indexterm" name="id5739547"></a>
+ <a class="indexterm" name="id5739557"></a>
+ <a class="indexterm" name="id5739566"></a>
+ <a class="indexterm" name="id5739576"></a>
+ <a class="indexterm" name="id5739538"></a>
+ <a class="indexterm" name="id5739593"></a>
+ <a class="indexterm" name="id5739604"></a>
+ <a class="indexterm" name="id5739614"></a>
+ <a class="indexterm" name="id5739624"></a>
+ <a class="indexterm" name="id5739632"></a>
+ <a class="indexterm" name="id5739642"></a>
+ <a class="indexterm" name="id5739651"></a>
+ <a class="indexterm" name="id5739662"></a>
+ <a class="indexterm" name="id5739671"></a>
+ <a class="indexterm" name="id5739680"></a>
+ <a class="indexterm" name="id5739690"></a>
+ <a class="indexterm" name="id5739700"></a>
+ <a class="indexterm" name="id5739709"></a>
+ <a class="indexterm" name="id5739681"></a>
+ <a class="indexterm" name="id5739729"></a>
+ <a class="indexterm" name="id5739718"></a>
+ <a class="indexterm" name="id5739748"></a>
+ <a class="indexterm" name="id5739758"></a>
+ <a class="indexterm" name="id5739767"></a>
+ <a class="indexterm" name="id5739777"></a>
+ <a class="indexterm" name="id5739785"></a>
+ <a class="indexterm" name="id5739768"></a>
+ <a class="indexterm" name="id5739787"></a>
+ <a class="indexterm" name="id5739814"></a>
+ <a class="indexterm" name="id5739826"></a>
+ <a class="indexterm" name="id5739834"></a>
+ <a class="indexterm" name="id5739844"></a>
+ <a class="indexterm" name="id5739854"></a>
+ <a class="indexterm" name="id5739863"></a>
+ <a class="indexterm" name="id5739873"></a>
+ <a class="indexterm" name="id5739883"></a>
+ <a class="indexterm" name="id5739892"></a>
+ <a class="indexterm" name="id5739903"></a>
+ <a class="indexterm" name="id5739912"></a>
+ <a class="indexterm" name="id5739921"></a>
+ <a class="indexterm" name="id5739932"></a>
+ <a class="indexterm" name="id5739941"></a>
+ <a class="indexterm" name="id5739950"></a>
+ <a class="indexterm" name="id5739960"></a>
+ <a class="indexterm" name="id5739970"></a>
+ <a class="indexterm" name="id5739952"></a>
+ <a class="indexterm" name="id5739989"></a>
+ <a class="indexterm" name="id5739998"></a>
+ <a class="indexterm" name="id5739990"></a>
+ <a class="indexterm" name="id5740017"></a>
+ <a class="indexterm" name="id5740026"></a>
+ <a class="indexterm" name="id5740036"></a>
+ <a class="indexterm" name="id5740018"></a>
+ <a class="indexterm" name="id5740055"></a>
+ <a class="indexterm" name="id5740037"></a>
+ <a class="indexterm" name="id5740057"></a>
+ <a class="indexterm" name="id5740085"></a>
+ <a class="indexterm" name="id5740095"></a>
+ <a class="indexterm" name="id5740074"></a>
+ <a class="indexterm" name="id5740114"></a>
+ <a class="indexterm" name="id5740096"></a>
+ <a class="indexterm" name="id5740132"></a>
+ <a class="indexterm" name="id5740122"></a>
+ <a class="indexterm" name="id5740151"></a>
+ <a class="indexterm" name="id5740161"></a>
+ <a class="indexterm" name="id5740171"></a>
+ <a class="indexterm" name="id5740180"></a>
+ <a class="indexterm" name="id5740190"></a>
+ <a class="indexterm" name="id5740199"></a>
+ <a class="indexterm" name="id5740209"></a>
+ <a class="indexterm" name="id5740219"></a>
+ <a class="indexterm" name="id5740229"></a>
+ <a class="indexterm" name="id5740220"></a>
+ <a class="indexterm" name="id5740249"></a>
+ <a class="indexterm" name="id5740239"></a>
+ <a class="indexterm" name="id5740268"></a>
+ <a class="indexterm" name="id5740278"></a>
+ <a class="indexterm" name="id5740269"></a>
+ <a class="indexterm" name="id5740296"></a>
+ <a class="indexterm" name="id5740308"></a>
+ <a class="indexterm" name="id5740298"></a>
+ <a class="indexterm" name="id5740326"></a>
+ <a class="indexterm" name="id5740335"></a>
+ <a class="indexterm" name="id5740346"></a>
+ <a class="indexterm" name="id5740354"></a>
+ <a class="indexterm" name="id5740365"></a>
+ <a class="indexterm" name="id5740375"></a>
+ <a class="indexterm" name="id5740356"></a>
+ <a class="indexterm" name="id5740393"></a>
+ <a class="indexterm" name="id5740402"></a>
+ <a class="indexterm" name="id5740413"></a>
+ <a class="indexterm" name="id5740404"></a>
+ <a class="indexterm" name="id5740431"></a>
+ <a class="indexterm" name="id5740441"></a>
+ <a class="indexterm" name="id5740452"></a>
+ <a class="indexterm" name="id5740460"></a>
+ <a class="indexterm" name="id5740470"></a>
+ <a class="indexterm" name="id5740461"></a>
+ <a class="indexterm" name="id5740488"></a>
+ <a class="indexterm" name="id5740499"></a>
+ <a class="indexterm" name="id5740509"></a>
+ <a class="indexterm" name="id5740500"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/macros.html
^
|
@@ -254,7 +254,7 @@
<p>Eine Liste aller in Icinga verfügbaren Makros sowie eine Tabelle, wann sie eingesetzt werden können, finden Sie
<a class="link" href="macrolist.html" title="Standard-Makros in Icinga">hier</a>.</p>
- <a class="indexterm" name="id1506825"></a>
+ <a class="indexterm" name="id5721935"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/monitoring-linux.html
^
|
@@ -79,8 +79,8 @@
<p>Eine andere gebräuchliche Methode der Überwachung von entfernten Linux/Unix-Hosts ist die Nutzung des <a class="link" href="addons.html#addons-nrpe">NRPE-Addons</a>. NRPE erlaubt Ihnen, Plugins auf entfernten Linux/Unix-Hosts
auszuführen. Das ist nützlich, wenn Sie lokale Ressourcen/Attribute wie z.B. Plattenbelegung, CPU-Auslastung, Speichernutzung
auf einem entfernten Host überwachen wollen.</p>
- <a class="indexterm" name="id1462593"></a>
- <a class="indexterm" name="id1462573"></a>
+ <a class="indexterm" name="id5677331"></a>
+ <a class="indexterm" name="id5677341"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/monitoring-netware.html
^
|
@@ -74,8 +74,8 @@
<p>Dank an <a class="link" href="http://www.novell.com/coolsolutions/author/1301.html" target="_top">Christian Mies</a>, <a class="link" href="http://www.novell.com/coolsolutions/author/1525.html" target="_top">Rainer Brunold</a> und andere, die auf der Novell-Site
Nagios- und Netware-Dokumentation, Addons usw. beigetragen haben!</p>
- <a class="indexterm" name="id1462786"></a>
- <a class="indexterm" name="id1462797"></a>
+ <a class="indexterm" name="id5677516"></a>
+ <a class="indexterm" name="id5677531"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/monitoring-printers.html
^
|
@@ -220,8 +220,8 @@
<p>Wenn die Überprüfung irgendwelche Fehler enthält, dann müssen Sie diese beheben, bevor Sie fortfahren. Stellen Sie sicher,
dass Sie Icinga nicht (erneut) starten, bevor die Überprüfung ohne Fehler durchgelaufen ist!</p>
- <a class="indexterm" name="id1463311"></a>
- <a class="indexterm" name="id1463338"></a>
+ <a class="indexterm" name="id5677936"></a>
+ <a class="indexterm" name="id5678079"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/monitoring-publicservices.html
^
|
@@ -343,8 +343,8 @@
<p>Wenn der Überprüfungsprozess irgendwelche Fehler produziert, dann verbessern Sie Ihre Konfigurationsdatei, bevor Sie
fortfahren. Stellen Sie sicher, dass Sie Icinga nicht erneut starten, bevor der Überprüfungsprozess ohne Fehler
durchläuft!</p>
- <a class="indexterm" name="id1464729"></a>
- <a class="indexterm" name="id1464700"></a>
+ <a class="indexterm" name="id5679472"></a>
+ <a class="indexterm" name="id5679482"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/monitoring-routers.html
^
|
@@ -272,8 +272,8 @@
<p>Wenn die Überprüfung irgendwelche Fehler enthält, dann müssen Sie diese beheben, bevor Sie fortfahren. Stellen Sie sicher,
dass Sie Icinga nicht (erneut) starten, bevor die Überprüfung ohne Fehler durchgelaufen ist!</p>
- <a class="indexterm" name="id1463972"></a>
- <a class="indexterm" name="id1464014"></a>
+ <a class="indexterm" name="id5678750"></a>
+ <a class="indexterm" name="id5678717"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/monitoring-windows.html
^
|
@@ -343,9 +343,9 @@
<p>Wenn die Überprüfung irgendwelche Fehler enthält, dann müssen Sie diese beheben, bevor Sie fortfahren. Stellen Sie sicher,
dass Sie Icinga nicht (erneut) starten, bevor die Überprüfung ohne Fehler durchgelaufen ist!</p>
- <a class="indexterm" name="id1462373"></a>
- <a class="indexterm" name="id1462410"></a>
- <a class="indexterm" name="id1462420"></a>
+ <a class="indexterm" name="id5677139"></a>
+ <a class="indexterm" name="id5677144"></a>
+ <a class="indexterm" name="id5677157"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/mrtggraphs.html
^
|
@@ -346,7 +346,7 @@
</tbody>
</table>
</div>
- <a class="indexterm" name="id1561445"></a>
+ <a class="indexterm" name="id5776801"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/networkreachability.html
^
|
@@ -141,8 +141,8 @@
<p>Falls Sie sich eine Flut von Benachrichtigungen über UNREACHABLE-Zustände während eines Netzwerkausfalls ersparen möchten,
können Sie die unreachable (u)-Option der <span class="emphasis"><em>notification_options</em></span>-Direktive in Ihren <a class="link" href="objectdefinitions.html#objectdefinitions-host">Host</a>-Definitionen und/oder die <span class="emphasis"><em>host_notification_options</em></span>-Direktive
in Ihren <a class="link" href="objectdefinitions.html#objectdefinitions-contact">Kontakt</a>-Direktiven ausschließen.</p>
- <a class="indexterm" name="id1528476"></a>
- <a class="indexterm" name="id1528487"></a>
+ <a class="indexterm" name="id5743691"></a>
+ <a class="indexterm" name="id5743706"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/notifications.html
^
|
@@ -279,13 +279,13 @@
Audio-Hinweise auf einem anderen Rechner abspielen möchten, dann sehen Sie sich die Projekte <a class="link" href="http://radscan.com/nas.html" target="_top">Network Audio System (NAS)</a> und <a class="link" href="http://rplay.doit.org/" target="_top">rplay</a>
an.</p>
- <a class="indexterm" name="id1529292"></a>
+ <a class="indexterm" name="id5744507"></a>
- <a class="indexterm" name="id1529303"></a>
+ <a class="indexterm" name="id5744523"></a>
- <a class="indexterm" name="id1529316"></a>
+ <a class="indexterm" name="id5744537"></a>
- <a class="indexterm" name="id1529330"></a>
+ <a class="indexterm" name="id5744524"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/nrpe.html
^
|
@@ -53,7 +53,7 @@
bei der Sicherheit überwiegen. SSL kann übrigens aktiviert werden, wenn Sie eine sicherere Verbindung benötigen.</p>
<div class="figure">
-<a name="id1563648"></a><p class="title"><b>Abbildung 10.1. NRPE</b></p>
+<a name="id5779033"></a><p class="title"><b>Abbildung 10.1. NRPE</b></p>
<div class="figure-contents">
@@ -82,7 +82,7 @@
Relais.</p>
<div class="figure">
-<a name="id1563709"></a><p class="title"><b>Abbildung 10.2. NRPE remote</b></p>
+<a name="id5779073"></a><p class="title"><b>Abbildung 10.2. NRPE remote</b></p>
<div class="figure-contents">
@@ -660,9 +660,9 @@
</li>
</ul></div>
- <a class="indexterm" name="id1564949"></a>
+ <a class="indexterm" name="id5780307"></a>
- <a class="indexterm" name="id1564964"></a>
+ <a class="indexterm" name="id5780329"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/nsca.html
^
|
@@ -36,7 +36,7 @@
des Namens werden auch Host-Prüfergebnisse übertragen.</p>
<div class="figure">
-<a name="id1565005"></a><p class="title"><b>Abbildung 10.3. NSCA</b></p>
+<a name="id5780371"></a><p class="title"><b>Abbildung 10.3. NSCA</b></p>
<div class="figure-contents">
@@ -382,9 +382,9 @@
sollten die Daten dann auch im klassischen Web-Interface sehen sowie feststellen, dass der Service-Status von "Pending" auf "OK"
gewechselt ist und die Ausgabe die Daten enthält, die Sie versandt haben.</p>
- <a class="indexterm" name="id1565738"></a>
+ <a class="indexterm" name="id5781128"></a>
- <a class="indexterm" name="id1565769"></a>
+ <a class="indexterm" name="id5781142"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/objectdefinitions.html
^
|
@@ -103,13 +103,13 @@
<p><a class="link" href="objectdefinitions.html#objectdefinitions-serviceextinfo">erweiterte Service-Informationsdefinitionen</a></p>
- <a class="indexterm" name="id1483823"></a>
+ <a class="indexterm" name="id5698677"></a>
- <a class="indexterm" name="id1483833"></a>
+ <a class="indexterm" name="id5698691"></a>
<div class="section" title="Host-Definition">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1483847"></a>Host-Definition</h3></div></div></div>
+<a name="id5698705"></a>Host-Definition</h3></div></div></div>
<p><a name="objectdefinitions-host"></a><span class="bold"><strong>Host-Definition</strong></span></p>
@@ -703,14 +703,14 @@
</table>
</div>
- <a class="indexterm" name="id1484786"></a>
+ <a class="indexterm" name="id5701209"></a>
- <a class="indexterm" name="id1486336"></a>
+ <a class="indexterm" name="id5699651"></a>
</div>
<div class="section" title="Hostgruppen-Definition">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1483849"></a>Hostgruppen-Definition</h3></div></div></div>
+<a name="id5698708"></a>Hostgruppen-Definition</h3></div></div></div>
<p><a name="objectdefinitions-hostgroup"></a><span class="bold"><strong>Hostgruppen-Definition</strong></span></p>
@@ -840,14 +840,14 @@
</table>
</div>
- <a class="indexterm" name="id1486861"></a>
+ <a class="indexterm" name="id5701743"></a>
- <a class="indexterm" name="id1486869"></a>
+ <a class="indexterm" name="id5701751"></a>
</div>
<div class="section" title="Service-Definition">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1486350"></a>Service-Definition</h3></div></div></div>
+<a name="id5701230"></a>Service-Definition</h3></div></div></div>
<p><a name="objectdefinitions-service"></a><span class="bold"><strong>Service-Definition</strong></span></p>
@@ -1378,14 +1378,14 @@
</table>
</div>
- <a class="indexterm" name="id1487750"></a>
+ <a class="indexterm" name="id5702630"></a>
- <a class="indexterm" name="id1489178"></a>
+ <a class="indexterm" name="id5704073"></a>
</div>
<div class="section" title="Servicegruppen-Definition">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1486882"></a>Servicegruppen-Definition</h3></div></div></div>
+<a name="id5701768"></a>Servicegruppen-Definition</h3></div></div></div>
<p><a name="objectdefinitions-servicegroup"></a><span class="bold"><strong>Servicegruppen-Definition</strong></span></p>
@@ -1521,14 +1521,14 @@
</table>
</div>
- <a class="indexterm" name="id1489729"></a>
+ <a class="indexterm" name="id5704374"></a>
- <a class="indexterm" name="id1489739"></a>
+ <a class="indexterm" name="id5704628"></a>
</div>
<div class="section" title="Kontakt-Definition">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1489192"></a>Kontakt-Definition</h3></div></div></div>
+<a name="id5704087"></a>Kontakt-Definition</h3></div></div></div>
<p><a name="objectdefinitions-contact"></a><span class="bold"><strong>Kontakt-Definition</strong></span></p>
@@ -1790,14 +1790,14 @@
</table>
</div>
- <a class="indexterm" name="id1490930"></a>
+ <a class="indexterm" name="id5705827"></a>
- <a class="indexterm" name="id1490938"></a>
+ <a class="indexterm" name="id5705844"></a>
</div>
<div class="section" title="Kontaktgruppen-Definition">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1489753"></a>Kontaktgruppen-Definition</h3></div></div></div>
+<a name="id5704642"></a>Kontaktgruppen-Definition</h3></div></div></div>
<p><a name="objectdefinitions-contactgroup"></a><span class="bold"><strong>Kontaktgruppen-Definition</strong></span></p>
@@ -1891,14 +1891,14 @@
</table>
</div>
- <a class="indexterm" name="id1491323"></a>
+ <a class="indexterm" name="id5706233"></a>
- <a class="indexterm" name="id1491332"></a>
+ <a class="indexterm" name="id5706240"></a>
</div>
<div class="section" title="Zeitfenster-Definition (timeperiod)">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1490954"></a>Zeitfenster-Definition (timeperiod)</h3></div></div></div>
+<a name="id5705860"></a>Zeitfenster-Definition (timeperiod)</h3></div></div></div>
<p><a name="objectdefinitions-timeperiod"></a><span class="bold"><strong>Zeitfenster-Definition</strong></span></p>
@@ -2048,14 +2048,14 @@
</table>
</div>
- <a class="indexterm" name="id1491781"></a>
+ <a class="indexterm" name="id5706549"></a>
- <a class="indexterm" name="id1491790"></a>
+ <a class="indexterm" name="id5706694"></a>
</div>
<div class="section" title="Befehls-Definition (command)">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1491345"></a>Befehls-Definition (command)</h3></div></div></div>
+<a name="id5706256"></a>Befehls-Definition (command)</h3></div></div></div>
<p><a name="objectdefinitions-command"></a><span class="bold"><strong>Befehls-Definition</strong></span></p>
@@ -2149,14 +2149,14 @@
</table>
</div>
- <a class="indexterm" name="id1492188"></a>
+ <a class="indexterm" name="id5707096"></a>
- <a class="indexterm" name="id1492196"></a>
+ <a class="indexterm" name="id5707102"></a>
</div>
<div class="section" title="Service-Abhängigkeits-Definition (servicedependency)">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1491805"></a>Service-Abhängigkeits-Definition (servicedependency)</h3></div></div></div>
+<a name="id5706709"></a>Service-Abhängigkeits-Definition (servicedependency)</h3></div></div></div>
<p><a name="objectdefinitions-servicedependency"></a><span class="bold"><strong>Service-Abhängigkeits-Definition</strong></span></p>
@@ -2336,14 +2336,14 @@
</table>
</div>
- <a class="indexterm" name="id1493035"></a>
+ <a class="indexterm" name="id5707940"></a>
- <a class="indexterm" name="id1493043"></a>
+ <a class="indexterm" name="id5707957"></a>
</div>
<div class="section" title="Serviceeskalations-Definition">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1492209"></a>Serviceeskalations-Definition</h3></div></div></div>
+<a name="id5707115"></a>Serviceeskalations-Definition</h3></div></div></div>
<p><a name="objectdefinitions-serviceescalation"></a><span class="bold"><strong>Serviceeskalations-Definition</strong></span></p>
@@ -2610,14 +2610,14 @@
</table>
</div>
- <a class="indexterm" name="id1494178"></a>
+ <a class="indexterm" name="id5709104"></a>
- <a class="indexterm" name="id1494186"></a>
+ <a class="indexterm" name="id5709110"></a>
</div>
<div class="section" title="Host-Abhängigkeits-Definition (hostdependency)">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1493058"></a>Host-Abhängigkeits-Definition (hostdependency)</h3></div></div></div>
+<a name="id5707972"></a>Host-Abhängigkeits-Definition (hostdependency)</h3></div></div></div>
<p><a name="objectdefinitions-hostdependency"></a><span class="bold"><strong>Host-Abhängigkeits-Definition</strong></span></p>
@@ -2767,14 +2767,14 @@
</table>
</div>
- <a class="indexterm" name="id1494882"></a>
+ <a class="indexterm" name="id5709809"></a>
- <a class="indexterm" name="id1494890"></a>
+ <a class="indexterm" name="id5709815"></a>
</div>
<div class="section" title="Host-Eskalations-Definition">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1494201"></a>Host-Eskalations-Definition</h3></div></div></div>
+<a name="id5709124"></a>Host-Eskalations-Definition</h3></div></div></div>
<p><a name="objectdefinitions-hostescalation"></a><span class="bold"><strong>Host-Eskalations-Definition</strong></span></p>
@@ -2993,14 +2993,14 @@
</table>
</div>
- <a class="indexterm" name="id1495806"></a>
+ <a class="indexterm" name="id5710688"></a>
- <a class="indexterm" name="id1495814"></a>
+ <a class="indexterm" name="id5710746"></a>
</div>
<div class="section" title="erweiterte Hostinformations-Definition (hostextinfo)">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1494903"></a>erweiterte Hostinformations-Definition (hostextinfo)</h3></div></div></div>
+<a name="id5709830"></a>erweiterte Hostinformations-Definition (hostextinfo)</h3></div></div></div>
<p><a name="objectdefinitions-hostextinfo"></a><span class="bold"><strong>erweiterte Hostinformations-Definition</strong></span></p>
@@ -3192,14 +3192,14 @@
</table>
</div>
- <a class="indexterm" name="id1496582"></a>
+ <a class="indexterm" name="id5711520"></a>
- <a class="indexterm" name="id1496593"></a>
+ <a class="indexterm" name="id5711526"></a>
</div>
<div class="section" title="erweiterte Serviceinformations-Definition (serviceextinfo)">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1495827"></a>erweiterte Serviceinformations-Definition (serviceextinfo)</h3></div></div></div>
+<a name="id5710762"></a>erweiterte Serviceinformations-Definition (serviceextinfo)</h3></div></div></div>
<p><a name="objectdefinitions-serviceextinfo"></a><span class="bold"><strong>erweiterte
@@ -3360,14 +3360,14 @@
</table>
</div>
- <a class="indexterm" name="id1497215"></a>
+ <a class="indexterm" name="id5712158"></a>
- <a class="indexterm" name="id1497223"></a>
+ <a class="indexterm" name="id5712135"></a>
</div>
<div class="section" title="Module-Definition">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1496606"></a>Module-Definition</h3></div></div></div>
+<a name="id5711541"></a>Module-Definition</h3></div></div></div>
<p><a name="objectdefinitions-module"></a><span class="bold"><strong>Module Definition</strong></span></p>
@@ -3493,7 +3493,7 @@
</td></tr>
</table></div>
- <a class="indexterm" name="id1497616"></a>
+ <a class="indexterm" name="id5712555"></a>
</div>
</div>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/objectinheritance.html
^
|
@@ -537,12 +537,12 @@
</tr></tbody>
</table>
</div>
- <a class="indexterm" name="id1556197"></a>
- <a class="indexterm" name="id1556204"></a>
- <a class="indexterm" name="id1556214"></a>
- <a class="indexterm" name="id1556223"></a>
- <a class="indexterm" name="id1556233"></a>
- <a class="indexterm" name="id1556243"></a>
+ <a class="indexterm" name="id5771513"></a>
+ <a class="indexterm" name="id5771530"></a>
+ <a class="indexterm" name="id5771540"></a>
+ <a class="indexterm" name="id5771547"></a>
+ <a class="indexterm" name="id5771556"></a>
+ <a class="indexterm" name="id5771567"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/objecttricks.html
^
|
@@ -441,27 +441,27 @@
<span class="emphasis"><em>weitere Hostgruppen-Direktiven</em></span> ...
}</pre>
- <a class="indexterm" name="id1557855"></a>
+ <a class="indexterm" name="id5773190"></a>
- <a class="indexterm" name="id1557872"></a>
+ <a class="indexterm" name="id5773205"></a>
- <a class="indexterm" name="id1557882"></a>
+ <a class="indexterm" name="id5773214"></a>
- <a class="indexterm" name="id1557891"></a>
+ <a class="indexterm" name="id5773218"></a>
- <a class="indexterm" name="id1557901"></a>
+ <a class="indexterm" name="id5773162"></a>
- <a class="indexterm" name="id1557910"></a>
+ <a class="indexterm" name="id5773236"></a>
- <a class="indexterm" name="id1557925"></a>
+ <a class="indexterm" name="id5773259"></a>
- <a class="indexterm" name="id1557935"></a>
+ <a class="indexterm" name="id5773269"></a>
- <a class="indexterm" name="id1557949"></a>
+ <a class="indexterm" name="id5773285"></a>
- <a class="indexterm" name="id1557960"></a>
+ <a class="indexterm" name="id5773293"></a>
- <a class="indexterm" name="id1557970"></a>
+ <a class="indexterm" name="id5773296"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/oncallrotation.html
^
|
@@ -264,7 +264,7 @@
die meisten Datums- und Zeitbereiche abzubilden, die Sie brauchen könnten, also betrachten Sie die verschiedenen Formate, die
Sie benutzen können. Wenn Sie einen Fehler bei der Erstellung von Zeitfenster-Definitionen machen, dann sollten Sie darauf
achten, jemand anderem mehr Bereitschaftszeit zu geben. :-)</p>
- <a class="indexterm" name="id1549633"></a>
+ <a class="indexterm" name="id5764917"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/passivechecks.html
^
|
@@ -213,7 +213,7 @@
Icinga-Host läuft und einem Client, der auf entfernten Hosts ausgeführt wird. Der Daemon lauscht auf Verbindungen von
entfernten Hosts, führt mit den Ergebnissen einige grundlegende Gültigkeitsprüfungen durch und schreibt die Prüfergebnisse
direkt in das "external command file" (wie oben beschrieben). Mehr Informationen über das NSCA-Addon finden Sie <a class="link" href="addons.html#addons-nsca">hier</a>.</p>
- <a class="indexterm" name="id1526986"></a>
+ <a class="indexterm" name="id5742191"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/passivestatetranslation.html
^
|
@@ -98,7 +98,7 @@
<p>Die automatische Übersetzung von passiven Host-Prüfzuständen wird durch die <a class="link" href="configmain.html#configmain-translate_passive_host_checks">translate_passive_host_checks</a>-Variable kontrolliert. Durch die
Aktivierung wird Icinga automatisch DOWN- und UNREACHABLE-Zustände von entfernten Quellen in die korrekten Zustände für
die lokale Instanz übersetzen.</p>
- <a class="indexterm" name="id1553598"></a>
+ <a class="indexterm" name="id5768904"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/perfdata.html
^
|
@@ -164,7 +164,7 @@
periodisch Befehle auszuführen, um regelmäßig die Performance-Daten-Dateien zu verarbeiten (z.B., um sie zu rotieren). Das
Intervall, in dem diese Befehle ausgeführt werden, ist durch die <a class="link" href="configmain.html#configmain-host_perfdata_file_processing_interval">host_perfdata_file_processing_interval</a>- und <a class="link" href="configmain.html#configmain-service_perfdata_file_processing_interval">service_perfdata_file_processing_interval</a>-Optionen
festgelegt.</p>
- <a class="indexterm" name="id1551690"></a>
+ <a class="indexterm" name="id5766989"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/pluginapi.html
^
|
@@ -235,7 +235,7 @@
<p>Icinga bietet einen optionalen <a class="link" href="embeddedperl.html" title="Benutzen des Embedded Perl Interpreters">eingebauten Perl-Interpreter</a> (embedded Perl
interpreter), der die Ausführung von Perl-Plugins beschleunigen kann. Mehr Informationen zur Entwicklung von Perl-Plugins zur
Nutzung mit dem eingebauten Perl-Interpreter finden Sie <a class="link" href="embeddedperl.html" title="Benutzen des Embedded Perl Interpreters">hier</a>.</p>
- <a class="indexterm" name="id1566605"></a>
+ <a class="indexterm" name="id5781977"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/plugins.html
^
|
@@ -385,15 +385,15 @@
<p>Informationen zu technischen Aspekten von Plugins sowie zur Erstellung Ihrer eigenen Plugins finden Sie <a class="link" href="pluginapi.html" title="Nagios Plugin API">hier</a>.</p>
- <a class="indexterm" name="id1506078"></a>
+ <a class="indexterm" name="id5721177"></a>
- <a class="indexterm" name="id1506062"></a>
+ <a class="indexterm" name="id5721195"></a>
- <a class="indexterm" name="id1506102"></a>
+ <a class="indexterm" name="id5721166"></a>
- <a class="indexterm" name="id1506113"></a>
+ <a class="indexterm" name="id5721196"></a>
- <a class="indexterm" name="id1506128"></a>
+ <a class="indexterm" name="id5721233"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/quickstart-icinga-freebsd.html
^
|
@@ -289,7 +289,7 @@
<p>Sie werden ohne Zweifel mehr als nur Ihre lokale Maschine überwachen wollen, so dass Sie u.a. das folgende <a class="link" href="ch02.html" title="Kapitel 2. Los geht's">Kapitel</a> lesen sollten...</p>
- <a class="indexterm" name="id1457266"></a>
+ <a class="indexterm" name="id5671946"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/quickstart-icinga.html
^
|
@@ -408,9 +408,9 @@
Zweifel mehr als nur Ihre lokale Maschine überwachen wollen, so dass Sie u.a. das folgende <a class="link" href="ch02.html" title="Kapitel 2. Los geht's">Kapitel</a> lesen
sollten...</p>
- <a class="indexterm" name="id1456655"></a>
+ <a class="indexterm" name="id5671337"></a>
- <a class="indexterm" name="id1456638"></a>
+ <a class="indexterm" name="id5671353"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/quickstart-idoutils-freebsd.html
^
|
@@ -220,7 +220,8 @@
<p>Führen Sie das Icinga-configure-Script aus. Durch die Nutzung des --help-Flags erhalten Sie Hilfe zu den Optionen.</p>
<pre class="programlisting"> #> ./configure --with-command-group=icinga-cmd \
- --enable-idoutils CPPFLAGS=-I/usr/local/include
+ --enable-idoutils CPPFLAGS=-I/usr/local/include \
+ CFLAGS="-I/usr/local/include -L/usr/local/lib" \
--with-dbi-lib=/usr/local/lib --with-dbi-inc=/usr/local/include</pre>
<div class="important" title="Wichtig" style="margin-left: 0.5in; margin-right: 0.5in;"><table border="0" summary="Important">
@@ -233,6 +234,25 @@
Broker-Modul.</p>
</td></tr>
</table></div>
+ <div class="note" title="Anmerkung" style="margin-left: 0.5in; margin-right: 0.5in;"><table border="0" summary="Note">
+<tr>
+<td rowspan="2" align="center" valign="top" width="25"><img alt="[Anmerkung]" src="../images/note.png"></td>
+<th align="left">Anmerkung</th>
+</tr>
+<tr><td align="left" valign="top">
+ <p>Sie sollten <code class="literal">CFLAGS=..."</code> wie oben angegeben benutzen. Anderenfalls finden Sie ggf. später folgende Zeilen in
+ <code class="filename">icinga.log</code>:
+ </p>
+<pre class="screen"> Error: Module ‘/usr/local/icinga/bin/idomod.o’ is using an old or unspecified version of the event broker API. Module will
+ be unloaded.
+ Event broker module ‘/usr/local/icinga/bin/idomod.o’ deinitialized successfully.</pre>
+<p>
+ Mehr Informationen zu diesem Fehler finden Sie <a class="link" href="http://www.mazej.net/icinga-idomod-o-is-using-an-old-or-unspecified-version-of-the-event-broker-api/" target="_top">
+ hier</a>.
+ </p>
+ </td></tr>
+</table></div>
+
<p><span class="bold"><strong>Mit SSL-Verschlüsselung:</strong></span></p>
@@ -511,7 +531,7 @@
<pre class="programlisting">make install NAGIOSUSER=icinga NAGIOSGROUP=icinga \
PREFIX=/usr/local/icinga</pre>
- <a class="indexterm" name="id1459921"></a>
+ <a class="indexterm" name="id5674647"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/quickstart-idoutils.html
^
|
@@ -863,7 +863,7 @@
Zweifel mehr als nur Ihre lokale Maschine überwachen wollen, so dass Sie u.a. das folgende <a class="link" href="ch02.html" title="Kapitel 2. Los geht's">Kapitel </a> lesen
sollten...</p>
- <a class="indexterm" name="id1458996"></a>
+ <a class="indexterm" name="id5673684"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/quickstart.html
^
|
@@ -89,9 +89,9 @@
Befehlsnamen, Pfade und anderes variiert stark zwischen verschiedenen Betriebssystemen/Distributionen, so dass Sie wahrscheinlich die
Installationsanleitung ein wenig anpassen müssen, damit sie für Ihren besonderen Fall funktioniert.</p>
- <a class="indexterm" name="id1455785"></a>
+ <a class="indexterm" name="id5670467"></a>
- <a class="indexterm" name="id1455795"></a>
+ <a class="indexterm" name="id5670476"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/redundancy.html
^
|
@@ -387,10 +387,10 @@
darstellen sollte, weil die Mehrzahl der Überwachung Service-Prüfungen betrifft.</p>
<p>Das ist eigentlich alles, was das Setup betrifft.</p>
- <a class="indexterm" name="id1547826"></a>
- <a class="indexterm" name="id1547847"></a>
- <a class="indexterm" name="id1547868"></a>
- <a class="indexterm" name="id1547876"></a>
+ <a class="indexterm" name="id5763130"></a>
+ <a class="indexterm" name="id5763138"></a>
+ <a class="indexterm" name="id5763148"></a>
+ <a class="indexterm" name="id5763139"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/reporting.html
^
|
@@ -226,7 +226,7 @@
<tbody><tr>
<td>
<div class="figure">
-<a name="id1562748"></a><p class="title"><b>Abbildung 9.1. Icinga-Reporting in Icinga-Web</b></p>
+<a name="id5778105"></a><p class="title"><b>Abbildung 9.1. Icinga-Reporting in Icinga-Web</b></p>
<div class="figure-contents">
@@ -237,7 +237,7 @@
</td>
<td>
<div class="figure">
-<a name="id1562777"></a><p class="title"><b>Abbildung 9.2. Icinga-Reporting TOP10 in Icinga-Web</b></p>
+<a name="id5778103"></a><p class="title"><b>Abbildung 9.2. Icinga-Reporting TOP10 in Icinga-Web</b></p>
<div class="figure-contents">
@@ -264,7 +264,7 @@
<p></p>
- <a class="indexterm" name="id1562820"></a>
+ <a class="indexterm" name="id5778173"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/security.html
^
|
@@ -148,7 +148,7 @@
<p><span class="inlinemediaobject"><img src="../images/security2.png"></span></p>
</li>
</ol></div>
- <a class="indexterm" name="id1558384"></a>
+ <a class="indexterm" name="id5773725"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/servicechecks.html
^
|
@@ -115,7 +115,7 @@
<p>Wenn Service-Statusänderungen zu oft erfolgen, werden sie als "flatternd" (flapping) angesehen. Icinga kann
erkennen, wenn Services anfangen zu flattern, und kann Benachrichtigungen unterdrücken, bis das Flattern stoppt und sich der
Service-Status stabilisiert. Mehr Informationen über die Erkennungslogik des Flatterns finden Sie <a class="link" href="flapping.html" title="Erkennung und Behandlung von Status-Flattern">hier</a>.</p>
- <a class="indexterm" name="id1526184"></a>
+ <a class="indexterm" name="id5741384"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/stalking.html
^
|
@@ -173,7 +173,7 @@
<p>Als generelle Regel würden wir empfehlen, dass Sie die Verfolgung für Hosts und Services <span class="emphasis"><em>nicht</em></span>
aktivieren, ohne gründlich darüber nachgedacht zu haben. Auf jeden Fall ist sie da, wenn Sie sie brauchen.</p>
- <a class="indexterm" name="id1551249"></a>
+ <a class="indexterm" name="id5766552"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/startstop.html
^
|
@@ -128,10 +128,10 @@
Optionen, die <a class="link" href="faststartup.html" title="Schnellstart-Optionen">hier</a> näher beschrieben sind. Dort finden Sie auch die Option -S, die nähere Informationen
zur Scheduling Queue ausgibt.</p>
- <a class="indexterm" name="id1505172"></a>
+ <a class="indexterm" name="id5720277"></a>
- <a class="indexterm" name="id1505183"></a>
-<a class="indexterm" name="id1505196"></a>
+ <a class="indexterm" name="id5720288"></a>
+<a class="indexterm" name="id5720300"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/statetypes.html
^
|
@@ -259,7 +259,7 @@
</tbody>
</table>
</div>
- <a class="indexterm" name="id1527830"></a>
+ <a class="indexterm" name="id5743033"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/timeperiods.html
^
|
@@ -107,7 +107,7 @@
<span class="bold"><strong>Wie Zeitfenster mit Abhängigkeiten arbeiten</strong></span>
</p>
<p>Service- und Host-<a class="link" href="dependencies.html" title="Host- und Service-Abhängigkeiten">Abhängigkeiten</a> haben eine optionale <span class="emphasis"><em>dependency_period</em></span>-Direktive, die es Ihnen erlaubt ein Zeitfenster anzugeben, wann die Abhängigkeit gültig ist und benutzt werden kann. Wenn Sie die <span class="emphasis"><em>dependency_period</em></span>-Direktive nicht in einer Abhängigkeits-Definition benutzen, ist diese Abhängigkeit zu allen Zeiten gültig. Wenn Sie ein Zeitfenster in der <span class="emphasis"><em>dependency_period</em></span>-Direktive angeben, wird Icinga die Abhängigkeits-Definition nur zu Zeiten nutzen, die aufgrund der Zeitfenster-Definition gültig sind.</p>
- <a class="indexterm" name="id1528224"></a>
+ <a class="indexterm" name="id5743438"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/tuning.html
^
|
@@ -86,7 +86,7 @@
<p><span class="bold"><strong>Optimieren Sie die Hardware für maximale Leistung</strong></span>. Hinweis: Hardware-Leistung sollte kein Thema sein, solange Sie nicht 1) Tausende von Services überwachen, 2) eine Menge von Nachverarbeitung von Performance-Daten usw. machen. Ihre Systemkonfiguration und Ihre Hardware-Ausstattung werden direkt beeinflussen, was Ihr Betriebssystem leistet, so dass sie beeinflussen, was Icinga leistet. Die häufigste Hardware-Optimierung betrifft die Festplatte(n). CPU und Speichergeschwindigkeit sind offensichtliche Faktoren, die die Leistung beeinflussen, aber der Plattenzugriff wird Ihr größter Flaschenhals sein. Speichern Sie Plugins, das Status-Log usw. nicht auf langsamen Platten (d.h. alte IDE-Platten oder NFS-Mounts). Wenn Sie sie haben, dann nutzen Sie UltraSCSI- oder schnelle IDE-Platten. Ein wichtiger Hinweis für IDE/Linux-Benutzer ist, dass viele Linux-Installationen nicht versuchen, den Plattenzugriff zu optimieren. Wenn Sie die Plattenzugriffsparameter nicht ändern (z.B. mit einem Utility wie <span class="bold"><strong>hdparam</strong></span>), werden Sie eine <span class="bold"><strong>Menge</strong></span> der schnellen Features der neuen IDE-Platten verlieren.</p>
</li>
</ol></div>
- <a class="indexterm" name="id1558916"></a>
+ <a class="indexterm" name="id5774253"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/upgrading.html
^
|
@@ -312,17 +312,17 @@
Stellen Sie sicher, dass Sie all Ihre kritischen Nagios-Dateien gesichert haben, bevor Sie das Original-RPM- oder APT-Paket
entfernen, so dass Sie darauf zurückgreifen können, wenn Sie auf Probleme stoßen.</p>
- <a class="indexterm" name="id1460878"></a>
+ <a class="indexterm" name="id5675606"></a>
- <a class="indexterm" name="id1460903"></a>
+ <a class="indexterm" name="id5675636"></a>
- <a class="indexterm" name="id1460914"></a>
+ <a class="indexterm" name="id5675650"></a>
- <a class="indexterm" name="id1460932"></a>
+ <a class="indexterm" name="id5675664"></a>
- <a class="indexterm" name="id1460945"></a>
+ <a class="indexterm" name="id5675678"></a>
- <a class="indexterm" name="id1460959"></a>
+ <a class="indexterm" name="id5675693"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/upgrading_icingaweb.html
^
|
@@ -185,13 +185,13 @@
$ sqlplus dbuser/dbpass
SQL> @oracle_<alteVersion>_to_<neueVersion>.sql</pre>
- <a class="indexterm" name="id1542128"></a>
+ <a class="indexterm" name="id5757363"></a>
- <a class="indexterm" name="id1542138"></a>
+ <a class="indexterm" name="id5757364"></a>
- <a class="indexterm" name="id1542151"></a>
+ <a class="indexterm" name="id5757388"></a>
- <a class="indexterm" name="id1542161"></a>
+ <a class="indexterm" name="id5757389"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/upgrading_idoutils.html
^
|
@@ -368,7 +368,7 @@
<p>Falls Sie vorher etwas an den Keys verändert haben, dann stellen Sie sicher, dass Sie das gleiche DB-Schema wie in IDOUtils
1.0RC benutzen, andernfalls wird das Script fehlschlagen.</p>
- <a class="indexterm" name="id1461689"></a>
+ <a class="indexterm" name="id5676421"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/verifyconfig.html
^
|
@@ -61,15 +61,15 @@
<p>Sobald Sie Ihre Konfigurationsdateien überprüft und eventuelle Fehler bereinigt haben, können Sie <a class="link" href="startstop.html" title="Icinga starten und stoppen">Icinga (neu)starten</a></p>
- <a class="indexterm" name="id1504796"></a>
+ <a class="indexterm" name="id5719892"></a>
- <a class="indexterm" name="id1504791"></a>
+ <a class="indexterm" name="id5719907"></a>
- <a class="indexterm" name="id1504820"></a>
+ <a class="indexterm" name="id5719920"></a>
- <a class="indexterm" name="id1504833"></a>
+ <a class="indexterm" name="id5719934"></a>
- <a class="indexterm" name="id1504847"></a>
+ <a class="indexterm" name="id5719949"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/volatileservices.html
^
|
@@ -124,7 +124,7 @@
</li>
</ul></div>
<p>Ziemlich hübsch, oder?</p>
- <a class="indexterm" name="id1545652"></a>
+ <a class="indexterm" name="id5760916"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/de/whatsnew.html
^
|
@@ -131,7 +131,7 @@
<p><a class="link" href="https://dev.icinga.org/projects/show/icinga-docs" target="_top">Problembericht Icinga-Docs</a></p>
- <a class="indexterm" name="id1455552"></a>
+ <a class="indexterm" name="id5670225"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/about.html
^
|
@@ -129,17 +129,17 @@
100% compatible with the internal structures of the latter Icinga enables you to use all plugins and add-ons which were/are
developed by several companies and the large community.</p>
- <a class="indexterm" name="id1424899"></a>
+ <a class="indexterm" name="id5596208"></a>
- <a class="indexterm" name="id1424909"></a>
+ <a class="indexterm" name="id5596238"></a>
- <a class="indexterm" name="id1424919"></a>
+ <a class="indexterm" name="id5596246"></a>
- <a class="indexterm" name="id1424929"></a>
+ <a class="indexterm" name="id5596247"></a>
- <a class="indexterm" name="id1424939"></a>
+ <a class="indexterm" name="id5596268"></a>
- <a class="indexterm" name="id1424949"></a>
+ <a class="indexterm" name="id5596277"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/activechecks.html
^
|
@@ -80,8 +80,8 @@
particular host or service. For example, when Icinga is determining the <a class="link" href="networkreachability.html" title="Determining Status and Reachability of Network Hosts">reachability</a> of a host, it will often perform on-demand checks of parent and child hosts to
accurately determine the status of a particular network segment. On-demand checks also occur in the <a class="link" href="dependencychecks.html" title="Predictive Dependency Checks">predictive dependency check</a> logic in order to ensure Icinga has the most accurate
status information.</p>
- <a class="indexterm" name="id1498362"></a>
- <a class="indexterm" name="id1498371"></a>
+ <a class="indexterm" name="id5670262"></a>
+ <a class="indexterm" name="id5670270"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/adaptive.html
^
|
@@ -116,8 +116,8 @@
</ul></div>
</td></tr>
</table></div>
- <a class="indexterm" name="id1525105"></a>
- <a class="indexterm" name="id1525113"></a>
+ <a class="indexterm" name="id5697094"></a>
+ <a class="indexterm" name="id5697109"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/addons.html
^
|
@@ -142,55 +142,55 @@
<p>The IDOUtils addon install instructions can be found in the <a class="link" href="quickstart-idoutils.html" title="Icinga with IDOUtils Quickstart">Quickstart-Idoutils</a> and more
documentation can be found at <a class="link" href="http://docs.icinga.org/latest/en/" target="_top">http://docs.icinga.org/</a>.</p>
- <a class="indexterm" name="id1535758"></a>
+ <a class="indexterm" name="id5707816"></a>
- <a class="indexterm" name="id1535773"></a>
+ <a class="indexterm" name="id5707828"></a>
- <a class="indexterm" name="id1535787"></a>
+ <a class="indexterm" name="id5707842"></a>
- <a class="indexterm" name="id1535800"></a>
+ <a class="indexterm" name="id5707858"></a>
- <a class="indexterm" name="id1535811"></a>
+ <a class="indexterm" name="id5707866"></a>
- <a class="indexterm" name="id1535824"></a>
+ <a class="indexterm" name="id5707882"></a>
- <a class="indexterm" name="id1535834"></a>
+ <a class="indexterm" name="id5707888"></a>
- <a class="indexterm" name="id1535847"></a>
+ <a class="indexterm" name="id5707904"></a>
- <a class="indexterm" name="id1535858"></a>
+ <a class="indexterm" name="id5707913"></a>
- <a class="indexterm" name="id1535871"></a>
+ <a class="indexterm" name="id5707928"></a>
- <a class="indexterm" name="id1535882"></a>
+ <a class="indexterm" name="id5707936"></a>
- <a class="indexterm" name="id1535895"></a>
+ <a class="indexterm" name="id5707951"></a>
- <a class="indexterm" name="id1535905"></a>
+ <a class="indexterm" name="id5707958"></a>
- <a class="indexterm" name="id1535918"></a>
+ <a class="indexterm" name="id5707973"></a>
- <a class="indexterm" name="id1535928"></a>
+ <a class="indexterm" name="id5707982"></a>
- <a class="indexterm" name="id1535942"></a>
+ <a class="indexterm" name="id5707997"></a>
- <a class="indexterm" name="id1535953"></a>
+ <a class="indexterm" name="id5708006"></a>
- <a class="indexterm" name="id1535966"></a>
+ <a class="indexterm" name="id5708020"></a>
- <a class="indexterm" name="id1535976"></a>
+ <a class="indexterm" name="id5708029"></a>
- <a class="indexterm" name="id1535989"></a>
+ <a class="indexterm" name="id5708045"></a>
- <a class="indexterm" name="id1535999"></a>
+ <a class="indexterm" name="id5708052"></a>
- <a class="indexterm" name="id1536013"></a>
+ <a class="indexterm" name="id5708067"></a>
- <a class="indexterm" name="id1536024"></a>
+ <a class="indexterm" name="id5708076"></a>
- <a class="indexterm" name="id1536037"></a>
+ <a class="indexterm" name="id5708091"></a>
- <a class="indexterm" name="id1536047"></a>
+ <a class="indexterm" name="id5708100"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/beginners.html
^
|
@@ -59,7 +59,7 @@
lists or searching the list archives can be found at <a class="link" href="http://www.icinga.org/community/" target="_top">http://www.icinga.org/community/</a>.</p>
</li>
</ol></div>
- <a class="indexterm" name="id1425390"></a>
+ <a class="indexterm" name="id5596715"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/cachedchecks.html
^
|
@@ -199,7 +199,7 @@
executing plugins versus those that used cached check results. Use that information to adjust the cached check horizon variables
appropriately for your situation. Continue to monitor the MRTG graphs over time to see how changing the horizon variables
affected cached check statistics. Rinse and repeat as necessary.</p>
- <a class="indexterm" name="id1525780"></a>
+ <a class="indexterm" name="id5697775"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/cgiauth.html
^
|
@@ -318,21 +318,21 @@
has not authenticated to the web server will inherit all rights you assign
to this user!</p>
- <a class="indexterm" name="id1477141"></a>
+ <a class="indexterm" name="id5648929"></a>
- <a class="indexterm" name="id1477151"></a>
+ <a class="indexterm" name="id5648942"></a>
- <a class="indexterm" name="id1477127"></a>
+ <a class="indexterm" name="id5648956"></a>
- <a class="indexterm" name="id1477178"></a>
+ <a class="indexterm" name="id5648969"></a>
- <a class="indexterm" name="id1477191"></a>
+ <a class="indexterm" name="id5648984"></a>
- <a class="indexterm" name="id1477206"></a>
+ <a class="indexterm" name="id5648996"></a>
- <a class="indexterm" name="id1477220"></a>
+ <a class="indexterm" name="id5648970"></a>
- <a class="indexterm" name="id1477234"></a>
+ <a class="indexterm" name="id5649024"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/cgiincludes.html
^
|
@@ -89,7 +89,7 @@
only a global header if you wish. You can use only CGI-specific headers and
a global footer if you wish. Whatever you want. Really.</p>
- <a class="indexterm" name="id1527414"></a>
+ <a class="indexterm" name="id5699428"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/cgiparams.html
^
|
@@ -2628,9 +2628,9 @@
all views except hostgroup/servicegroup info (always without performance data); tac: data output in json format. More details in the
<a class="link" href="https://wiki.icinga.org/display/howtos/Using+JSON+export+in+Classic-UI" target="_top">Icinga wiki</a>.</p>
- <a class="indexterm" name="id1512652"></a>
+ <a class="indexterm" name="id5684546"></a>
- <a class="indexterm" name="id1512663"></a>
+ <a class="indexterm" name="id5684567"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/cgis.html
^
|
@@ -955,37 +955,37 @@
</li>
</ul></div>
- <a class="indexterm" name="id1505421"></a>
+ <a class="indexterm" name="id5677344"></a>
- <a class="indexterm" name="id1505435"></a>
+ <a class="indexterm" name="id5677356"></a>
- <a class="indexterm" name="id1505449"></a>
+ <a class="indexterm" name="id5677368"></a>
- <a class="indexterm" name="id1505462"></a>
+ <a class="indexterm" name="id5677381"></a>
- <a class="indexterm" name="id1505477"></a>
+ <a class="indexterm" name="id5677394"></a>
- <a class="indexterm" name="id1505490"></a>
+ <a class="indexterm" name="id5677408"></a>
- <a class="indexterm" name="id1505505"></a>
+ <a class="indexterm" name="id5677420"></a>
- <a class="indexterm" name="id1505518"></a>
+ <a class="indexterm" name="id5677433"></a>
- <a class="indexterm" name="id1505532"></a>
+ <a class="indexterm" name="id5677447"></a>
- <a class="indexterm" name="id1505545"></a>
+ <a class="indexterm" name="id5677462"></a>
- <a class="indexterm" name="id1505559"></a>
+ <a class="indexterm" name="id5677448"></a>
- <a class="indexterm" name="id1505573"></a>
+ <a class="indexterm" name="id5677489"></a>
- <a class="indexterm" name="id1505587"></a>
+ <a class="indexterm" name="id5677502"></a>
- <a class="indexterm" name="id1505601"></a>
+ <a class="indexterm" name="id5677516"></a>
- <a class="indexterm" name="id1505614"></a>
+ <a class="indexterm" name="id5677529"></a>
- <a class="indexterm" name="id1505628"></a>
+ <a class="indexterm" name="id5677543"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/cgisecurity.html
^
|
@@ -233,15 +233,15 @@
</li>
</ul></div>
- <a class="indexterm" name="id1531282"></a>
+ <a class="indexterm" name="id5703298"></a>
- <a class="indexterm" name="id1531297"></a>
+ <a class="indexterm" name="id5703324"></a>
- <a class="indexterm" name="id1531310"></a>
+ <a class="indexterm" name="id5703326"></a>
- <a class="indexterm" name="id1531323"></a>
+ <a class="indexterm" name="id5703325"></a>
- <a class="indexterm" name="id1531336"></a>
+ <a class="indexterm" name="id5703340"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/ch03.html
^
|
@@ -35,21 +35,21 @@
<dt><span class="section"><a href="configobject.html">Object Configuration Overview</a></span></dt>
<dt><span class="section"><a href="objectdefinitions.html">Object Definitions</a></span></dt>
<dd><dl>
-<dt><span class="section"><a href="objectdefinitions.html#id1455104">Host definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1455107">Hostgroup Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1457750">Service Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1458292">Servicegroup Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1460648">Contact Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1461202">Contactgroup Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1462392">Timeperiod Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1462797">Command Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1463614">Servicedependency Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1463663">Serviceescalation Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1465677">Hostdependency Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1465679">Hostescalation Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1466393">Hostextinfo Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1467283">Serviceextinfo Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1468110">Module Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5626561">Host definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5626620">Hostgroup Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5629293">Service Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5629830">Servicegroup Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5632205">Contact Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5632767">Contactgroup Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5633966">Timeperiod Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5634364">Command Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5634832">Servicedependency Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5635240">Serviceescalation Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5636102">Hostdependency Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5637267">Hostescalation Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5637984">Hostextinfo Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5638880">Serviceextinfo Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5639712">Module Definition</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="customobjectvars.html">Custom Object Variables</a></span></dt>
<dt><span class="section"><a href="configcgi.html">CGI Configuration File Options</a></span></dt>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/ch12.html
^
|
@@ -32,32 +32,32 @@
<dl>
<dt><span class="section"><a href="db_intro.html">Introduction</a></span></dt>
<dd><dl>
-<dt><span class="section"><a href="db_intro.html#id417725">Purpose</a></span></dt>
-<dt><span class="section"><a href="db_intro.html#id1546714">Design Overview</a></span></dt>
-<dt><span class="section"><a href="db_intro.html#id1546803">Instances</a></span></dt>
-<dt><span class="section"><a href="db_intro.html#id1546858">Installation</a></span></dt>
+<dt><span class="section"><a href="db_intro.html#id5718112">Purpose</a></span></dt>
+<dt><span class="section"><a href="db_intro.html#id5718816">Design Overview</a></span></dt>
+<dt><span class="section"><a href="db_intro.html#id5718901">Instances</a></span></dt>
+<dt><span class="section"><a href="db_intro.html#id5718976">Installation</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="db_components.html">Components</a></span></dt>
<dd><dl>
-<dt><span class="section"><a href="db_components.html#id1546899">Overview</a></span></dt>
-<dt><span class="section"><a href="db_components.html#id1546949">IDOMOD</a></span></dt>
-<dt><span class="section"><a href="db_components.html#id1547037">LOG2IDO</a></span></dt>
-<dt><span class="section"><a href="db_components.html#id1547078">FILE2SOCK</a></span></dt>
+<dt><span class="section"><a href="db_components.html#id5719002">Overview</a></span></dt>
+<dt><span class="section"><a href="db_components.html#id5719050">IDOMOD</a></span></dt>
+<dt><span class="section"><a href="db_components.html#id5719139">LOG2IDO</a></span></dt>
+<dt><span class="section"><a href="db_components.html#id5719082">FILE2SOCK</a></span></dt>
<dt><span class="section"><a href="db_components.html#IDO2DB-description">IDO2DB. IDO2DB</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="db_example-configs.html">Example Configurations</a></span></dt>
<dd><dl>
-<dt><span class="section"><a href="db_example-configs.html#id1547198">Single Server, Single Instance Setup</a></span></dt>
-<dt><span class="section"><a href="db_example-configs.html#id1547310">Single Server, Multiple Instance Setup</a></span></dt>
-<dt><span class="section"><a href="db_example-configs.html#id1547404">Single Server, Single Instance Log File Import</a></span></dt>
+<dt><span class="section"><a href="db_example-configs.html#id5719298">Single Server, Single Instance Setup</a></span></dt>
+<dt><span class="section"><a href="db_example-configs.html#id5719409">Single Server, Multiple Instance Setup</a></span></dt>
+<dt><span class="section"><a href="db_example-configs.html#id5719501">Single Server, Single Instance Log File Import</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="db_model.html">IDOUtils Database Model</a></span></dt>
<dd><dl>
-<dt><span class="section"><a href="db_model.html#id1547667">Central Tables</a></span></dt>
-<dt><span class="section"><a href="db_model.html#id1547669"> Debugging Tables</a></span></dt>
-<dt><span class="section"><a href="db_model.html#id1548114">Historical Tables</a></span></dt>
-<dt><span class="section"><a href="db_model.html#id1548621"> Current Status Tables</a></span></dt>
-<dt><span class="section"><a href="db_model.html#id1548633"> Configuration Tables</a></span></dt>
+<dt><span class="section"><a href="db_model.html#id5719694">Central Tables</a></span></dt>
+<dt><span class="section"><a href="db_model.html#id5720009"> Debugging Tables</a></span></dt>
+<dt><span class="section"><a href="db_model.html#id5720223">Historical Tables</a></span></dt>
+<dt><span class="section"><a href="db_model.html#id5727355"> Current Status Tables</a></span></dt>
+<dt><span class="section"><a href="db_model.html#id5720722"> Configuration Tables</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="db_changes.html">Database changes/alterations</a></span></dt>
</dl>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/checkscheduling.html
^
|
@@ -380,20 +380,20 @@
<p>This documentation is being rewritten. Stay tuned for more information in a later beta release...</p>
- <a class="indexterm" name="id1527163"></a>
- <a class="indexterm" name="id1527174"></a>
- <a class="indexterm" name="id1527183"></a>
- <a class="indexterm" name="id1527191"></a>
- <a class="indexterm" name="id1527202"></a>
- <a class="indexterm" name="id1527211"></a>
- <a class="indexterm" name="id1527221"></a>
- <a class="indexterm" name="id1527231"></a>
- <a class="indexterm" name="id1527240"></a>
- <a class="indexterm" name="id1527250"></a>
- <a class="indexterm" name="id1527260"></a>
- <a class="indexterm" name="id1527269"></a>
- <a class="indexterm" name="id1527279"></a>
- <a class="indexterm" name="id1527288"></a>
+ <a class="indexterm" name="id5699175"></a>
+ <a class="indexterm" name="id5699181"></a>
+ <a class="indexterm" name="id5699192"></a>
+ <a class="indexterm" name="id5699202"></a>
+ <a class="indexterm" name="id5699212"></a>
+ <a class="indexterm" name="id5699193"></a>
+ <a class="indexterm" name="id5699232"></a>
+ <a class="indexterm" name="id5699242"></a>
+ <a class="indexterm" name="id5699250"></a>
+ <a class="indexterm" name="id5699260"></a>
+ <a class="indexterm" name="id5699251"></a>
+ <a class="indexterm" name="id5699278"></a>
+ <a class="indexterm" name="id5699289"></a>
+ <a class="indexterm" name="id5699298"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/clusters.html
^
|
@@ -154,7 +154,7 @@
member, you will most likely want to disable notifications when the host goes down . Remeber that you don't care as much about
the status of any individual host as you do the overall status of the cluster. Depending on your network layout and what you're
trying to accomplish, you may wish to leave notifications for unreachable states enabled for the host definitions.</p>
- <a class="indexterm" name="id1522476"></a>
+ <a class="indexterm" name="id5694456"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/config.html
^
|
@@ -84,7 +84,7 @@
Icinga and where your object definitions are stored.</p>
<p>Documentation for the CGI configuration file can be found <a class="link" href="configcgi.html" title="CGI Configuration File Options">here</a>.</p>
- <a class="indexterm" name="id1434271"></a>
+ <a class="indexterm" name="id5605665"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/configcgi.html
^
|
@@ -217,6 +217,9 @@
<li class="listitem">
<p><a class="link" href="configcgi.html#configcgi-show_tac_header">Show Header with Tactical Information</a></p>
</li>
+<li class="listitem">
+ <p><a class="link" href="configcgi.html#configcgi-show_tac_header_pending">Show Header with Pending Counts</a></p>
+ </li>
</ul></div>
<p><a name="configcgi-main_cfg_file"></a> <span class="bold"><strong>Main Configuration File Location</strong></span></p>
@@ -1156,7 +1159,7 @@
</table>
</div>
- <p>This options allows you to specify if the tactical overview should only show hard states on hosts and services. If you set this
+ <p>This option allows you to specify if the tactical overview should only show hard states on hosts and services. If you set this
option to 1 the tactical overview shows only states on hosts and services. By default disabled, all states will be shown.</p>
<p><a name="configcgi-enable_splunk_integration"></a> <span class="bold"><strong>Splunk Integration Option</strong></span></p>
@@ -1791,7 +1794,7 @@
colouring as active checks.</p>
<div class="figure">
-<a name="id1475708"></a><p class="title"><b>Figure 3.1. Example of new header</b></p>
+<a name="id5647362"></a><p class="title"><b>Figure 3.1. Example of new header</b></p>
<div class="figure-contents">
@@ -1810,83 +1813,120 @@
</td></tr>
</table></div>
- <a class="indexterm" name="id1475733"></a>
+ <p><a name="configcgi-show_tac_header_pending"></a> <span class="bold"><strong>Show header including pending counts</strong></span></p>
+
+ <div class="informaltable">
+ <table border="0">
+<colgroup>
+<col>
+<col>
+</colgroup>
+<tbody>
+<tr>
+<td align="left" valign="top"><p>Format:</p></td>
+<td><p> <span class="bold"><strong>show_tac_header_pending=<0|1></strong></span> </p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p>Example:</p></td>
+<td><p> <span class="color"><font color="red"> <span class="bold"><strong>show_tac_header_pending=0</strong></span> </font></span>
+ </p></td>
+</tr>
+</tbody>
+</table>
+ </div>
+
+ <p>This option enables the display of pending counts in the tac header. If your display is less than 1024x768 and this is enabled,
+ the tactical information may not fit well in the top frame. By default it is disabled.</p>
+
+ <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;"><table border="0" summary="Note">
+<tr>
+<td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="../images/note.png"></td>
+<th align="left">Note</th>
+</tr>
+<tr><td align="left" valign="top">
+ <p>This option is available starting with Icinga 1.4.1</p>
+ </td></tr>
+</table></div>
+
+ <a class="indexterm" name="id5647504"></a>
+
+ <a class="indexterm" name="id5647476"></a>
- <a class="indexterm" name="id1475719"></a>
+ <a class="indexterm" name="id5647524"></a>
- <a class="indexterm" name="id1475757"></a>
+ <a class="indexterm" name="id5647537"></a>
- <a class="indexterm" name="id1475770"></a>
+ <a class="indexterm" name="id5647551"></a>
- <a class="indexterm" name="id1475784"></a>
+ <a class="indexterm" name="id5647564"></a>
- <a class="indexterm" name="id1475797"></a>
+ <a class="indexterm" name="id5647579"></a>
- <a class="indexterm" name="id1475810"></a>
+ <a class="indexterm" name="id5647592"></a>
- <a class="indexterm" name="id1475819"></a>
+ <a class="indexterm" name="id5647606"></a>
- <a class="indexterm" name="id1475838"></a>
+ <a class="indexterm" name="id5647620"></a>
- <a class="indexterm" name="id1475852"></a>
+ <a class="indexterm" name="id5647607"></a>
- <a class="indexterm" name="id1475866"></a>
+ <a class="indexterm" name="id5647650"></a>
- <a class="indexterm" name="id1475880"></a>
+ <a class="indexterm" name="id5647661"></a>
- <a class="indexterm" name="id1475888"></a>
+ <a class="indexterm" name="id5647635"></a>
- <a class="indexterm" name="id1475907"></a>
+ <a class="indexterm" name="id5647662"></a>
- <a class="indexterm" name="id1475921"></a>
+ <a class="indexterm" name="id5647702"></a>
- <a class="indexterm" name="id1475930"></a>
+ <a class="indexterm" name="id5647715"></a>
- <a class="indexterm" name="id1475944"></a>
+ <a class="indexterm" name="id5647730"></a>
- <a class="indexterm" name="id1475962"></a>
+ <a class="indexterm" name="id5647716"></a>
- <a class="indexterm" name="id1475976"></a>
+ <a class="indexterm" name="id5647758"></a>
- <a class="indexterm" name="id1475990"></a>
+ <a class="indexterm" name="id5647744"></a>
- <a class="indexterm" name="id1476004"></a>
+ <a class="indexterm" name="id5647786"></a>
- <a class="indexterm" name="id1476017"></a>
+ <a class="indexterm" name="id5647799"></a>
- <a class="indexterm" name="id1476031"></a>
+ <a class="indexterm" name="id5647813"></a>
- <a class="indexterm" name="id1476044"></a>
+ <a class="indexterm" name="id5647827"></a>
- <a class="indexterm" name="id1476053"></a>
+ <a class="indexterm" name="id5647841"></a>
- <a class="indexterm" name="id1476071"></a>
+ <a class="indexterm" name="id5647855"></a>
- <a class="indexterm" name="id1476086"></a>
+ <a class="indexterm" name="id5647866"></a>
- <a class="indexterm" name="id1476100"></a>
+ <a class="indexterm" name="id5647867"></a>
- <a class="indexterm" name="id1476113"></a>
+ <a class="indexterm" name="id5647893"></a>
- <a class="indexterm" name="id1476127"></a>
+ <a class="indexterm" name="id5647909"></a>
- <a class="indexterm" name="id1476141"></a>
+ <a class="indexterm" name="id5647896"></a>
- <a class="indexterm" name="id1476156"></a>
+ <a class="indexterm" name="id5647924"></a>
- <a class="indexterm" name="id1476166"></a>
+ <a class="indexterm" name="id5647946"></a>
- <a class="indexterm" name="id1476180"></a>
+ <a class="indexterm" name="id5647959"></a>
- <a class="indexterm" name="id1476193"></a>
+ <a class="indexterm" name="id5647947"></a>
- <a class="indexterm" name="id1476206"></a>
+ <a class="indexterm" name="id5647961"></a>
- <a class="indexterm" name="id1476220"></a>
+ <a class="indexterm" name="id5647975"></a>
- <a class="indexterm" name="id1476233"></a>
+ <a class="indexterm" name="id5648016"></a>
- <a class="indexterm" name="id1476248"></a>
+ <a class="indexterm" name="id5648028"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/configmain.html
^
|
@@ -5109,277 +5109,277 @@
</table></div>
- <a class="indexterm" name="id1452176"></a>
+ <a class="indexterm" name="id5623690"></a>
- <a class="indexterm" name="id1452184"></a>
+ <a class="indexterm" name="id5623696"></a>
- <a class="indexterm" name="id1452196"></a>
+ <a class="indexterm" name="id5623710"></a>
- <a class="indexterm" name="id1452210"></a>
+ <a class="indexterm" name="id5623721"></a>
- <a class="indexterm" name="id1452223"></a>
+ <a class="indexterm" name="id5623734"></a>
- <a class="indexterm" name="id1452236"></a>
+ <a class="indexterm" name="id5623747"></a>
- <a class="indexterm" name="id1452250"></a>
+ <a class="indexterm" name="id5623762"></a>
- <a class="indexterm" name="id1452263"></a>
+ <a class="indexterm" name="id5623748"></a>
- <a class="indexterm" name="id1452277"></a>
+ <a class="indexterm" name="id5623788"></a>
- <a class="indexterm" name="id1452291"></a>
+ <a class="indexterm" name="id5623802"></a>
- <a class="indexterm" name="id1452304"></a>
+ <a class="indexterm" name="id5623816"></a>
- <a class="indexterm" name="id1452318"></a>
+ <a class="indexterm" name="id5623829"></a>
- <a class="indexterm" name="id1452331"></a>
+ <a class="indexterm" name="id5623843"></a>
- <a class="indexterm" name="id1452344"></a>
+ <a class="indexterm" name="id5623857"></a>
- <a class="indexterm" name="id1452358"></a>
+ <a class="indexterm" name="id5623871"></a>
- <a class="indexterm" name="id1452371"></a>
+ <a class="indexterm" name="id5623884"></a>
- <a class="indexterm" name="id1452385"></a>
+ <a class="indexterm" name="id5623898"></a>
- <a class="indexterm" name="id1452394"></a>
+ <a class="indexterm" name="id5623910"></a>
- <a class="indexterm" name="id1452413"></a>
+ <a class="indexterm" name="id5623925"></a>
- <a class="indexterm" name="id1452426"></a>
+ <a class="indexterm" name="id5623937"></a>
- <a class="indexterm" name="id1452440"></a>
+ <a class="indexterm" name="id5623951"></a>
- <a class="indexterm" name="id1452454"></a>
+ <a class="indexterm" name="id5623965"></a>
- <a class="indexterm" name="id1452467"></a>
+ <a class="indexterm" name="id5623979"></a>
- <a class="indexterm" name="id1452481"></a>
+ <a class="indexterm" name="id5623992"></a>
- <a class="indexterm" name="id1452495"></a>
+ <a class="indexterm" name="id5624006"></a>
- <a class="indexterm" name="id1452508"></a>
+ <a class="indexterm" name="id5624020"></a>
- <a class="indexterm" name="id1452523"></a>
+ <a class="indexterm" name="id5624036"></a>
- <a class="indexterm" name="id1452536"></a>
+ <a class="indexterm" name="id5624050"></a>
- <a class="indexterm" name="id1452550"></a>
+ <a class="indexterm" name="id5623994"></a>
- <a class="indexterm" name="id1452563"></a>
+ <a class="indexterm" name="id5624074"></a>
- <a class="indexterm" name="id1452576"></a>
+ <a class="indexterm" name="id5624089"></a>
- <a class="indexterm" name="id1452590"></a>
+ <a class="indexterm" name="id5624076"></a>
- <a class="indexterm" name="id1452604"></a>
+ <a class="indexterm" name="id5624117"></a>
- <a class="indexterm" name="id1452618"></a>
+ <a class="indexterm" name="id5624103"></a>
- <a class="indexterm" name="id1452632"></a>
+ <a class="indexterm" name="id5624144"></a>
- <a class="indexterm" name="id1452646"></a>
+ <a class="indexterm" name="id5624158"></a>
- <a class="indexterm" name="id1452660"></a>
+ <a class="indexterm" name="id5624130"></a>
- <a class="indexterm" name="id1452674"></a>
+ <a class="indexterm" name="id5624159"></a>
- <a class="indexterm" name="id1452688"></a>
+ <a class="indexterm" name="id5624201"></a>
- <a class="indexterm" name="id1452701"></a>
+ <a class="indexterm" name="id5624186"></a>
- <a class="indexterm" name="id1452716"></a>
+ <a class="indexterm" name="id5624228"></a>
- <a class="indexterm" name="id1452730"></a>
+ <a class="indexterm" name="id5624239"></a>
- <a class="indexterm" name="id1452744"></a>
+ <a class="indexterm" name="id5624256"></a>
- <a class="indexterm" name="id1452757"></a>
+ <a class="indexterm" name="id5624242"></a>
- <a class="indexterm" name="id1452771"></a>
+ <a class="indexterm" name="id5624214"></a>
- <a class="indexterm" name="id1452785"></a>
+ <a class="indexterm" name="id5624294"></a>
- <a class="indexterm" name="id1452799"></a>
+ <a class="indexterm" name="id5624270"></a>
- <a class="indexterm" name="id1452812"></a>
+ <a class="indexterm" name="id5624296"></a>
- <a class="indexterm" name="id1452826"></a>
+ <a class="indexterm" name="id5624337"></a>
- <a class="indexterm" name="id1452840"></a>
+ <a class="indexterm" name="id5624350"></a>
- <a class="indexterm" name="id1452854"></a>
+ <a class="indexterm" name="id5624366"></a>
- <a class="indexterm" name="id1452867"></a>
+ <a class="indexterm" name="id5624352"></a>
- <a class="indexterm" name="id1452881"></a>
+ <a class="indexterm" name="id5624381"></a>
- <a class="indexterm" name="id1452894"></a>
+ <a class="indexterm" name="id5624407"></a>
- <a class="indexterm" name="id1452908"></a>
+ <a class="indexterm" name="id5624408"></a>
- <a class="indexterm" name="id1452923"></a>
+ <a class="indexterm" name="id5624392"></a>
- <a class="indexterm" name="id1452936"></a>
+ <a class="indexterm" name="id5624393"></a>
- <a class="indexterm" name="id1452950"></a>
+ <a class="indexterm" name="id5624435"></a>
- <a class="indexterm" name="id1452962"></a>
+ <a class="indexterm" name="id5624449"></a>
- <a class="indexterm" name="id1452973"></a>
+ <a class="indexterm" name="id5624463"></a>
- <a class="indexterm" name="id1452992"></a>
+ <a class="indexterm" name="id5624478"></a>
- <a class="indexterm" name="id1453006"></a>
+ <a class="indexterm" name="id5624491"></a>
- <a class="indexterm" name="id1453018"></a>
+ <a class="indexterm" name="id5624533"></a>
- <a class="indexterm" name="id1453019"></a>
+ <a class="indexterm" name="id5624519"></a>
- <a class="indexterm" name="id1453047"></a>
+ <a class="indexterm" name="id5624562"></a>
- <a class="indexterm" name="id1453060"></a>
+ <a class="indexterm" name="id5624547"></a>
- <a class="indexterm" name="id1453074"></a>
+ <a class="indexterm" name="id5624590"></a>
- <a class="indexterm" name="id1453083"></a>
+ <a class="indexterm" name="id5624575"></a>
- <a class="indexterm" name="id1453097"></a>
+ <a class="indexterm" name="id5624616"></a>
- <a class="indexterm" name="id1453111"></a>
+ <a class="indexterm" name="id5624629"></a>
- <a class="indexterm" name="id1453130"></a>
+ <a class="indexterm" name="id5624643"></a>
- <a class="indexterm" name="id1453143"></a>
+ <a class="indexterm" name="id5624630"></a>
- <a class="indexterm" name="id1453158"></a>
+ <a class="indexterm" name="id5624672"></a>
- <a class="indexterm" name="id1453172"></a>
+ <a class="indexterm" name="id5624657"></a>
- <a class="indexterm" name="id1453182"></a>
+ <a class="indexterm" name="id5624699"></a>
- <a class="indexterm" name="id1453201"></a>
+ <a class="indexterm" name="id5624686"></a>
- <a class="indexterm" name="id1453210"></a>
+ <a class="indexterm" name="id5624727"></a>
- <a class="indexterm" name="id1453228"></a>
+ <a class="indexterm" name="id5624713"></a>
- <a class="indexterm" name="id1453242"></a>
+ <a class="indexterm" name="id5624754"></a>
- <a class="indexterm" name="id1453251"></a>
+ <a class="indexterm" name="id5624741"></a>
- <a class="indexterm" name="id1453270"></a>
+ <a class="indexterm" name="id5624782"></a>
- <a class="indexterm" name="id1453282"></a>
+ <a class="indexterm" name="id5624796"></a>
- <a class="indexterm" name="id1453297"></a>
+ <a class="indexterm" name="id5624809"></a>
- <a class="indexterm" name="id1453311"></a>
+ <a class="indexterm" name="id5624824"></a>
- <a class="indexterm" name="id1453320"></a>
+ <a class="indexterm" name="id5624837"></a>
- <a class="indexterm" name="id1453339"></a>
+ <a class="indexterm" name="id5624851"></a>
- <a class="indexterm" name="id1453352"></a>
+ <a class="indexterm" name="id5624865"></a>
- <a class="indexterm" name="id1453366"></a>
+ <a class="indexterm" name="id5624879"></a>
- <a class="indexterm" name="id1453380"></a>
+ <a class="indexterm" name="id5624866"></a>
- <a class="indexterm" name="id1453394"></a>
+ <a class="indexterm" name="id5624906"></a>
- <a class="indexterm" name="id1453407"></a>
+ <a class="indexterm" name="id5624920"></a>
- <a class="indexterm" name="id1453421"></a>
+ <a class="indexterm" name="id5624935"></a>
- <a class="indexterm" name="id1453434"></a>
+ <a class="indexterm" name="id5624949"></a>
- <a class="indexterm" name="id1453448"></a>
+ <a class="indexterm" name="id5624962"></a>
- <a class="indexterm" name="id1453462"></a>
+ <a class="indexterm" name="id5624976"></a>
- <a class="indexterm" name="id1453475"></a>
+ <a class="indexterm" name="id5624989"></a>
- <a class="indexterm" name="id1453489"></a>
+ <a class="indexterm" name="id5625003"></a>
- <a class="indexterm" name="id1453503"></a>
+ <a class="indexterm" name="id5625017"></a>
- <a class="indexterm" name="id1453512"></a>
+ <a class="indexterm" name="id5625031"></a>
- <a class="indexterm" name="id1453530"></a>
+ <a class="indexterm" name="id5625043"></a>
- <a class="indexterm" name="id1453544"></a>
+ <a class="indexterm" name="id5625058"></a>
- <a class="indexterm" name="id1453558"></a>
+ <a class="indexterm" name="id5625072"></a>
- <a class="indexterm" name="id1453572"></a>
+ <a class="indexterm" name="id5625086"></a>
- <a class="indexterm" name="id1453586"></a>
+ <a class="indexterm" name="id5625073"></a>
- <a class="indexterm" name="id1453599"></a>
+ <a class="indexterm" name="id5625113"></a>
- <a class="indexterm" name="id1453614"></a>
+ <a class="indexterm" name="id5625128"></a>
- <a class="indexterm" name="id1453628"></a>
+ <a class="indexterm" name="id5625142"></a>
- <a class="indexterm" name="id1453641"></a>
+ <a class="indexterm" name="id5625154"></a>
- <a class="indexterm" name="id1453655"></a>
+ <a class="indexterm" name="id5625169"></a>
- <a class="indexterm" name="id1453669"></a>
+ <a class="indexterm" name="id5625156"></a>
- <a class="indexterm" name="id1453683"></a>
+ <a class="indexterm" name="id5625182"></a>
- <a class="indexterm" name="id1453698"></a>
+ <a class="indexterm" name="id5625183"></a>
- <a class="indexterm" name="id1453711"></a>
+ <a class="indexterm" name="id5625226"></a>
- <a class="indexterm" name="id1453725"></a>
+ <a class="indexterm" name="id5625212"></a>
- <a class="indexterm" name="id1453739"></a>
+ <a class="indexterm" name="id5625253"></a>
- <a class="indexterm" name="id1453753"></a>
+ <a class="indexterm" name="id5625267"></a>
- <a class="indexterm" name="id1453767"></a>
+ <a class="indexterm" name="id5625281"></a>
- <a class="indexterm" name="id1453781"></a>
+ <a class="indexterm" name="id5625295"></a>
- <a class="indexterm" name="id1453794"></a>
+ <a class="indexterm" name="id5625309"></a>
- <a class="indexterm" name="id1453808"></a>
+ <a class="indexterm" name="id5625323"></a>
- <a class="indexterm" name="id1453822"></a>
+ <a class="indexterm" name="id5625336"></a>
- <a class="indexterm" name="id1453835"></a>
+ <a class="indexterm" name="id5625350"></a>
- <a class="indexterm" name="id1453849"></a>
+ <a class="indexterm" name="id5625363"></a>
- <a class="indexterm" name="id1453863"></a>
+ <a class="indexterm" name="id5625378"></a>
- <a class="indexterm" name="id1453876"></a>
+ <a class="indexterm" name="id5625364"></a>
- <a class="indexterm" name="id1453890"></a>
+ <a class="indexterm" name="id5625406"></a>
- <a class="indexterm" name="id1453904"></a>
+ <a class="indexterm" name="id5625417"></a>
- <a class="indexterm" name="id1453917"></a>
+ <a class="indexterm" name="id5625435"></a>
- <a class="indexterm" name="id1453931"></a>
+ <a class="indexterm" name="id5625419"></a>
- <a class="indexterm" name="id1453945"></a>
+ <a class="indexterm" name="id5625462"></a>
- <a class="indexterm" name="id1453959"></a>
+ <a class="indexterm" name="id5625476"></a>
- <a class="indexterm" name="id1453972"></a>
+ <a class="indexterm" name="id5625490"></a>
- <a class="indexterm" name="id1453986"></a>
+ <a class="indexterm" name="id5625504"></a>
- <a class="indexterm" name="id1454000"></a>
+ <a class="indexterm" name="id5625516"></a>
- <a class="indexterm" name="id1454014"></a>
+ <a class="indexterm" name="id5625529"></a>
- <a class="indexterm" name="id1454027"></a>
+ <a class="indexterm" name="id5625543"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/configobject.html
^
|
@@ -291,7 +291,7 @@
</tr></tbody>
</table>
</div>
- <a class="indexterm" name="id1454797"></a>
+ <a class="indexterm" name="id5626190"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/customobjectvars.html
^
|
@@ -162,7 +162,7 @@
<p>Custom object variables are <a class="link" href="objectinheritance.html" title="Object Inheritance">inherited</a> just like standard host, service, or
contact variables.</p>
- <a class="indexterm" name="id1469488"></a>
+ <a class="indexterm" name="id5641086"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/db_changes.html
^
|
@@ -79,7 +79,7 @@
</li>
</ul></div>
- <a class="indexterm" name="id1567628"></a>
+ <a class="indexterm" name="id5739740"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/db_components.html
^
|
@@ -31,7 +31,7 @@
<div class="section" title="Overview">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1546899"></a>Overview</h3></div></div></div>
+<a name="id5719002"></a>Overview</h3></div></div></div>
<p>There are four main components that make up the IDO utilities:</p>
@@ -56,7 +56,7 @@
<div class="section" title="IDOMOD">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1546949"></a>IDOMOD</h3></div></div></div>
+<a name="id5719050"></a>IDOMOD</h3></div></div></div>
<p>The IDO utilities includes an Icinga event broker module (IDOMOD.O) that exports data from the Icinga daemon.</p>
@@ -66,7 +66,7 @@
logic present in the running Icinga process.</p>
<div class="figure">
-<a name="id1546966"></a><p class="title"><b>Figure 12.5. Loaded IDOMOD Event broker Module</b></p>
+<a name="id5719067"></a><p class="title"><b>Figure 12.5. Loaded IDOMOD Event broker Module</b></p>
<div class="figure-contents">
@@ -80,7 +80,7 @@
TCP socket.</p>
<div class="figure">
-<a name="id1547000"></a><p class="title"><b>Figure 12.6. IDOMOD Capabilities</b></p>
+<a name="id5719105"></a><p class="title"><b>Figure 12.6. IDOMOD Capabilities</b></p>
<div class="figure-contents">
@@ -102,7 +102,7 @@
<div class="section" title="LOG2IDO">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1547037"></a>LOG2IDO</h3></div></div></div>
+<a name="id5719139"></a>LOG2IDO</h3></div></div></div>
<p>The LOG2IDO utility has been designed to allow you to import historical Icinga, Nagios and NetSaint log files into a
@@ -111,7 +111,7 @@
then be used to process that output and store the historical logfile information in a database.</p>
<div class="figure">
-<a name="id1547057"></a><p class="title"><b>Figure 12.7. LOG2IDO Utility</b></p>
+<a name="id5719152"></a><p class="title"><b>Figure 12.7. LOG2IDO Utility</b></p>
<div class="figure-contents">
@@ -123,14 +123,14 @@
<div class="section" title="FILE2SOCK">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1547078"></a>FILE2SOCK</h3></div></div></div>
+<a name="id5719082"></a>FILE2SOCK</h3></div></div></div>
<p>The FILE2SOCK utility is quite simple. It reads input from a standard file (or STDIN) and writes all of that data to either a Unix
domain socket or TCP socket. The data that is read is not processed in any way before it is sent to the socket.</p>
<div class="figure">
-<a name="id1547090"></a><p class="title"><b>Figure 12.8. FILE2SOCK Utility</b></p>
+<a name="id5719192"></a><p class="title"><b>Figure 12.8. FILE2SOCK Utility</b></p>
<div class="figure-contents">
@@ -155,7 +155,7 @@
either as a standalone, multi-process daemon or under INETD (if using a TCP socket).</p>
<div class="figure">
-<a name="id1547141"></a><p class="title"><b>Figure 12.9. IDO2DB Daemon</b></p>
+<a name="id5719240"></a><p class="title"><b>Figure 12.9. IDO2DB Daemon</b></p>
<div class="figure-contents">
@@ -169,7 +169,7 @@
processing.</p>
<div class="figure">
-<a name="id1547168"></a><p class="title"><b>Figure 12.10. IDO2DB with multiple Clients</b></p>
+<a name="id5719254"></a><p class="title"><b>Figure 12.10. IDO2DB with multiple Clients</b></p>
<div class="figure-contents">
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/db_example-configs.html
^
|
@@ -31,7 +31,7 @@
<div class="section" title="Single Server, Single Instance Setup">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1547198"></a>Single Server, Single Instance Setup</h3></div></div></div>
+<a name="id5719298"></a>Single Server, Single Instance Setup</h3></div></div></div>
<p>The easiest configuration occurs when you have a single Icinga instance running on your network. In this case, installing
@@ -41,7 +41,7 @@
setup...</p>
<div class="figure">
-<a name="id1547217"></a><p class="title"><b>Figure 12.11. Single Server, Single Instance Setup</b></p>
+<a name="id5719317"></a><p class="title"><b>Figure 12.11. Single Server, Single Instance Setup</b></p>
<div class="figure-contents">
@@ -86,7 +86,7 @@
<div class="section" title="Single Server, Multiple Instance Setup">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1547310"></a>Single Server, Multiple Instance Setup</h3></div></div></div>
+<a name="id5719409"></a>Single Server, Multiple Instance Setup</h3></div></div></div>
<p>Another simple configuration can be used when you have multiple Icinga instances running on a single server. Installing and
@@ -96,7 +96,7 @@
setup...</p>
<div class="figure">
-<a name="id1547329"></a><p class="title"><b>Figure 12.12. Single Server, Multiple Instance Setup</b></p>
+<a name="id5719426"></a><p class="title"><b>Figure 12.12. Single Server, Multiple Instance Setup</b></p>
<div class="figure-contents">
@@ -132,7 +132,7 @@
<div class="section" title="Single Server, Single Instance Log File Import">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1547404"></a>Single Server, Single Instance Log File Import</h3></div></div></div>
+<a name="id5719501"></a>Single Server, Single Instance Log File Import</h3></div></div></div>
<p>There are two reasons you'll probably want to import your Icinga log files into the same database that Icinga
@@ -152,7 +152,7 @@
</ol></div>
<div class="figure">
-<a name="id1547442"></a><p class="title"><b>Figure 12.13. Single Server, Single Instance Log File Import</b></p>
+<a name="id5719538"></a><p class="title"><b>Figure 12.13. Single Server, Single Instance Log File Import</b></p>
<div class="figure-contents">
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/db_intro.html
^
|
@@ -34,7 +34,7 @@
<div class="section" title="Purpose">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id417725"></a>Purpose</h3></div></div></div>
+<a name="id5718112"></a>Purpose</h3></div></div></div>
<p>The IDOUtils addon is designed to store all configuration and event data from Icinga in a relational database. Storing information
@@ -46,7 +46,7 @@
<div class="section" title="Design Overview">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1546714"></a>Design Overview</h3></div></div></div>
+<a name="id5718816"></a>Design Overview</h3></div></div></div>
<p>The IDOUtils addon was designed to work for users who have:</p>
@@ -67,7 +67,7 @@
databases than data from other Icinga instances.</p>
<div class="figure">
-<a name="id1546749"></a><p class="title"><b>Figure 12.1. Multiple instances</b></p>
+<a name="id5718858"></a><p class="title"><b>Figure 12.1. Multiple instances</b></p>
<div class="figure-contents">
@@ -80,7 +80,7 @@
databases if desired.</p>
<div class="figure">
-<a name="id1546783"></a><p class="title"><b>Figure 12.2. Future development: One Instance, multiple databases</b></p>
+<a name="id5718886"></a><p class="title"><b>Figure 12.2. Future development: One Instance, multiple databases</b></p>
<div class="figure-contents">
@@ -92,7 +92,7 @@
<div class="section" title="Instances">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1546803"></a>Instances</h3></div></div></div>
+<a name="id5718901"></a>Instances</h3></div></div></div>
<p>Each Icinga process, whether it is a standalone monitoring server, or part of a distributed, redundant, or fail over monitoring
@@ -103,7 +103,7 @@
on their geographical location...</p>
<div class="figure">
-<a name="id1546821"></a><p class="title"><b>Figure 12.3. Instance names based on geographical locations</b></p>
+<a name="id5718921"></a><p class="title"><b>Figure 12.3. Instance names based on geographical locations</b></p>
<div class="figure-contents">
@@ -115,7 +115,7 @@
<p>Or you could name Icinga instances based on their purpose...</p>
<div class="figure">
-<a name="id1546844"></a><p class="title"><b>Figure 12.4. Instance names based on their purpose</b></p>
+<a name="id5718948"></a><p class="title"><b>Figure 12.4. Instance names based on their purpose</b></p>
<div class="figure-contents">
@@ -132,7 +132,7 @@
<div class="section" title="Installation">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1546858"></a>Installation</h3></div></div></div>
+<a name="id5718976"></a>Installation</h3></div></div></div>
<p>The installation of the IDOUtils is described in the <a class="link" href="quickstart-idoutils.html" title="Icinga with IDOUtils Quickstart">Quickstart IDOUtils</a></p>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/db_model.html
^
|
@@ -87,10 +87,10 @@
<div class="section" title="Central Tables">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1547667"></a><a name="dbm_ct"></a>Central Tables</h3></div></div></div>
+<a name="id5719694"></a><a name="dbm_ct"></a>Central Tables</h3></div></div></div>
- <a class="indexterm" name="id1547678"></a>
+ <a class="indexterm" name="id5719784"></a>
<p>There are two "core" or "central" tables, described below, that are referenced by nearly every table in the database. Read below
for more information.</p>
@@ -109,7 +109,7 @@
<p><span class="emphasis"><em>Relationship Diagram</em></span></p>
<div class="figure">
-<a name="id1547718"></a><p class="title"><b>Figure 12.14. Relationship of Central Tables</b></p>
+<a name="id5719838"></a><p class="title"><b>Figure 12.14. Relationship of Central Tables</b></p>
<div class="figure-contents">
@@ -120,7 +120,7 @@
<a name="dbm_instances"></a>
- <a class="indexterm" name="id1547756"></a>
+ <a class="indexterm" name="id5719864"></a>
<p><span class="emphasis"><em>Instance Table</em></span></p>
@@ -169,7 +169,7 @@
<a name="dbm_objects"></a>
- <a class="indexterm" name="id1547874"></a>
+ <a class="indexterm" name="id5719980"></a>
<p><span class="emphasis"><em>Objects Table</em></span></p>
@@ -271,10 +271,10 @@
<div class="section" title="Debugging Tables">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1547669"></a><a name="dbm_dt"></a> Debugging Tables</h3></div></div></div>
+<a name="id5720009"></a><a name="dbm_dt"></a> Debugging Tables</h3></div></div></div>
- <a class="indexterm" name="id1548124"></a>
+ <a class="indexterm" name="id5720229"></a>
<p>There is currently only one table in the database that is used to hold information that might be useful for debugging purposes.
Read below for more information.</p>
@@ -288,7 +288,7 @@
<p>Relationship Diagram</p>
<div class="figure">
-<a name="id1548153"></a><p class="title"><b>Figure 12.15. Relationship of Debugging Tables</b></p>
+<a name="id5720263"></a><p class="title"><b>Figure 12.15. Relationship of Debugging Tables</b></p>
<div class="figure-contents">
@@ -299,7 +299,7 @@
<a name="dbm_conninfo"></a>
- <a class="indexterm" name="id1548188"></a>
+ <a class="indexterm" name="id5720297"></a>
<p><span class="emphasis"><em>Conninfo Table</em></span></p>
@@ -460,10 +460,10 @@
<div class="section" title="Historical Tables">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1548114"></a><a name="dbm_ht"></a>Historical Tables</h3></div></div></div>
+<a name="id5720223"></a><a name="dbm_ht"></a>Historical Tables</h3></div></div></div>
- <a class="indexterm" name="id1548649"></a>
+ <a class="indexterm" name="id5720747"></a>
<p><span class="bold"><strong>Historical Data Tables</strong></span></p>
@@ -529,7 +529,7 @@
please excuse the mess. :-)</p>
<div class="figure">
-<a name="id1548850"></a><p class="title"><b>Figure 12.16. Relationship of Historical Tables</b></p>
+<a name="id5720964"></a><p class="title"><b>Figure 12.16. Relationship of Historical Tables</b></p>
<div class="figure-contents">
@@ -540,7 +540,7 @@
<a name="dbm_acknowledgements"></a>
- <a class="indexterm" name="id1548865"></a>
+ <a class="indexterm" name="id5720988"></a>
<p><span class="emphasis"><em>Acknowledgements Table</em></span></p>
@@ -678,7 +678,7 @@
<a name="dbm_commenthistory"></a>
- <a class="indexterm" name="id1549245"></a>
+ <a class="indexterm" name="id5721354"></a>
<p><span class="emphasis"><em>Commenthistory Table</em></span></p>
@@ -852,7 +852,7 @@
<a name="dbm_contactnotifications"></a>
- <a class="indexterm" name="id1549731"></a>
+ <a class="indexterm" name="id5721830"></a>
<p><span class="emphasis"><em>Contactnotifications Table</em></span></p>
@@ -967,7 +967,7 @@
<a name="dbm_contactnotificationsmethods"></a>
- <a class="indexterm" name="id1550020"></a>
+ <a class="indexterm" name="id5722126"></a>
<p><span class="emphasis"><em>Contactnotificationmethods Table</em></span></p>
@@ -1089,7 +1089,7 @@
<a name="dbm_downtimehistory"></a>
- <a class="indexterm" name="id1550335"></a>
+ <a class="indexterm" name="id5722442"></a>
<p><span class="emphasis"><em>Downtimehistory Table</em></span></p>
@@ -1286,7 +1286,7 @@
<a name="dbm_eventhandlers"></a>
- <a class="indexterm" name="id1550882"></a>
+ <a class="indexterm" name="id5722977"></a>
<p><span class="emphasis"><em>Eventhandlers Table</em></span></p>
@@ -1473,7 +1473,7 @@
<a name="dbm_externalcommands"></a>
- <a class="indexterm" name="id1551377"></a>
+ <a class="indexterm" name="id5723487"></a>
<p><span class="emphasis"><em>Externalcommands Table</em></span></p>
@@ -1566,7 +1566,7 @@
<a name="dbm_flappinghistory"></a>
- <a class="indexterm" name="id1551609"></a>
+ <a class="indexterm" name="id5723717"></a>
<p><span class="emphasis"><em>Flappinghistory Table</em></span></p>
@@ -1712,7 +1712,7 @@
<a name="dbm_hostchecks"></a>
- <a class="indexterm" name="id1552009"></a>
+ <a class="indexterm" name="id5724107"></a>
<p><span class="emphasis"><em>Hostchecks Table</em></span></p>
@@ -1940,7 +1940,7 @@
<a name="dbm_logentries"></a>
- <a class="indexterm" name="id1552616"></a>
+ <a class="indexterm" name="id5724723"></a>
<p><span class="emphasis"><em>Logentries Table</em></span></p>
@@ -2054,7 +2054,7 @@
<a name="dbm_notifications"></a>
- <a class="indexterm" name="id1552912"></a>
+ <a class="indexterm" name="id5725017"></a>
<p><span class="emphasis"><em>Notifications Table</em></span></p>
@@ -2203,7 +2203,7 @@
<a name="dbm_processevents"></a>
- <a class="indexterm" name="id1553311"></a>
+ <a class="indexterm" name="id5725415"></a>
<p><span class="emphasis"><em>Processevents Table</em></span></p>
@@ -2318,7 +2318,7 @@
<a name="dbm_servicechecks"></a>
- <a class="indexterm" name="id1553598"></a>
+ <a class="indexterm" name="id5725706"></a>
<p><span class="emphasis"><em>Servicechecks Table</em></span></p>
@@ -2534,7 +2534,7 @@
<a name="dbm_statehistory"></a>
- <a class="indexterm" name="id1554199"></a>
+ <a class="indexterm" name="id5726296"></a>
<p><span class="emphasis"><em>Statehistory Table</em></span></p>
@@ -2681,7 +2681,7 @@
<a name="dbm_systemcommands"></a>
- <a class="indexterm" name="id1554583"></a>
+ <a class="indexterm" name="id5726690"></a>
<p><span class="emphasis"><em>Systemcommands Table</em></span></p>
@@ -2817,7 +2817,7 @@
<a name="dbm_timedevents"></a>
- <a class="indexterm" name="id1554939"></a>
+ <a class="indexterm" name="id5727048"></a>
<p><span class="emphasis"><em>Timedevents Table</em></span></p>
@@ -2953,10 +2953,10 @@
<div class="section" title="Current Status Tables">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1548621"></a><a name="dbm_cu"></a> Current Status Tables</h3></div></div></div>
+<a name="id5727355"></a><a name="dbm_cu"></a> Current Status Tables</h3></div></div></div>
- <a class="indexterm" name="id1555297"></a>
+ <a class="indexterm" name="id5727387"></a>
<p>There are several tables in the database which are used to hold current status information on the Icinga process and all
hosts and services that it is monitoring. Entries in these tables are cleared whenever the Icinga daemon (belonging to the same
@@ -2995,7 +2995,7 @@
related) is not shown.</p>
<div class="figure">
-<a name="id1555421"></a><p class="title"><b>Figure 12.17. Relationship of Current Status Tables</b></p>
+<a name="id5727527"></a><p class="title"><b>Figure 12.17. Relationship of Current Status Tables</b></p>
<div class="figure-contents">
@@ -3006,7 +3006,7 @@
<a name="dbm_comments"></a>
- <a class="indexterm" name="id1555445"></a>
+ <a class="indexterm" name="id5727550"></a>
<p><span class="emphasis"><em>Comments Table</em></span></p>
@@ -3166,7 +3166,7 @@
<a name="dbm_customvariablestatus"></a>
- <a class="indexterm" name="id1555866"></a>
+ <a class="indexterm" name="id5727979"></a>
<p><span class="emphasis"><em>Customvariablestatus Table</em></span></p>
@@ -3271,7 +3271,7 @@
<a name="dbm_hoststatus"></a>
- <a class="indexterm" name="id1556135"></a>
+ <a class="indexterm" name="id5728246"></a>
<p><span class="emphasis"><em>Hoststatus Table</em></span></p>
@@ -3648,7 +3648,7 @@
<a name="dbm_programstatus"></a>
- <a class="indexterm" name="id1557210"></a>
+ <a class="indexterm" name="id5729323"></a>
<p><span class="emphasis"><em>Programstatus Table</em></span></p>
@@ -3873,7 +3873,7 @@
<a name="dbm_runtimevariables"></a>
- <a class="indexterm" name="id1557850"></a>
+ <a class="indexterm" name="id5729961"></a>
<p><span class="emphasis"><em>Runtimevariables Table</em></span></p>
@@ -3953,7 +3953,7 @@
<a name="dbm_scheduleddowntime"></a>
- <a class="indexterm" name="id1558040"></a>
+ <a class="indexterm" name="id5730153"></a>
<p><span class="emphasis"><em>Scheduleddowntime Table</em></span></p>
@@ -4129,7 +4129,7 @@
<a name="dbm_servicestatus"></a>
- <a class="indexterm" name="id1558507"></a>
+ <a class="indexterm" name="id5730616"></a>
<p><span class="emphasis"><em>Servicestatus Table</em></span></p>
@@ -4509,7 +4509,7 @@
<a name="dbm_timedeventqueue"></a>
- <a class="indexterm" name="id1559586"></a>
+ <a class="indexterm" name="id5731699"></a>
<p><span class="emphasis"><em>Timedeventqueue Table</em></span></p>
@@ -4622,10 +4622,10 @@
<div class="section" title="Configuration Tables">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1548633"></a><a name="dbm_cf"></a> Configuration Tables</h3></div></div></div>
+<a name="id5720722"></a><a name="dbm_cf"></a> Configuration Tables</h3></div></div></div>
- <a class="indexterm" name="id1559901"></a>
+ <a class="indexterm" name="id5732007"></a>
<div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;"><table border="0" summary="Note">
<tr>
@@ -4729,7 +4729,7 @@
</ul></div>
<div class="figure">
-<a name="id1559932"></a><p class="title"><b>Figure 12.18. Relationship of Configuration Tables</b></p>
+<a name="id5732348"></a><p class="title"><b>Figure 12.18. Relationship of Configuration Tables</b></p>
<div class="figure-contents">
@@ -4740,7 +4740,7 @@
<a name="dbm_commands"></a>
- <a class="indexterm" name="id1560244"></a>
+ <a class="indexterm" name="id5732366"></a>
<p><span class="emphasis"><em>Commands Table</em></span></p>
@@ -4805,7 +4805,7 @@
<a name="dbm_configfiles"></a>
- <a class="indexterm" name="id1560411"></a>
+ <a class="indexterm" name="id5732533"></a>
<p><span class="emphasis"><em>Configfiles Table</em></span></p>
@@ -4863,7 +4863,7 @@
<a name="dbm_configfilevariables"></a>
- <a class="indexterm" name="id1560560"></a>
+ <a class="indexterm" name="id5732682"></a>
<p><span class="emphasis"><em>Configfilevariables Table</em></span></p>
@@ -4928,7 +4928,7 @@
<a name="dbm_contact_addresses"></a>
- <a class="indexterm" name="id1560726"></a>
+ <a class="indexterm" name="id5732845"></a>
<p><span class="emphasis"><em>Contact_addresses Table</em></span></p>
@@ -4993,7 +4993,7 @@
<a name="dbm_contact_notificationcommands"></a>
- <a class="indexterm" name="id1560896"></a>
+ <a class="indexterm" name="id5733012"></a>
<p><span class="emphasis"><em>Contact_notificationcommands Table</em></span></p>
@@ -5065,7 +5065,7 @@
<a name="dbm_contactgroup_members"></a>
- <a class="indexterm" name="id1561087"></a>
+ <a class="indexterm" name="id5733199"></a>
<p><span class="emphasis"><em>Contactgroup_members Table</em></span></p>
@@ -5123,7 +5123,7 @@
<a name="dbm_contactgroups"></a>
- <a class="indexterm" name="id1561225"></a>
+ <a class="indexterm" name="id5733347"></a>
<p><span class="emphasis"><em>Contactgroups Table</em></span></p>
@@ -5188,7 +5188,7 @@
<a name="dbm_contactnotificationmethods"></a>
- <a class="indexterm" name="id1561393"></a>
+ <a class="indexterm" name="id5733514"></a>
<p><span class="emphasis"><em>Contactnotificationmethods Table</em></span></p>
@@ -5281,7 +5281,7 @@
<a name="dbm_contacts"></a>
- <a class="indexterm" name="id1561636"></a>
+ <a class="indexterm" name="id5733760"></a>
<p><span class="emphasis"><em>Contacts Table</em></span></p>
@@ -5472,7 +5472,7 @@
<a name="dbm_customvariables"></a>
- <a class="indexterm" name="id1562199"></a>
+ <a class="indexterm" name="id5734313"></a>
<p><span class="emphasis"><em>customvariables Table</em></span></p>
@@ -5551,7 +5551,7 @@
<a name="dbm_host_contactgroups"></a>
- <a class="indexterm" name="id1562398"></a>
+ <a class="indexterm" name="id5734520"></a>
<p><span class="emphasis"><em>Host_contactgroups Table</em></span></p>
@@ -5609,7 +5609,7 @@
<a name="dbm_hostescalation_contactgroups"></a>
- <a class="indexterm" name="id1562546"></a>
+ <a class="indexterm" name="id5734669"></a>
<p><span class="emphasis"><em>Hostescalation_contactgroups Table</em></span></p>
@@ -5667,7 +5667,7 @@
<a name="dbm_host_parenthosts"></a>
- <a class="indexterm" name="id1562693"></a>
+ <a class="indexterm" name="id5734816"></a>
<p><span class="emphasis"><em>Host_parenthosts Table</em></span></p>
@@ -5725,7 +5725,7 @@
<a name="dbm_hostdependencies"></a>
- <a class="indexterm" name="id1562842"></a>
+ <a class="indexterm" name="id5734962"></a>
<p><span class="emphasis"><em>Hostdependencies Table</em></span></p>
@@ -5832,7 +5832,7 @@
<a name="dbm_hostescalations"></a>
- <a class="indexterm" name="id1563153"></a>
+ <a class="indexterm" name="id5735267"></a>
<p><span class="emphasis"><em>Hostescalations Table</em></span></p>
@@ -5939,7 +5939,7 @@
<a name="dbm_hostgroup_members"></a>
- <a class="indexterm" name="id1563439"></a>
+ <a class="indexterm" name="id5735553"></a>
<p><span class="emphasis"><em>Hostgroup_members Table</em></span></p>
@@ -5997,7 +5997,7 @@
<a name="dbm_hostgroups"></a>
- <a class="indexterm" name="id1563576"></a>
+ <a class="indexterm" name="id5735701"></a>
<p><span class="emphasis"><em>Hostgroups Table</em></span></p>
@@ -6062,7 +6062,7 @@
<a name="dbm_hosts"></a>
- <a class="indexterm" name="id1563743"></a>
+ <a class="indexterm" name="id5735866"></a>
<p><span class="emphasis"><em>Hosts Table</em></span></p>
@@ -6498,7 +6498,7 @@
<a name="dbm_service_contactgroups"></a>
- <a class="indexterm" name="id1563788"></a>
+ <a class="indexterm" name="id5735918"></a>
<p><span class="emphasis"><em>Service_contactgroups Table</em></span></p>
@@ -6556,7 +6556,7 @@
<a name="dbm_servicedependencies"></a>
- <a class="indexterm" name="id1565048"></a>
+ <a class="indexterm" name="id5737170"></a>
<p><span class="emphasis"><em>Servicedependencies Table</em></span></p>
@@ -6670,7 +6670,7 @@
<a name="dbm_serviceescalation_contactgroups"></a>
- <a class="indexterm" name="id1565364"></a>
+ <a class="indexterm" name="id5737478"></a>
<p><span class="emphasis"><em>Serviceescalation_contactgroups Table</em></span></p>
@@ -6728,7 +6728,7 @@
<a name="dbm_serviceescalations"></a>
- <a class="indexterm" name="id1565514"></a>
+ <a class="indexterm" name="id5737625"></a>
<p><span class="emphasis"><em>Serviceescalations Table</em></span></p>
@@ -6842,7 +6842,7 @@
<a name="dbm_servicegroup_members"></a>
- <a class="indexterm" name="id1565807"></a>
+ <a class="indexterm" name="id5737928"></a>
<p><span class="emphasis"><em>Servicegroup_members Table</em></span></p>
@@ -6900,7 +6900,7 @@
<a name="dbm_servicegroups"></a>
- <a class="indexterm" name="id1565954"></a>
+ <a class="indexterm" name="id5738076"></a>
<p><span class="emphasis"><em>Servicegroups Table</em></span></p>
@@ -6965,7 +6965,7 @@
<a name="dbm_services"></a>
- <a class="indexterm" name="id1566123"></a>
+ <a class="indexterm" name="id5738246"></a>
<p><span class="emphasis"><em>Services Table</em></span></p>
@@ -7352,7 +7352,7 @@
<a name="dbm_timeperiod_timeranges"></a>
- <a class="indexterm" name="id1566168"></a>
+ <a class="indexterm" name="id5738295"></a>
<p><span class="emphasis"><em>Timeperiod_timeranges Table</em></span></p>
@@ -7424,7 +7424,7 @@
<a name="dbm_timeperiods"></a>
- <a class="indexterm" name="id1567335"></a>
+ <a class="indexterm" name="id5739457"></a>
<p><span class="emphasis"><em>Timeperiods Table</em></span></p>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/dependencies.html
^
|
@@ -309,8 +309,8 @@
repress notifications for that (dependent) host. At some point in the future the notification dependency tests for the host may
all pass. If this happens, Icinga will start sending out notifications again as it normally would for the host. More
information on the notification logic can be found <a class="link" href="notifications.html" title="Notifications">here</a>.</p>
- <a class="indexterm" name="id1523167"></a>
- <a class="indexterm" name="id1523176"></a>
+ <a class="indexterm" name="id5695150"></a>
+ <a class="indexterm" name="id5695166"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/dependencychecks.html
^
|
@@ -94,7 +94,7 @@
<p>Predictive dependency checks are on-demand checks and are therefore subject to the rules of <a class="link" href="cachedchecks.html" title="Cached Checks">cached checks</a>. Cached checks can provide you with performance improvements by allowing
Icinga to forgo running an actual host or service check if it can use a relatively recent check result instead. More
information on cached checks can be found <a class="link" href="cachedchecks.html" title="Cached Checks">here</a>.</p>
- <a class="indexterm" name="id1525334"></a>
+ <a class="indexterm" name="id5697328"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/distributed.html
^
|
@@ -358,7 +358,7 @@
is used for processing service check results (see documentation above). In order to make sure passive host check results are up
to date, you'll want to enable <a class="link" href="freshness.html" title="Service and Host Freshness Checks">freshness checking</a> for hosts (similiar to what is described
above for services).</p>
- <a class="indexterm" name="id1519348"></a>
+ <a class="indexterm" name="id5691302"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/downtime.html
^
|
@@ -119,7 +119,7 @@
9:20pm-1:30am), Icinga will wait until the last period of scheduled downtime is over before it allows notifications to be
sent out for that host or service. In this example notifications would be suppressed for host A until 1:30am Tuesday
morning.</p>
- <a class="indexterm" name="id1524405"></a>
+ <a class="indexterm" name="id5696398"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/embeddedperl.html
^
|
@@ -254,7 +254,7 @@
<p>Information on developing plugins for use with the embedded Perl
interpreter can be found <a class="link" href="epnplugins.html" title="Developing Plugins For Use With Embedded Perl">here</a>.</p>
- <a class="indexterm" name="id1524877"></a>
+ <a class="indexterm" name="id5696866"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/epnplugins.html
^
|
@@ -258,7 +258,7 @@
Icinga). ]</font></span></p>
</li>
</ol></div>
- <a class="indexterm" name="id1539094"></a>
+ <a class="indexterm" name="id5711444"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/escalation_condition.html
^
|
@@ -97,7 +97,7 @@
CRITICAL.</p>
<p>[ Thanks to: Vitali Voroth, DECOIT GmbH * http://www.decoit.de ]</p>
- <a class="indexterm" name="id1521815"></a>
+ <a class="indexterm" name="id5693794"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/escalations.html
^
|
@@ -303,7 +303,7 @@
particular state, you can use the <span class="emphasis"><em>escalation_options</em></span> directive in the host or service escalation
definition. If you do not use the <span class="emphasis"><em>escalation_options</em></span> directive, the escalation can be used when the host or
service is in any state.</p>
- <a class="indexterm" name="id1521632"></a>
+ <a class="indexterm" name="id5693604"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/eventhandlers.html
^
|
@@ -270,8 +270,8 @@
<p>That's all there is to it! Event handlers are pretty simple to write and implement, so give it a try and see what you can
do.</p>
- <a class="indexterm" name="id1517798"></a>
- <a class="indexterm" name="id1517803"></a>
+ <a class="indexterm" name="id5689743"></a>
+ <a class="indexterm" name="id5689747"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/extcommands2.html
^
|
@@ -1197,325 +1197,325 @@
<p>Disables processing of service checks via the OCSP command on a program-wide basis.</p>
- <a class="indexterm" name="id1543548"></a>
+ <a class="indexterm" name="id5715624"></a>
- <a class="indexterm" name="id1543550"></a>
+ <a class="indexterm" name="id5715527"></a>
- <a class="indexterm" name="id1543577"></a>
+ <a class="indexterm" name="id5715657"></a>
- <a class="indexterm" name="id1543592"></a>
+ <a class="indexterm" name="id5715673"></a>
- <a class="indexterm" name="id1543606"></a>
+ <a class="indexterm" name="id5715658"></a>
- <a class="indexterm" name="id1543620"></a>
+ <a class="indexterm" name="id5715702"></a>
- <a class="indexterm" name="id1543634"></a>
+ <a class="indexterm" name="id5715716"></a>
- <a class="indexterm" name="id1543647"></a>
+ <a class="indexterm" name="id5715730"></a>
- <a class="indexterm" name="id1543661"></a>
+ <a class="indexterm" name="id5715717"></a>
- <a class="indexterm" name="id1543675"></a>
+ <a class="indexterm" name="id5715745"></a>
- <a class="indexterm" name="id1543688"></a>
+ <a class="indexterm" name="id5715771"></a>
- <a class="indexterm" name="id1543702"></a>
+ <a class="indexterm" name="id5715784"></a>
- <a class="indexterm" name="id1543715"></a>
+ <a class="indexterm" name="id5715786"></a>
- <a class="indexterm" name="id1543730"></a>
+ <a class="indexterm" name="id5715814"></a>
- <a class="indexterm" name="id1543743"></a>
+ <a class="indexterm" name="id5715799"></a>
- <a class="indexterm" name="id1543756"></a>
+ <a class="indexterm" name="id5715839"></a>
- <a class="indexterm" name="id1543770"></a>
+ <a class="indexterm" name="id5715851"></a>
- <a class="indexterm" name="id1543784"></a>
+ <a class="indexterm" name="id5715865"></a>
- <a class="indexterm" name="id1543798"></a>
+ <a class="indexterm" name="id5715882"></a>
- <a class="indexterm" name="id1543812"></a>
+ <a class="indexterm" name="id5715897"></a>
- <a class="indexterm" name="id1543825"></a>
+ <a class="indexterm" name="id5715898"></a>
- <a class="indexterm" name="id1543839"></a>
+ <a class="indexterm" name="id5715925"></a>
- <a class="indexterm" name="id1543852"></a>
+ <a class="indexterm" name="id5715936"></a>
- <a class="indexterm" name="id1543867"></a>
+ <a class="indexterm" name="id5715953"></a>
- <a class="indexterm" name="id1543880"></a>
+ <a class="indexterm" name="id5715938"></a>
- <a class="indexterm" name="id1543894"></a>
+ <a class="indexterm" name="id5715939"></a>
- <a class="indexterm" name="id1543908"></a>
+ <a class="indexterm" name="id5715981"></a>
- <a class="indexterm" name="id1543922"></a>
+ <a class="indexterm" name="id5716007"></a>
- <a class="indexterm" name="id1543935"></a>
+ <a class="indexterm" name="id5716020"></a>
- <a class="indexterm" name="id1543949"></a>
+ <a class="indexterm" name="id5716034"></a>
- <a class="indexterm" name="id1543963"></a>
+ <a class="indexterm" name="id5716022"></a>
- <a class="indexterm" name="id1543977"></a>
+ <a class="indexterm" name="id5716036"></a>
- <a class="indexterm" name="id1543990"></a>
+ <a class="indexterm" name="id5716075"></a>
- <a class="indexterm" name="id1544004"></a>
+ <a class="indexterm" name="id5716090"></a>
- <a class="indexterm" name="id1544018"></a>
+ <a class="indexterm" name="id5716077"></a>
- <a class="indexterm" name="id1544031"></a>
+ <a class="indexterm" name="id5716119"></a>
- <a class="indexterm" name="id1544045"></a>
+ <a class="indexterm" name="id5716131"></a>
- <a class="indexterm" name="id1544059"></a>
+ <a class="indexterm" name="id5716146"></a>
- <a class="indexterm" name="id1544073"></a>
+ <a class="indexterm" name="id5716132"></a>
- <a class="indexterm" name="id1544086"></a>
+ <a class="indexterm" name="id5716174"></a>
- <a class="indexterm" name="id1544100"></a>
+ <a class="indexterm" name="id5716160"></a>
- <a class="indexterm" name="id1544113"></a>
+ <a class="indexterm" name="id5716201"></a>
- <a class="indexterm" name="id1544128"></a>
+ <a class="indexterm" name="id5716216"></a>
- <a class="indexterm" name="id1544141"></a>
+ <a class="indexterm" name="id5716229"></a>
- <a class="indexterm" name="id1544155"></a>
+ <a class="indexterm" name="id5716244"></a>
- <a class="indexterm" name="id1544169"></a>
+ <a class="indexterm" name="id5716257"></a>
- <a class="indexterm" name="id1544183"></a>
+ <a class="indexterm" name="id5716270"></a>
- <a class="indexterm" name="id1544196"></a>
+ <a class="indexterm" name="id5716284"></a>
- <a class="indexterm" name="id1544209"></a>
+ <a class="indexterm" name="id5716300"></a>
- <a class="indexterm" name="id1544224"></a>
+ <a class="indexterm" name="id5716313"></a>
- <a class="indexterm" name="id1544238"></a>
+ <a class="indexterm" name="id5716324"></a>
- <a class="indexterm" name="id1544251"></a>
+ <a class="indexterm" name="id5716339"></a>
- <a class="indexterm" name="id1544263"></a>
+ <a class="indexterm" name="id5716325"></a>
- <a class="indexterm" name="id1544278"></a>
+ <a class="indexterm" name="id5716366"></a>
- <a class="indexterm" name="id1544292"></a>
+ <a class="indexterm" name="id5716353"></a>
- <a class="indexterm" name="id1544306"></a>
+ <a class="indexterm" name="id5716367"></a>
- <a class="indexterm" name="id1544319"></a>
+ <a class="indexterm" name="id5716407"></a>
- <a class="indexterm" name="id1544333"></a>
+ <a class="indexterm" name="id5716394"></a>
- <a class="indexterm" name="id1544347"></a>
+ <a class="indexterm" name="id5716408"></a>
- <a class="indexterm" name="id1544361"></a>
+ <a class="indexterm" name="id5716450"></a>
- <a class="indexterm" name="id1544374"></a>
+ <a class="indexterm" name="id5716461"></a>
- <a class="indexterm" name="id1544388"></a>
+ <a class="indexterm" name="id5716437"></a>
- <a class="indexterm" name="id1544402"></a>
+ <a class="indexterm" name="id5716491"></a>
- <a class="indexterm" name="id1544416"></a>
+ <a class="indexterm" name="id5716503"></a>
- <a class="indexterm" name="id1544430"></a>
+ <a class="indexterm" name="id5716517"></a>
- <a class="indexterm" name="id1544441"></a>
+ <a class="indexterm" name="id5716530"></a>
- <a class="indexterm" name="id1544457"></a>
+ <a class="indexterm" name="id5716545"></a>
- <a class="indexterm" name="id1544470"></a>
+ <a class="indexterm" name="id5716533"></a>
- <a class="indexterm" name="id1544484"></a>
+ <a class="indexterm" name="id5716574"></a>
- <a class="indexterm" name="id1544498"></a>
+ <a class="indexterm" name="id5716586"></a>
- <a class="indexterm" name="id1544512"></a>
+ <a class="indexterm" name="id5716601"></a>
- <a class="indexterm" name="id1544526"></a>
+ <a class="indexterm" name="id5716617"></a>
- <a class="indexterm" name="id1544540"></a>
+ <a class="indexterm" name="id5716631"></a>
- <a class="indexterm" name="id1544554"></a>
+ <a class="indexterm" name="id5716646"></a>
- <a class="indexterm" name="id1544568"></a>
+ <a class="indexterm" name="id5716657"></a>
- <a class="indexterm" name="id1544582"></a>
+ <a class="indexterm" name="id5716669"></a>
- <a class="indexterm" name="id1544595"></a>
+ <a class="indexterm" name="id5716686"></a>
- <a class="indexterm" name="id1544609"></a>
+ <a class="indexterm" name="id5716672"></a>
- <a class="indexterm" name="id1544623"></a>
+ <a class="indexterm" name="id5716713"></a>
- <a class="indexterm" name="id1544636"></a>
+ <a class="indexterm" name="id5716728"></a>
- <a class="indexterm" name="id1544650"></a>
+ <a class="indexterm" name="id5716739"></a>
- <a class="indexterm" name="id1544664"></a>
+ <a class="indexterm" name="id5716756"></a>
- <a class="indexterm" name="id1544678"></a>
+ <a class="indexterm" name="id5716770"></a>
- <a class="indexterm" name="id1544692"></a>
+ <a class="indexterm" name="id5716784"></a>
- <a class="indexterm" name="id1544706"></a>
+ <a class="indexterm" name="id5716771"></a>
- <a class="indexterm" name="id1544720"></a>
+ <a class="indexterm" name="id5716812"></a>
- <a class="indexterm" name="id1544731"></a>
+ <a class="indexterm" name="id5716798"></a>
- <a class="indexterm" name="id1544747"></a>
+ <a class="indexterm" name="id5716840"></a>
- <a class="indexterm" name="id1544761"></a>
+ <a class="indexterm" name="id5716826"></a>
- <a class="indexterm" name="id1544774"></a>
+ <a class="indexterm" name="id5716864"></a>
- <a class="indexterm" name="id1544788"></a>
+ <a class="indexterm" name="id5716880"></a>
- <a class="indexterm" name="id1544802"></a>
+ <a class="indexterm" name="id5716866"></a>
- <a class="indexterm" name="id1544816"></a>
+ <a class="indexterm" name="id5716908"></a>
- <a class="indexterm" name="id1544829"></a>
+ <a class="indexterm" name="id5716894"></a>
- <a class="indexterm" name="id1544843"></a>
+ <a class="indexterm" name="id5716934"></a>
- <a class="indexterm" name="id1544857"></a>
+ <a class="indexterm" name="id5716949"></a>
- <a class="indexterm" name="id1544871"></a>
+ <a class="indexterm" name="id5716963"></a>
- <a class="indexterm" name="id1544885"></a>
+ <a class="indexterm" name="id5716935"></a>
- <a class="indexterm" name="id1544899"></a>
+ <a class="indexterm" name="id5716988"></a>
- <a class="indexterm" name="id1544912"></a>
+ <a class="indexterm" name="id5717004"></a>
- <a class="indexterm" name="id1544926"></a>
+ <a class="indexterm" name="id5717017"></a>
- <a class="indexterm" name="id1544940"></a>
+ <a class="indexterm" name="id5717020"></a>
- <a class="indexterm" name="id1544954"></a>
+ <a class="indexterm" name="id5717044"></a>
- <a class="indexterm" name="id1544968"></a>
+ <a class="indexterm" name="id5717031"></a>
- <a class="indexterm" name="id1544981"></a>
+ <a class="indexterm" name="id5717073"></a>
- <a class="indexterm" name="id1544995"></a>
+ <a class="indexterm" name="id5717074"></a>
- <a class="indexterm" name="id1545009"></a>
+ <a class="indexterm" name="id5717089"></a>
- <a class="indexterm" name="id1545022"></a>
+ <a class="indexterm" name="id5717115"></a>
- <a class="indexterm" name="id1545036"></a>
+ <a class="indexterm" name="id5717102"></a>
- <a class="indexterm" name="id1545050"></a>
+ <a class="indexterm" name="id5717144"></a>
- <a class="indexterm" name="id1545064"></a>
+ <a class="indexterm" name="id5717158"></a>
- <a class="indexterm" name="id1545078"></a>
+ <a class="indexterm" name="id5717171"></a>
- <a class="indexterm" name="id1545091"></a>
+ <a class="indexterm" name="id5717185"></a>
- <a class="indexterm" name="id1545105"></a>
+ <a class="indexterm" name="id5717199"></a>
- <a class="indexterm" name="id1545119"></a>
+ <a class="indexterm" name="id5717213"></a>
- <a class="indexterm" name="id1545133"></a>
+ <a class="indexterm" name="id5717228"></a>
- <a class="indexterm" name="id1545146"></a>
+ <a class="indexterm" name="id5717239"></a>
- <a class="indexterm" name="id1545160"></a>
+ <a class="indexterm" name="id5717252"></a>
- <a class="indexterm" name="id1545174"></a>
+ <a class="indexterm" name="id5717267"></a>
- <a class="indexterm" name="id1545187"></a>
+ <a class="indexterm" name="id5717279"></a>
- <a class="indexterm" name="id1545201"></a>
+ <a class="indexterm" name="id5717295"></a>
- <a class="indexterm" name="id1545215"></a>
+ <a class="indexterm" name="id5717307"></a>
- <a class="indexterm" name="id1545228"></a>
+ <a class="indexterm" name="id5717282"></a>
- <a class="indexterm" name="id1545242"></a>
+ <a class="indexterm" name="id5717309"></a>
- <a class="indexterm" name="id1545256"></a>
+ <a class="indexterm" name="id5717323"></a>
- <a class="indexterm" name="id1545270"></a>
+ <a class="indexterm" name="id5717365"></a>
- <a class="indexterm" name="id1545284"></a>
+ <a class="indexterm" name="id5717352"></a>
- <a class="indexterm" name="id1545297"></a>
+ <a class="indexterm" name="id5717393"></a>
- <a class="indexterm" name="id1545311"></a>
+ <a class="indexterm" name="id5717379"></a>
- <a class="indexterm" name="id1545324"></a>
+ <a class="indexterm" name="id5717421"></a>
- <a class="indexterm" name="id1545338"></a>
+ <a class="indexterm" name="id5717433"></a>
- <a class="indexterm" name="id1545352"></a>
+ <a class="indexterm" name="id5717446"></a>
- <a class="indexterm" name="id1545365"></a>
+ <a class="indexterm" name="id5717434"></a>
- <a class="indexterm" name="id1545379"></a>
+ <a class="indexterm" name="id5717447"></a>
- <a class="indexterm" name="id1545391"></a>
+ <a class="indexterm" name="id5717486"></a>
- <a class="indexterm" name="id1545406"></a>
+ <a class="indexterm" name="id5717502"></a>
- <a class="indexterm" name="id1545420"></a>
+ <a class="indexterm" name="id5717488"></a>
- <a class="indexterm" name="id1545434"></a>
+ <a class="indexterm" name="id5717532"></a>
- <a class="indexterm" name="id1545447"></a>
+ <a class="indexterm" name="id5717517"></a>
- <a class="indexterm" name="id1545461"></a>
+ <a class="indexterm" name="id5717557"></a>
- <a class="indexterm" name="id1545475"></a>
+ <a class="indexterm" name="id5717571"></a>
- <a class="indexterm" name="id1545488"></a>
+ <a class="indexterm" name="id5717585"></a>
- <a class="indexterm" name="id1545502"></a>
+ <a class="indexterm" name="id5717558"></a>
- <a class="indexterm" name="id1545516"></a>
+ <a class="indexterm" name="id5717612"></a>
- <a class="indexterm" name="id1545530"></a>
+ <a class="indexterm" name="id5717599"></a>
- <a class="indexterm" name="id1545544"></a>
+ <a class="indexterm" name="id5717641"></a>
- <a class="indexterm" name="id1545557"></a>
+ <a class="indexterm" name="id5717627"></a>
- <a class="indexterm" name="id1545571"></a>
+ <a class="indexterm" name="id5717642"></a>
- <a class="indexterm" name="id1545585"></a>
+ <a class="indexterm" name="id5717656"></a>
- <a class="indexterm" name="id1545598"></a>
+ <a class="indexterm" name="id5717697"></a>
- <a class="indexterm" name="id1545612"></a>
+ <a class="indexterm" name="id5717682"></a>
- <a class="indexterm" name="id1545626"></a>
+ <a class="indexterm" name="id5717723"></a>
- <a class="indexterm" name="id1545640"></a>
+ <a class="indexterm" name="id5717738"></a>
- <a class="indexterm" name="id1545654"></a>
+ <a class="indexterm" name="id5717724"></a>
- <a class="indexterm" name="id1545667"></a>
+ <a class="indexterm" name="id5717764"></a>
- <a class="indexterm" name="id1545681"></a>
+ <a class="indexterm" name="id5717779"></a>
- <a class="indexterm" name="id1545695"></a>
+ <a class="indexterm" name="id5717765"></a>
- <a class="indexterm" name="id1545709"></a>
+ <a class="indexterm" name="id5717806"></a>
- <a class="indexterm" name="id1545722"></a>
+ <a class="indexterm" name="id5717821"></a>
- <a class="indexterm" name="id1545736"></a>
+ <a class="indexterm" name="id5717807"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/faststartup.html
^
|
@@ -235,17 +235,17 @@
<p>5. That's it! Enjoy the increased startup speed.</p>
- <a class="indexterm" name="id1532424"></a>
+ <a class="indexterm" name="id5704465"></a>
- <a class="indexterm" name="id1532436"></a>
+ <a class="indexterm" name="id5704474"></a>
- <a class="indexterm" name="id1532449"></a>
+ <a class="indexterm" name="id5704488"></a>
- <a class="indexterm" name="id1532463"></a>
+ <a class="indexterm" name="id5704501"></a>
- <a class="indexterm" name="id1532476"></a>
+ <a class="indexterm" name="id5704515"></a>
- <a class="indexterm" name="id1532490"></a>
+ <a class="indexterm" name="id5704502"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/flapping.html
^
|
@@ -316,7 +316,7 @@
<p>If you would like to disable flap detection for just a few hosts or services, use the
<span class="emphasis"><em>flap_detection_enabled</em></span> directive in the host and/or service definitions to do so.</p>
- <a class="indexterm" name="id1521191"></a>
+ <a class="indexterm" name="id5693164"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/freshness.html
^
|
@@ -157,7 +157,7 @@
as an active service check. This causes the <span class="emphasis"><em>check_dummy</em></span> plugin to be executed, which returns a critical
state to Icinga. The service will then go into to a critical state (if it isn't already there) and someone will probably
get notified of the problem.</p>
- <a class="indexterm" name="id1518491"></a>
+ <a class="indexterm" name="id5690448"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/hostchecks.html
^
|
@@ -226,7 +226,7 @@
server that keeps spontaneously rebooting as soon as the operating system loads. That's always a fun scenario to have to deal
with. Icinga can detect when hosts start flapping, and can suppress notifications until flapping stops and the host's
state stabilizes. More information on the flap detection logic can be found <a class="link" href="flapping.html" title="Detection and Handling of State Flapping">here</a>.</p>
- <a class="indexterm" name="id1497906"></a>
+ <a class="indexterm" name="id5669795"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/howtos.html
^
|
@@ -55,7 +55,7 @@
<p><a class="link" href="http://www.howtoforge.com/icinga-monitoring-solution-installation-and-configuration-on-centos" target="_top">Installation and configuration Icinga on CentOS</a> (HowtoForge)</p>
<p>Thank you all!</p>
- <a class="indexterm" name="id1429638"></a>
+ <a class="indexterm" name="id5601008"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/icinga-api.html
^
|
@@ -269,9 +269,9 @@
</li>
</ol></div>
- <a class="indexterm" name="id1545986"></a>
+ <a class="indexterm" name="id5718078"></a>
- <a class="indexterm" name="id1545997"></a>
+ <a class="indexterm" name="id5718093"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/icinga-web-api.html
^
|
@@ -390,7 +390,7 @@
<p>This would return the same result as the GET request shown before.</p>
- <a class="indexterm" name="id1546685"></a>
+ <a class="indexterm" name="id5718787"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/icinga-web-config.html
^
|
@@ -299,19 +299,19 @@
<p>You need more information? Please have a look at our <a class="link" href="https://dev.icinga.org/projects/icinga-development/wiki/" target="_top">Development Wiki.</a></p>
- <a class="indexterm" name="id1514685"></a>
+ <a class="indexterm" name="id5686605"></a>
- <a class="indexterm" name="id1514699"></a>
+ <a class="indexterm" name="id5686601"></a>
- <a class="indexterm" name="id1514712"></a>
+ <a class="indexterm" name="id5686622"></a>
- <a class="indexterm" name="id1514725"></a>
+ <a class="indexterm" name="id5686636"></a>
- <a class="indexterm" name="id1514738"></a>
+ <a class="indexterm" name="id5686633"></a>
- <a class="indexterm" name="id1514752"></a>
+ <a class="indexterm" name="id5686648"></a>
- <a class="indexterm" name="id1514765"></a>
+ <a class="indexterm" name="id5686690"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/icinga-web-introduction.html
^
|
@@ -46,7 +46,7 @@
get the login screen</p>
<div class="figure">
-<a name="id1514835"></a><p class="title"><b>Figure 6.1. Icinga-Web login screen</b></p>
+<a name="id5686758"></a><p class="title"><b>Figure 6.1. Icinga-Web login screen</b></p>
<div class="figure-contents">
@@ -61,7 +61,7 @@
services being monitored</p>
<div class="figure">
-<a name="id1514866"></a><p class="title"><b>Figure 6.2. Icinga-Web overview</b></p>
+<a name="id5686782"></a><p class="title"><b>Figure 6.2. Icinga-Web overview</b></p>
<div class="figure-contents">
@@ -80,7 +80,7 @@
cronks.</p>
<div class="figure">
-<a name="id1514901"></a><p class="title"><b>Figure 6.3. Icinga-Web main screen</b></p>
+<a name="id5686832"></a><p class="title"><b>Figure 6.3. Icinga-Web main screen</b></p>
<div class="figure-contents">
@@ -110,7 +110,7 @@
</ul></div>
<div class="figure">
-<a name="id1514957"></a><p class="title"><b>Figure 6.4. Icinga-Web status cronk</b></p>
+<a name="id5686889"></a><p class="title"><b>Figure 6.4. Icinga-Web status cronk</b></p>
<div class="figure-contents">
@@ -127,7 +127,7 @@
you can see the user currently logged in and edit its preferences or log out of Icinga Web.</p>
<div class="figure">
-<a name="id1514994"></a><p class="title"><b>Figure 6.5. Icinga-Web top menu</b></p>
+<a name="id5686909"></a><p class="title"><b>Figure 6.5. Icinga-Web top menu</b></p>
<div class="figure-contents">
@@ -148,7 +148,7 @@
<p>"Data" for getting status, historical and configuration data</p>
<div class="figure">
-<a name="id1515036"></a><p class="title"><b>Figure 6.6. Icinga-Web data cronks</b></p>
+<a name="id5686969"></a><p class="title"><b>Figure 6.6. Icinga-Web data cronks</b></p>
<div class="figure-contents">
@@ -163,7 +163,7 @@
<p>"Tactical Overview" keeps general charts and customized ones (custom variables)</p>
<div class="figure">
-<a name="id1515054"></a><p class="title"><b>Figure 6.7. Icinga-Web tactical overview cronks</b></p>
+<a name="id5687004"></a><p class="title"><b>Figure 6.7. Icinga-Web tactical overview cronks</b></p>
<div class="figure-contents">
@@ -178,7 +178,7 @@
<p>"Misc" contains several useful cronks, just as iframe for external websites or the 1,2,3 columns for main view</p>
<div class="figure">
-<a name="id1515087"></a><p class="title"><b>Figure 6.8. Icinga-Web misc cronks</b></p>
+<a name="id5687038"></a><p class="title"><b>Figure 6.8. Icinga-Web misc cronks</b></p>
<div class="figure-contents">
@@ -198,7 +198,7 @@
"PING").</p>
<div class="figure">
-<a name="id1515137"></a><p class="title"><b>Figure 6.9. Icinga-Web live search</b></p>
+<a name="id5687073"></a><p class="title"><b>Figure 6.9. Icinga-Web live search</b></p>
<div class="figure-contents">
@@ -215,7 +215,7 @@
space for the main view.</p>
<div class="figure">
-<a name="id1515171"></a><p class="title"><b>Figure 6.10. Icinga-Web log</b></p>
+<a name="id5687105"></a><p class="title"><b>Figure 6.10. Icinga-Web log</b></p>
<div class="figure-contents">
@@ -234,7 +234,7 @@
summarizes the possibilities in general (several Cronks can provide more, like sending commands).</p>
<div class="figure">
-<a name="id1515215"></a><p class="title"><b>Figure 6.11. Icinga-Web cronk bar</b></p>
+<a name="id5687123"></a><p class="title"><b>Figure 6.11. Icinga-Web cronk bar</b></p>
<div class="figure-contents">
@@ -259,7 +259,7 @@
</ul></div>
<div class="figure">
-<a name="id1515263"></a><p class="title"><b>Figure 6.12. Icinga-Web cronk bar</b></p>
+<a name="id5687198"></a><p class="title"><b>Figure 6.12. Icinga-Web cronk bar</b></p>
<div class="figure-contents">
@@ -286,7 +286,7 @@
<p>Host Commands</p>
<div class="figure">
-<a name="id1515328"></a><p class="title"><b>Figure 6.13. Icinga-Web host commands</b></p>
+<a name="id5687261"></a><p class="title"><b>Figure 6.13. Icinga-Web host commands</b></p>
<div class="figure-contents">
@@ -301,7 +301,7 @@
<p>Service Commands</p>
<div class="figure">
-<a name="id1515362"></a><p class="title"><b>Figure 6.14. Icinga-Web service commands</b></p>
+<a name="id5687296"></a><p class="title"><b>Figure 6.14. Icinga-Web service commands</b></p>
<div class="figure-contents">
@@ -321,7 +321,7 @@
repeating this procedure.</p>
<div class="figure">
-<a name="id1515399"></a><p class="title"><b>Figure 6.15. Icinga-Web filter restriction</b></p>
+<a name="id5687333"></a><p class="title"><b>Figure 6.15. Icinga-Web filter restriction</b></p>
<div class="figure-contents">
@@ -336,7 +336,7 @@
and add a value into the form. Proposals are shown while you are typing.</p>
<div class="figure">
-<a name="id1515426"></a><p class="title"><b>Figure 6.16. Icinga-Web filter condition</b></p>
+<a name="id5687361"></a><p class="title"><b>Figure 6.16. Icinga-Web filter condition</b></p>
<div class="figure-contents">
@@ -351,7 +351,7 @@
An active filter is marked red.</p>
<div class="figure">
-<a name="id1515454"></a><p class="title"><b>Figure 6.17. Icinga-Web filter active</b></p>
+<a name="id5687348"></a><p class="title"><b>Figure 6.17. Icinga-Web filter active</b></p>
<div class="figure-contents">
@@ -369,7 +369,7 @@
<p>Enter the administration panel by selecting "Admin" from the top menu, and select "Users", "Groups" or "Logs".</p>
<div class="figure">
-<a name="id1515496"></a><p class="title"><b>Figure 6.18. Icinga-Web top menu admin</b></p>
+<a name="id5687246"></a><p class="title"><b>Figure 6.18. Icinga-Web top menu admin</b></p>
<div class="figure-contents">
@@ -385,7 +385,7 @@
<p>You can add, remove and edit users.</p>
<div class="figure">
-<a name="id1515529"></a><p class="title"><b>Figure 6.19. Icinga-Web user admin</b></p>
+<a name="id5687465"></a><p class="title"><b>Figure 6.19. Icinga-Web user admin</b></p>
<div class="figure-contents">
@@ -415,7 +415,7 @@
</ul></div>
<div class="figure">
-<a name="id1515592"></a><p class="title"><b>Figure 6.20. Icinga-Web edit user</b></p>
+<a name="id5687525"></a><p class="title"><b>Figure 6.20. Icinga-Web edit user</b></p>
<div class="figure-contents">
@@ -431,7 +431,7 @@
<p>You can add, remove and edit groups. You can also modify group inheritance within the group tree on the right side.</p>
<div class="figure">
-<a name="id1515626"></a><p class="title"><b>Figure 6.21. Icinga-Web group admin</b></p>
+<a name="id5687562"></a><p class="title"><b>Figure 6.21. Icinga-Web group admin</b></p>
<div class="figure-contents">
@@ -455,7 +455,7 @@
</ul></div>
<div class="figure">
-<a name="id1515674"></a><p class="title"><b>Figure 6.22. Icinga-Web groups</b></p>
+<a name="id5687606"></a><p class="title"><b>Figure 6.22. Icinga-Web groups</b></p>
<div class="figure-contents">
@@ -472,7 +472,7 @@
picture:</p>
<div class="figure">
-<a name="id1515709"></a><p class="title"><b>Figure 6.23. Icinga-Web principals</b></p>
+<a name="id5687644"></a><p class="title"><b>Figure 6.23. Icinga-Web principals</b></p>
<div class="figure-contents">
@@ -488,7 +488,7 @@
<p>You can view several logs here, in order to catch up on possible errors.</p>
<div class="figure">
-<a name="id1515742"></a><p class="title"><b>Figure 6.24. Icinga-Web logs</b></p>
+<a name="id5687674"></a><p class="title"><b>Figure 6.24. Icinga-Web logs</b></p>
<div class="figure-contents">
@@ -499,7 +499,7 @@
</div>
<br class="figure-break">
- <a class="indexterm" name="id1515767"></a>
+ <a class="indexterm" name="id5687684"></a>
</div>
<div class="section" title="Introduction to Icinga-Web (>= 1.3.x)">
<div class="titlepage"><div><div><h3 class="title">
@@ -510,7 +510,7 @@
get the login screen</p>
<div class="figure">
-<a name="id1515806"></a><p class="title"><b>Figure 6.25. Icinga-Web login screen</b></p>
+<a name="id5687732"></a><p class="title"><b>Figure 6.25. Icinga-Web login screen</b></p>
<div class="figure-contents">
@@ -525,7 +525,7 @@
services being monitored</p>
<div class="figure">
-<a name="id1515836"></a><p class="title"><b>Figure 6.26. Icinga-Web overview</b></p>
+<a name="id5687758"></a><p class="title"><b>Figure 6.26. Icinga-Web overview</b></p>
<div class="figure-contents">
@@ -544,7 +544,7 @@
cronks.</p>
<div class="figure">
-<a name="id1515871"></a><p class="title"><b>Figure 6.27. Icinga-Web main screen</b></p>
+<a name="id5687755"></a><p class="title"><b>Figure 6.27. Icinga-Web main screen</b></p>
<div class="figure-contents">
@@ -574,7 +574,7 @@
</ul></div>
<div class="figure">
-<a name="id1515932"></a><p class="title"><b>Figure 6.28. Icinga-Web status cronk</b></p>
+<a name="id5687864"></a><p class="title"><b>Figure 6.28. Icinga-Web status cronk</b></p>
<div class="figure-contents">
@@ -591,7 +591,7 @@
you can see the user currently logged in and edit its preferences or log out of Icinga Web.</p>
<div class="figure">
-<a name="id1515967"></a><p class="title"><b>Figure 6.29. Icinga-Web top menu</b></p>
+<a name="id5687899"></a><p class="title"><b>Figure 6.29. Icinga-Web top menu</b></p>
<div class="figure-contents">
@@ -612,7 +612,7 @@
<p>"Data" for getting status, historical and configuration data</p>
<div class="figure">
-<a name="id1516011"></a><p class="title"><b>Figure 6.30. Icinga-Web data cronks</b></p>
+<a name="id5687944"></a><p class="title"><b>Figure 6.30. Icinga-Web data cronks</b></p>
<div class="figure-contents">
@@ -627,7 +627,7 @@
<p>"Tactical Overview" keeps general charts and customized ones (custom variables)</p>
<div class="figure">
-<a name="id1516042"></a><p class="title"><b>Figure 6.31. Icinga-Web tactical overview cronks</b></p>
+<a name="id5687978"></a><p class="title"><b>Figure 6.31. Icinga-Web tactical overview cronks</b></p>
<div class="figure-contents">
@@ -642,7 +642,7 @@
<p>"Misc" contains several useful cronks, just as iframe for external websites or the 1,2,3 columns for main view</p>
<div class="figure">
-<a name="id1516075"></a><p class="title"><b>Figure 6.32. Icinga-Web misc cronks</b></p>
+<a name="id5688011"></a><p class="title"><b>Figure 6.32. Icinga-Web misc cronks</b></p>
<div class="figure-contents">
@@ -662,7 +662,7 @@
"PING").</p>
<div class="figure">
-<a name="id1516109"></a><p class="title"><b>Figure 6.33. Icinga-Web live search</b></p>
+<a name="id5688050"></a><p class="title"><b>Figure 6.33. Icinga-Web live search</b></p>
<div class="figure-contents">
@@ -678,7 +678,7 @@
<p>The log view has moved to an own cronk so it's not shown at the bottom anymore.</p>
<div class="figure">
-<a name="id1516139"></a><p class="title"><b>Figure 6.34. Icinga-Web log</b></p>
+<a name="id5688077"></a><p class="title"><b>Figure 6.34. Icinga-Web log</b></p>
<div class="figure-contents">
@@ -697,7 +697,7 @@
summarizes the possibilities in general (several Cronks can provide more, like sending commands).</p>
<div class="figure">
-<a name="id1516180"></a><p class="title"><b>Figure 6.35. Icinga-Web cronk bar</b></p>
+<a name="id5688097"></a><p class="title"><b>Figure 6.35. Icinga-Web cronk bar</b></p>
<div class="figure-contents">
@@ -722,7 +722,7 @@
</ul></div>
<div class="figure">
-<a name="id1516231"></a><p class="title"><b>Figure 6.36. Icinga-Web cronk bar</b></p>
+<a name="id5688171"></a><p class="title"><b>Figure 6.36. Icinga-Web cronk bar</b></p>
<div class="figure-contents">
@@ -749,7 +749,7 @@
<p>Host Commands</p>
<div class="figure">
-<a name="id1516295"></a><p class="title"><b>Figure 6.37. Icinga-Web host commands</b></p>
+<a name="id5688235"></a><p class="title"><b>Figure 6.37. Icinga-Web host commands</b></p>
<div class="figure-contents">
@@ -764,7 +764,7 @@
<p>Service Commands</p>
<div class="figure">
-<a name="id1516328"></a><p class="title"><b>Figure 6.38. Icinga-Web service commands</b></p>
+<a name="id5688272"></a><p class="title"><b>Figure 6.38. Icinga-Web service commands</b></p>
<div class="figure-contents">
@@ -784,7 +784,7 @@
repeating this procedure.</p>
<div class="figure">
-<a name="id1516365"></a><p class="title"><b>Figure 6.39. Icinga-Web filter restriction</b></p>
+<a name="id5688308"></a><p class="title"><b>Figure 6.39. Icinga-Web filter restriction</b></p>
<div class="figure-contents">
@@ -799,7 +799,7 @@
and add a value into the form. Proposals are shown while you are typing.</p>
<div class="figure">
-<a name="id1516394"></a><p class="title"><b>Figure 6.40. Icinga-Web filter condition</b></p>
+<a name="id5688337"></a><p class="title"><b>Figure 6.40. Icinga-Web filter condition</b></p>
<div class="figure-contents">
@@ -814,7 +814,7 @@
An active filter is marked red.</p>
<div class="figure">
-<a name="id1516420"></a><p class="title"><b>Figure 6.41. Icinga-Web filter active</b></p>
+<a name="id5688365"></a><p class="title"><b>Figure 6.41. Icinga-Web filter active</b></p>
<div class="figure-contents">
@@ -832,7 +832,7 @@
<p>Enter the administration panel by selecting "Admin" from the top menu, and select "Users", "Groups" or "Logs".</p>
<div class="figure">
-<a name="id1516463"></a><p class="title"><b>Figure 6.42. Icinga-Web top menu admin</b></p>
+<a name="id5688407"></a><p class="title"><b>Figure 6.42. Icinga-Web top menu admin</b></p>
<div class="figure-contents">
@@ -848,7 +848,7 @@
<p>You can add, remove and edit users.</p>
<div class="figure">
-<a name="id1516494"></a><p class="title"><b>Figure 6.43. Icinga-Web user admin</b></p>
+<a name="id5688439"></a><p class="title"><b>Figure 6.43. Icinga-Web user admin</b></p>
<div class="figure-contents">
@@ -878,7 +878,7 @@
</ul></div>
<div class="figure">
-<a name="id1516556"></a><p class="title"><b>Figure 6.44. Icinga-Web edit user</b></p>
+<a name="id5688500"></a><p class="title"><b>Figure 6.44. Icinga-Web edit user</b></p>
<div class="figure-contents">
@@ -894,7 +894,7 @@
<p>You can add, remove and edit groups. You can also modify group inheritance within the group tree on the right side.</p>
<div class="figure">
-<a name="id1516591"></a><p class="title"><b>Figure 6.45. Icinga-Web group admin</b></p>
+<a name="id5688537"></a><p class="title"><b>Figure 6.45. Icinga-Web group admin</b></p>
<div class="figure-contents">
@@ -918,7 +918,7 @@
</ul></div>
<div class="figure">
-<a name="id1516639"></a><p class="title"><b>Figure 6.46. Icinga-Web groups</b></p>
+<a name="id5688583"></a><p class="title"><b>Figure 6.46. Icinga-Web groups</b></p>
<div class="figure-contents">
@@ -935,7 +935,7 @@
picture:</p>
<div class="figure">
-<a name="id1516674"></a><p class="title"><b>Figure 6.47. Icinga-Web principals</b></p>
+<a name="id5688552"></a><p class="title"><b>Figure 6.47. Icinga-Web principals</b></p>
<div class="figure-contents">
@@ -951,7 +951,7 @@
<p>You can view several logs here, in order to catch up on possible errors.</p>
<div class="figure">
-<a name="id1516706"></a><p class="title"><b>Figure 6.48. Icinga-Web logs</b></p>
+<a name="id5688644"></a><p class="title"><b>Figure 6.48. Icinga-Web logs</b></p>
<div class="figure-contents">
@@ -967,7 +967,7 @@
<p>Several changes require clearing the cache. Instead of using the command line you can issue the command via the "Tasks" menu.</p>
<div class="figure">
-<a name="id1516742"></a><p class="title"><b>Figure 6.49. Icinga-Web Tasks</b></p>
+<a name="id5688683"></a><p class="title"><b>Figure 6.49. Icinga-Web Tasks</b></p>
<div class="figure-contents">
@@ -978,7 +978,7 @@
</div>
<br class="figure-break">
- <a class="indexterm" name="id1516765"></a>
+ <a class="indexterm" name="id5688709"></a>
</div>
</div>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/icinga-web-pnp.html
^
|
@@ -33,7 +33,7 @@
into the Icinga Classic UI please follow the PNP4Nagios <a class="link" href="http://docs.pnp4nagios.org/pnp-0.6/start" target="_top">documentation</a>.</p>
<div class="figure">
-<a name="id1516794"></a><p class="title"><b>Figure 6.50. PNP4Nagios integrated in Icinga-Web</b></p>
+<a name="id5688735"></a><p class="title"><b>Figure 6.50. PNP4Nagios integrated in Icinga-Web</b></p>
<div class="figure-contents">
@@ -270,7 +270,7 @@
<p>That's all, you're done!</p>
- <a class="indexterm" name="id1517060"></a>
+ <a class="indexterm" name="id5689000"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/icinga-web-scratch.html
^
|
@@ -697,11 +697,11 @@
</li>
</ol></div>
- <a class="indexterm" name="id1513460"></a>
+ <a class="indexterm" name="id5685380"></a>
- <a class="indexterm" name="id1513676"></a>
+ <a class="indexterm" name="id5685374"></a>
- <a class="indexterm" name="id1513686"></a>
+ <a class="indexterm" name="id5685593"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/icingastats.html
^
|
@@ -133,7 +133,7 @@
statistics can be found <a class="link" href="mrtggraphs.html" title="Graphing Performance Info With MRTG">here</a>.</p>
</td></tr>
</table></div>
- <a class="indexterm" name="id1532794"></a>
+ <a class="indexterm" name="id5704832"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/index.html
^
|
@@ -27,18 +27,18 @@
<div><h1 class="title">
<a name="Icinga"></a>Icinga Version 1.4 Documentation</h1></div>
<div><div class="legalnotice" title="Legal Notice">
-<a name="id1424294"></a>
+<a name="id5595752"></a>
<p>Copyright 2009-2011 Icinga Development Team.</p>
</div></div>
<div><div class="legalnotice" title="Legal Notice">
-<a name="id1424248"></a>
+<a name="id5595759"></a>
<p>Portions copyright © by Nagios/Icinga community members - see the THANKS file in the Icinga core sources for more
information..</p>
<p>Credits to Yoann LAMY for creating the Vautour Style we use for the Icinga Classic UI</p>
</div></div>
<div><div class="legalnotice" title="Legal Notice">
-<a name="id1424440"></a>
+<a name="id5595690"></a>
<p>Icinga is licensed under the terms of the GNU General Public License Version 2 as published by the Free Software
Foundation. This gives you legal permission to copy, distribute and/or modify Icinga under certain conditions. Read the
'LICENSE' file in the Icinga distribution or read the online version of the license for more details.</p>
@@ -47,7 +47,7 @@
MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE.</span>”</span></p>
</div></div>
<div><div class="legalnotice" title="Legal Notice">
-<a name="id1424460"></a>
+<a name="id5595728"></a>
<p>Nagios is licensed under the terms of the GNU General Public License Version 2 as published by the Free Software
Foundation. This gives you legal permission to copy, distribute and/or modify Nagios under certain conditions. Read the
'LICENSE' file in the Nagios distribution or read the online version of the license for more details.</p>
@@ -114,21 +114,21 @@
<dt><span class="section"><a href="configobject.html">Object Configuration Overview</a></span></dt>
<dt><span class="section"><a href="objectdefinitions.html">Object Definitions</a></span></dt>
<dd><dl>
-<dt><span class="section"><a href="objectdefinitions.html#id1455104">Host definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1455107">Hostgroup Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1457750">Service Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1458292">Servicegroup Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1460648">Contact Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1461202">Contactgroup Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1462392">Timeperiod Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1462797">Command Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1463614">Servicedependency Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1463663">Serviceescalation Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1465677">Hostdependency Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1465679">Hostescalation Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1466393">Hostextinfo Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1467283">Serviceextinfo Definition</a></span></dt>
-<dt><span class="section"><a href="objectdefinitions.html#id1468110">Module Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5626561">Host definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5626620">Hostgroup Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5629293">Service Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5629830">Servicegroup Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5632205">Contact Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5632767">Contactgroup Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5633966">Timeperiod Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5634364">Command Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5634832">Servicedependency Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5635240">Serviceescalation Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5636102">Hostdependency Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5637267">Hostescalation Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5637984">Hostextinfo Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5638880">Serviceextinfo Definition</a></span></dt>
+<dt><span class="section"><a href="objectdefinitions.html#id5639712">Module Definition</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="customobjectvars.html">Custom Object Variables</a></span></dt>
<dt><span class="section"><a href="configcgi.html">CGI Configuration File Options</a></span></dt>
@@ -234,32 +234,32 @@
<dd><dl>
<dt><span class="section"><a href="db_intro.html">Introduction</a></span></dt>
<dd><dl>
-<dt><span class="section"><a href="db_intro.html#id417725">Purpose</a></span></dt>
-<dt><span class="section"><a href="db_intro.html#id1546714">Design Overview</a></span></dt>
-<dt><span class="section"><a href="db_intro.html#id1546803">Instances</a></span></dt>
-<dt><span class="section"><a href="db_intro.html#id1546858">Installation</a></span></dt>
+<dt><span class="section"><a href="db_intro.html#id5718112">Purpose</a></span></dt>
+<dt><span class="section"><a href="db_intro.html#id5718816">Design Overview</a></span></dt>
+<dt><span class="section"><a href="db_intro.html#id5718901">Instances</a></span></dt>
+<dt><span class="section"><a href="db_intro.html#id5718976">Installation</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="db_components.html">Components</a></span></dt>
<dd><dl>
-<dt><span class="section"><a href="db_components.html#id1546899">Overview</a></span></dt>
-<dt><span class="section"><a href="db_components.html#id1546949">IDOMOD</a></span></dt>
-<dt><span class="section"><a href="db_components.html#id1547037">LOG2IDO</a></span></dt>
-<dt><span class="section"><a href="db_components.html#id1547078">FILE2SOCK</a></span></dt>
+<dt><span class="section"><a href="db_components.html#id5719002">Overview</a></span></dt>
+<dt><span class="section"><a href="db_components.html#id5719050">IDOMOD</a></span></dt>
+<dt><span class="section"><a href="db_components.html#id5719139">LOG2IDO</a></span></dt>
+<dt><span class="section"><a href="db_components.html#id5719082">FILE2SOCK</a></span></dt>
<dt><span class="section"><a href="db_components.html#IDO2DB-description">IDO2DB. IDO2DB</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="db_example-configs.html">Example Configurations</a></span></dt>
<dd><dl>
-<dt><span class="section"><a href="db_example-configs.html#id1547198">Single Server, Single Instance Setup</a></span></dt>
-<dt><span class="section"><a href="db_example-configs.html#id1547310">Single Server, Multiple Instance Setup</a></span></dt>
-<dt><span class="section"><a href="db_example-configs.html#id1547404">Single Server, Single Instance Log File Import</a></span></dt>
+<dt><span class="section"><a href="db_example-configs.html#id5719298">Single Server, Single Instance Setup</a></span></dt>
+<dt><span class="section"><a href="db_example-configs.html#id5719409">Single Server, Multiple Instance Setup</a></span></dt>
+<dt><span class="section"><a href="db_example-configs.html#id5719501">Single Server, Single Instance Log File Import</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="db_model.html">IDOUtils Database Model</a></span></dt>
<dd><dl>
-<dt><span class="section"><a href="db_model.html#id1547667">Central Tables</a></span></dt>
-<dt><span class="section"><a href="db_model.html#id1547669"> Debugging Tables</a></span></dt>
-<dt><span class="section"><a href="db_model.html#id1548114">Historical Tables</a></span></dt>
-<dt><span class="section"><a href="db_model.html#id1548621"> Current Status Tables</a></span></dt>
-<dt><span class="section"><a href="db_model.html#id1548633"> Configuration Tables</a></span></dt>
+<dt><span class="section"><a href="db_model.html#id5719694">Central Tables</a></span></dt>
+<dt><span class="section"><a href="db_model.html#id5720009"> Debugging Tables</a></span></dt>
+<dt><span class="section"><a href="db_model.html#id5720223">Historical Tables</a></span></dt>
+<dt><span class="section"><a href="db_model.html#id5727355"> Current Status Tables</a></span></dt>
+<dt><span class="section"><a href="db_model.html#id5720722"> Configuration Tables</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="db_changes.html">Database changes/alterations</a></span></dt>
</dl></dd>
@@ -269,153 +269,153 @@
<div class="list-of-figures">
<p><b>List of Figures</b></p>
<dl>
-<dt>3.1. <a href="configcgi.html#id1475708">Example of new header</a>
+<dt>3.1. <a href="configcgi.html#id5647362">Example of new header</a>
</dt>
-<dt>6.1. <a href="icinga-web-introduction.html#id1514835">Icinga-Web login screen</a>
+<dt>6.1. <a href="icinga-web-introduction.html#id5686758">Icinga-Web login screen</a>
</dt>
-<dt>6.2. <a href="icinga-web-introduction.html#id1514866">Icinga-Web overview</a>
+<dt>6.2. <a href="icinga-web-introduction.html#id5686782">Icinga-Web overview</a>
</dt>
-<dt>6.3. <a href="icinga-web-introduction.html#id1514901">Icinga-Web main screen</a>
+<dt>6.3. <a href="icinga-web-introduction.html#id5686832">Icinga-Web main screen</a>
</dt>
-<dt>6.4. <a href="icinga-web-introduction.html#id1514957">Icinga-Web status cronk</a>
+<dt>6.4. <a href="icinga-web-introduction.html#id5686889">Icinga-Web status cronk</a>
</dt>
-<dt>6.5. <a href="icinga-web-introduction.html#id1514994">Icinga-Web top menu</a>
+<dt>6.5. <a href="icinga-web-introduction.html#id5686909">Icinga-Web top menu</a>
</dt>
-<dt>6.6. <a href="icinga-web-introduction.html#id1515036">Icinga-Web data cronks</a>
+<dt>6.6. <a href="icinga-web-introduction.html#id5686969">Icinga-Web data cronks</a>
</dt>
-<dt>6.7. <a href="icinga-web-introduction.html#id1515054">Icinga-Web tactical overview cronks</a>
+<dt>6.7. <a href="icinga-web-introduction.html#id5687004">Icinga-Web tactical overview cronks</a>
</dt>
-<dt>6.8. <a href="icinga-web-introduction.html#id1515087">Icinga-Web misc cronks</a>
+<dt>6.8. <a href="icinga-web-introduction.html#id5687038">Icinga-Web misc cronks</a>
</dt>
-<dt>6.9. <a href="icinga-web-introduction.html#id1515137">Icinga-Web live search</a>
+<dt>6.9. <a href="icinga-web-introduction.html#id5687073">Icinga-Web live search</a>
</dt>
-<dt>6.10. <a href="icinga-web-introduction.html#id1515171">Icinga-Web log</a>
+<dt>6.10. <a href="icinga-web-introduction.html#id5687105">Icinga-Web log</a>
</dt>
-<dt>6.11. <a href="icinga-web-introduction.html#id1515215">Icinga-Web cronk bar</a>
+<dt>6.11. <a href="icinga-web-introduction.html#id5687123">Icinga-Web cronk bar</a>
</dt>
-<dt>6.12. <a href="icinga-web-introduction.html#id1515263">Icinga-Web cronk bar</a>
+<dt>6.12. <a href="icinga-web-introduction.html#id5687198">Icinga-Web cronk bar</a>
</dt>
-<dt>6.13. <a href="icinga-web-introduction.html#id1515328">Icinga-Web host commands</a>
+<dt>6.13. <a href="icinga-web-introduction.html#id5687261">Icinga-Web host commands</a>
</dt>
-<dt>6.14. <a href="icinga-web-introduction.html#id1515362">Icinga-Web service commands</a>
+<dt>6.14. <a href="icinga-web-introduction.html#id5687296">Icinga-Web service commands</a>
</dt>
-<dt>6.15. <a href="icinga-web-introduction.html#id1515399">Icinga-Web filter restriction</a>
+<dt>6.15. <a href="icinga-web-introduction.html#id5687333">Icinga-Web filter restriction</a>
</dt>
-<dt>6.16. <a href="icinga-web-introduction.html#id1515426">Icinga-Web filter condition</a>
+<dt>6.16. <a href="icinga-web-introduction.html#id5687361">Icinga-Web filter condition</a>
</dt>
-<dt>6.17. <a href="icinga-web-introduction.html#id1515454">Icinga-Web filter active</a>
+<dt>6.17. <a href="icinga-web-introduction.html#id5687348">Icinga-Web filter active</a>
</dt>
-<dt>6.18. <a href="icinga-web-introduction.html#id1515496">Icinga-Web top menu admin</a>
+<dt>6.18. <a href="icinga-web-introduction.html#id5687246">Icinga-Web top menu admin</a>
</dt>
-<dt>6.19. <a href="icinga-web-introduction.html#id1515529">Icinga-Web user admin</a>
+<dt>6.19. <a href="icinga-web-introduction.html#id5687465">Icinga-Web user admin</a>
</dt>
-<dt>6.20. <a href="icinga-web-introduction.html#id1515592">Icinga-Web edit user</a>
+<dt>6.20. <a href="icinga-web-introduction.html#id5687525">Icinga-Web edit user</a>
</dt>
-<dt>6.21. <a href="icinga-web-introduction.html#id1515626">Icinga-Web group admin</a>
+<dt>6.21. <a href="icinga-web-introduction.html#id5687562">Icinga-Web group admin</a>
</dt>
-<dt>6.22. <a href="icinga-web-introduction.html#id1515674">Icinga-Web groups</a>
+<dt>6.22. <a href="icinga-web-introduction.html#id5687606">Icinga-Web groups</a>
</dt>
-<dt>6.23. <a href="icinga-web-introduction.html#id1515709">Icinga-Web principals</a>
+<dt>6.23. <a href="icinga-web-introduction.html#id5687644">Icinga-Web principals</a>
</dt>
-<dt>6.24. <a href="icinga-web-introduction.html#id1515742">Icinga-Web logs</a>
+<dt>6.24. <a href="icinga-web-introduction.html#id5687674">Icinga-Web logs</a>
</dt>
-<dt>6.25. <a href="icinga-web-introduction.html#id1515806">Icinga-Web login screen</a>
+<dt>6.25. <a href="icinga-web-introduction.html#id5687732">Icinga-Web login screen</a>
</dt>
-<dt>6.26. <a href="icinga-web-introduction.html#id1515836">Icinga-Web overview</a>
+<dt>6.26. <a href="icinga-web-introduction.html#id5687758">Icinga-Web overview</a>
</dt>
-<dt>6.27. <a href="icinga-web-introduction.html#id1515871">Icinga-Web main screen</a>
+<dt>6.27. <a href="icinga-web-introduction.html#id5687755">Icinga-Web main screen</a>
</dt>
-<dt>6.28. <a href="icinga-web-introduction.html#id1515932">Icinga-Web status cronk</a>
+<dt>6.28. <a href="icinga-web-introduction.html#id5687864">Icinga-Web status cronk</a>
</dt>
-<dt>6.29. <a href="icinga-web-introduction.html#id1515967">Icinga-Web top menu</a>
+<dt>6.29. <a href="icinga-web-introduction.html#id5687899">Icinga-Web top menu</a>
</dt>
-<dt>6.30. <a href="icinga-web-introduction.html#id1516011">Icinga-Web data cronks</a>
+<dt>6.30. <a href="icinga-web-introduction.html#id5687944">Icinga-Web data cronks</a>
</dt>
-<dt>6.31. <a href="icinga-web-introduction.html#id1516042">Icinga-Web tactical overview cronks</a>
+<dt>6.31. <a href="icinga-web-introduction.html#id5687978">Icinga-Web tactical overview cronks</a>
</dt>
-<dt>6.32. <a href="icinga-web-introduction.html#id1516075">Icinga-Web misc cronks</a>
+<dt>6.32. <a href="icinga-web-introduction.html#id5688011">Icinga-Web misc cronks</a>
</dt>
-<dt>6.33. <a href="icinga-web-introduction.html#id1516109">Icinga-Web live search</a>
+<dt>6.33. <a href="icinga-web-introduction.html#id5688050">Icinga-Web live search</a>
</dt>
-<dt>6.34. <a href="icinga-web-introduction.html#id1516139">Icinga-Web log</a>
+<dt>6.34. <a href="icinga-web-introduction.html#id5688077">Icinga-Web log</a>
</dt>
-<dt>6.35. <a href="icinga-web-introduction.html#id1516180">Icinga-Web cronk bar</a>
+<dt>6.35. <a href="icinga-web-introduction.html#id5688097">Icinga-Web cronk bar</a>
</dt>
-<dt>6.36. <a href="icinga-web-introduction.html#id1516231">Icinga-Web cronk bar</a>
+<dt>6.36. <a href="icinga-web-introduction.html#id5688171">Icinga-Web cronk bar</a>
</dt>
-<dt>6.37. <a href="icinga-web-introduction.html#id1516295">Icinga-Web host commands</a>
+<dt>6.37. <a href="icinga-web-introduction.html#id5688235">Icinga-Web host commands</a>
</dt>
-<dt>6.38. <a href="icinga-web-introduction.html#id1516328">Icinga-Web service commands</a>
+<dt>6.38. <a href="icinga-web-introduction.html#id5688272">Icinga-Web service commands</a>
</dt>
-<dt>6.39. <a href="icinga-web-introduction.html#id1516365">Icinga-Web filter restriction</a>
+<dt>6.39. <a href="icinga-web-introduction.html#id5688308">Icinga-Web filter restriction</a>
</dt>
-<dt>6.40. <a href="icinga-web-introduction.html#id1516394">Icinga-Web filter condition</a>
+<dt>6.40. <a href="icinga-web-introduction.html#id5688337">Icinga-Web filter condition</a>
</dt>
-<dt>6.41. <a href="icinga-web-introduction.html#id1516420">Icinga-Web filter active</a>
+<dt>6.41. <a href="icinga-web-introduction.html#id5688365">Icinga-Web filter active</a>
</dt>
-<dt>6.42. <a href="icinga-web-introduction.html#id1516463">Icinga-Web top menu admin</a>
+<dt>6.42. <a href="icinga-web-introduction.html#id5688407">Icinga-Web top menu admin</a>
</dt>
-<dt>6.43. <a href="icinga-web-introduction.html#id1516494">Icinga-Web user admin</a>
+<dt>6.43. <a href="icinga-web-introduction.html#id5688439">Icinga-Web user admin</a>
</dt>
-<dt>6.44. <a href="icinga-web-introduction.html#id1516556">Icinga-Web edit user</a>
+<dt>6.44. <a href="icinga-web-introduction.html#id5688500">Icinga-Web edit user</a>
</dt>
-<dt>6.45. <a href="icinga-web-introduction.html#id1516591">Icinga-Web group admin</a>
+<dt>6.45. <a href="icinga-web-introduction.html#id5688537">Icinga-Web group admin</a>
</dt>
-<dt>6.46. <a href="icinga-web-introduction.html#id1516639">Icinga-Web groups</a>
+<dt>6.46. <a href="icinga-web-introduction.html#id5688583">Icinga-Web groups</a>
</dt>
-<dt>6.47. <a href="icinga-web-introduction.html#id1516674">Icinga-Web principals</a>
+<dt>6.47. <a href="icinga-web-introduction.html#id5688552">Icinga-Web principals</a>
</dt>
-<dt>6.48. <a href="icinga-web-introduction.html#id1516706">Icinga-Web logs</a>
+<dt>6.48. <a href="icinga-web-introduction.html#id5688644">Icinga-Web logs</a>
</dt>
-<dt>6.49. <a href="icinga-web-introduction.html#id1516742">Icinga-Web Tasks</a>
+<dt>6.49. <a href="icinga-web-introduction.html#id5688683">Icinga-Web Tasks</a>
</dt>
-<dt>6.50. <a href="icinga-web-pnp.html#id1516794">PNP4Nagios integrated in Icinga-Web</a>
+<dt>6.50. <a href="icinga-web-pnp.html#id5688735">PNP4Nagios integrated in Icinga-Web</a>
</dt>
-<dt>9.1. <a href="reporting.html#id1535178">Icinga-Reporting in Icinga-Web</a>
+<dt>9.1. <a href="reporting.html#id5707235">Icinga-Reporting in Icinga-Web</a>
</dt>
-<dt>9.2. <a href="reporting.html#id1535192">Icinga-Reporting TOP10 in Icinga-Web</a>
+<dt>9.2. <a href="reporting.html#id5707237">Icinga-Reporting TOP10 in Icinga-Web</a>
</dt>
-<dt>10.1. <a href="nrpe.html#id1536112">NRPE</a>
+<dt>10.1. <a href="nrpe.html#id5708149">NRPE</a>
</dt>
-<dt>10.2. <a href="nrpe.html#id1536151">NRPE remote</a>
+<dt>10.2. <a href="nrpe.html#id5708206">NRPE remote</a>
</dt>
-<dt>10.3. <a href="nsca.html#id1537431">NSCA</a>
+<dt>10.3. <a href="nsca.html#id5709490">NSCA</a>
</dt>
-<dt>12.1. <a href="db_intro.html#id1546749">Multiple instances</a>
+<dt>12.1. <a href="db_intro.html#id5718858">Multiple instances</a>
</dt>
-<dt>12.2. <a href="db_intro.html#id1546783">Future development: One Instance, multiple databases</a>
+<dt>12.2. <a href="db_intro.html#id5718886">Future development: One Instance, multiple databases</a>
</dt>
-<dt>12.3. <a href="db_intro.html#id1546821">Instance names based on geographical locations</a>
+<dt>12.3. <a href="db_intro.html#id5718921">Instance names based on geographical locations</a>
</dt>
-<dt>12.4. <a href="db_intro.html#id1546844">Instance names based on their purpose</a>
+<dt>12.4. <a href="db_intro.html#id5718948">Instance names based on their purpose</a>
</dt>
-<dt>12.5. <a href="db_components.html#id1546966">Loaded IDOMOD Event broker Module</a>
+<dt>12.5. <a href="db_components.html#id5719067">Loaded IDOMOD Event broker Module</a>
</dt>
-<dt>12.6. <a href="db_components.html#id1547000">IDOMOD Capabilities</a>
+<dt>12.6. <a href="db_components.html#id5719105">IDOMOD Capabilities</a>
</dt>
-<dt>12.7. <a href="db_components.html#id1547057">LOG2IDO Utility</a>
+<dt>12.7. <a href="db_components.html#id5719152">LOG2IDO Utility</a>
</dt>
-<dt>12.8. <a href="db_components.html#id1547090">FILE2SOCK Utility</a>
+<dt>12.8. <a href="db_components.html#id5719192">FILE2SOCK Utility</a>
</dt>
-<dt>12.9. <a href="db_components.html#id1547141">IDO2DB Daemon</a>
+<dt>12.9. <a href="db_components.html#id5719240">IDO2DB Daemon</a>
</dt>
-<dt>12.10. <a href="db_components.html#id1547168">IDO2DB with multiple Clients</a>
+<dt>12.10. <a href="db_components.html#id5719254">IDO2DB with multiple Clients</a>
</dt>
-<dt>12.11. <a href="db_example-configs.html#id1547217">Single Server, Single Instance Setup</a>
+<dt>12.11. <a href="db_example-configs.html#id5719317">Single Server, Single Instance Setup</a>
</dt>
-<dt>12.12. <a href="db_example-configs.html#id1547329">Single Server, Multiple Instance Setup</a>
+<dt>12.12. <a href="db_example-configs.html#id5719426">Single Server, Multiple Instance Setup</a>
</dt>
-<dt>12.13. <a href="db_example-configs.html#id1547442">Single Server, Single Instance Log File Import</a>
+<dt>12.13. <a href="db_example-configs.html#id5719538">Single Server, Single Instance Log File Import</a>
</dt>
-<dt>12.14. <a href="db_model.html#id1547718">Relationship of Central Tables</a>
+<dt>12.14. <a href="db_model.html#id5719838">Relationship of Central Tables</a>
</dt>
-<dt>12.15. <a href="db_model.html#id1548153">Relationship of Debugging Tables</a>
+<dt>12.15. <a href="db_model.html#id5720263">Relationship of Debugging Tables</a>
</dt>
-<dt>12.16. <a href="db_model.html#id1548850">Relationship of Historical Tables</a>
+<dt>12.16. <a href="db_model.html#id5720964">Relationship of Historical Tables</a>
</dt>
-<dt>12.17. <a href="db_model.html#id1555421">Relationship of Current Status Tables</a>
+<dt>12.17. <a href="db_model.html#id5727527">Relationship of Current Status Tables</a>
</dt>
-<dt>12.18. <a href="db_model.html#id1559932">Relationship of Configuration Tables</a>
+<dt>12.18. <a href="db_model.html#id5732348">Relationship of Configuration Tables</a>
</dt>
</dl>
</div>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/int-mklivestatus.html
^
|
@@ -74,8 +74,8 @@
</li>
</ol></div>
- <a class="indexterm" name="id1534653"></a>
- <a class="indexterm" name="id1534663"></a>
+ <a class="indexterm" name="id5706705"></a>
+ <a class="indexterm" name="id5706715"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/int-snmptrap.html
^
|
@@ -48,7 +48,7 @@
combined with Net-SNMP, SNMPTT provides an enhanced trap handling system that can be integrated with Icinga.</p>
<p>Yep, that's all.</p>
- <a class="indexterm" name="id1534218"></a>
+ <a class="indexterm" name="id5706271"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/int-tcpwrappers.html
^
|
@@ -137,7 +137,7 @@
the alert will look something like the following:</p>
<pre class="screen">Denied sshd2-sdn-ar-002mnminnP321.dialsprint.net </pre>
- <a class="indexterm" name="id1534537"></a>
+ <a class="indexterm" name="id5706591"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/integration.html
^
|
@@ -100,7 +100,7 @@
</li>
</ul></div>
- <a class="indexterm" name="id1534157"></a>
+ <a class="indexterm" name="id5706201"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/ix01.html
^
|
@@ -24,7 +24,7 @@
</div>
<div class="index" title="Index">
<div class="titlepage"><div><div><h2 class="title">
-<a name="id1567642"></a>Index</h2></div></div></div>
+<a name="id5739756"></a>Index</h2></div></div></div>
<div class="index">
<div class="indexdiv">
<h3>A</h3>
@@ -1725,6 +1725,9 @@
<dt>show_tac_header=</dt>
<dd><dl><dt>Show header with tactical information, <a class="indexterm" href="configcgi.html#configcgi-show_tac_header">CGI Configuration File Options</a>
</dt></dl></dd>
+<dt>show_tac_header_pending=</dt>
+<dd><dl><dt>Show header including pending counts, <a class="indexterm" href="configcgi.html#configcgi-show_tac_header_pending">CGI Configuration File Options</a>
+</dt></dl></dd>
<dt>sleep_time=</dt>
<dd><dl><dt>Inter-Check Sleep Time, <a class="indexterm" href="configmain.html#configmain-sleep_time">Main Configuration File Options</a>
</dt></dl></dd>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/largeinstalltweaks.html
^
|
@@ -63,7 +63,7 @@
installation.</p>
</li>
</ol></div>
- <a class="indexterm" name="id1532601"></a>
+ <a class="indexterm" name="id5704645"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/macrolist.html
^
|
@@ -3168,312 +3168,312 @@
<p><a name="macrolist-note10"></a><span class="bold"><strong><sup> 10</sup></strong></span> Summary macros are not
available as environment variables if the <a class="link" href="configmain.html#configmain-use_large_installation_tweaks">use_large_installation_tweaks</a> option is enabled, as they are quite
CPU-intensive to calculate.</p>
- <a class="indexterm" name="id1494416"></a>
- <a class="indexterm" name="id1494426"></a>
- <a class="indexterm" name="id1494435"></a>
- <a class="indexterm" name="id1494444"></a>
- <a class="indexterm" name="id1494454"></a>
- <a class="indexterm" name="id1494463"></a>
- <a class="indexterm" name="id1494474"></a>
- <a class="indexterm" name="id1494482"></a>
- <a class="indexterm" name="id1494493"></a>
- <a class="indexterm" name="id1494502"></a>
- <a class="indexterm" name="id1494512"></a>
- <a class="indexterm" name="id1494521"></a>
- <a class="indexterm" name="id1494531"></a>
- <a class="indexterm" name="id1494541"></a>
- <a class="indexterm" name="id1494549"></a>
- <a class="indexterm" name="id1494560"></a>
- <a class="indexterm" name="id1494568"></a>
- <a class="indexterm" name="id1494579"></a>
- <a class="indexterm" name="id1494587"></a>
- <a class="indexterm" name="id1494597"></a>
- <a class="indexterm" name="id1494606"></a>
- <a class="indexterm" name="id1494616"></a>
- <a class="indexterm" name="id1494625"></a>
- <a class="indexterm" name="id1494633"></a>
- <a class="indexterm" name="id1494642"></a>
- <a class="indexterm" name="id1494650"></a>
- <a class="indexterm" name="id1494658"></a>
- <a class="indexterm" name="id1494669"></a>
- <a class="indexterm" name="id1494676"></a>
- <a class="indexterm" name="id1494687"></a>
- <a class="indexterm" name="id1494696"></a>
- <a class="indexterm" name="id1494707"></a>
- <a class="indexterm" name="id1494716"></a>
- <a class="indexterm" name="id1494726"></a>
- <a class="indexterm" name="id1494734"></a>
- <a class="indexterm" name="id1494744"></a>
- <a class="indexterm" name="id1494755"></a>
- <a class="indexterm" name="id1494764"></a>
- <a class="indexterm" name="id1494772"></a>
- <a class="indexterm" name="id1494783"></a>
- <a class="indexterm" name="id1494792"></a>
- <a class="indexterm" name="id1494802"></a>
- <a class="indexterm" name="id1494811"></a>
- <a class="indexterm" name="id1494821"></a>
- <a class="indexterm" name="id1494827"></a>
- <a class="indexterm" name="id1494839"></a>
- <a class="indexterm" name="id1494849"></a>
- <a class="indexterm" name="id1494859"></a>
- <a class="indexterm" name="id1494869"></a>
- <a class="indexterm" name="id1494878"></a>
- <a class="indexterm" name="id1494887"></a>
- <a class="indexterm" name="id1494895"></a>
- <a class="indexterm" name="id1494904"></a>
- <a class="indexterm" name="id1494914"></a>
- <a class="indexterm" name="id1494924"></a>
- <a class="indexterm" name="id1494936"></a>
- <a class="indexterm" name="id1494943"></a>
- <a class="indexterm" name="id1494953"></a>
- <a class="indexterm" name="id1494962"></a>
- <a class="indexterm" name="id1494972"></a>
- <a class="indexterm" name="id1494982"></a>
- <a class="indexterm" name="id1494992"></a>
- <a class="indexterm" name="id1495001"></a>
- <a class="indexterm" name="id1495011"></a>
- <a class="indexterm" name="id1495021"></a>
- <a class="indexterm" name="id1495031"></a>
- <a class="indexterm" name="id1495040"></a>
- <a class="indexterm" name="id1495050"></a>
- <a class="indexterm" name="id1495060"></a>
- <a class="indexterm" name="id1495070"></a>
- <a class="indexterm" name="id1495079"></a>
- <a class="indexterm" name="id1495089"></a>
- <a class="indexterm" name="id1495099"></a>
- <a class="indexterm" name="id1495109"></a>
- <a class="indexterm" name="id1495118"></a>
- <a class="indexterm" name="id1495128"></a>
- <a class="indexterm" name="id1495140"></a>
- <a class="indexterm" name="id1495148"></a>
- <a class="indexterm" name="id1495159"></a>
- <a class="indexterm" name="id1495168"></a>
- <a class="indexterm" name="id1495178"></a>
- <a class="indexterm" name="id1495186"></a>
- <a class="indexterm" name="id1495196"></a>
- <a class="indexterm" name="id1495206"></a>
- <a class="indexterm" name="id1495218"></a>
- <a class="indexterm" name="id1495227"></a>
- <a class="indexterm" name="id1495237"></a>
- <a class="indexterm" name="id1495246"></a>
- <a class="indexterm" name="id1495256"></a>
- <a class="indexterm" name="id1495265"></a>
- <a class="indexterm" name="id1495276"></a>
- <a class="indexterm" name="id1495284"></a>
- <a class="indexterm" name="id1495295"></a>
- <a class="indexterm" name="id1495303"></a>
- <a class="indexterm" name="id1495314"></a>
- <a class="indexterm" name="id1495322"></a>
- <a class="indexterm" name="id1495333"></a>
- <a class="indexterm" name="id1495342"></a>
- <a class="indexterm" name="id1495352"></a>
- <a class="indexterm" name="id1495361"></a>
- <a class="indexterm" name="id1495372"></a>
- <a class="indexterm" name="id1495380"></a>
- <a class="indexterm" name="id1495390"></a>
- <a class="indexterm" name="id1495400"></a>
- <a class="indexterm" name="id1495408"></a>
- <a class="indexterm" name="id1495419"></a>
- <a class="indexterm" name="id1495427"></a>
- <a class="indexterm" name="id1495438"></a>
- <a class="indexterm" name="id1495447"></a>
- <a class="indexterm" name="id1495458"></a>
- <a class="indexterm" name="id1495466"></a>
- <a class="indexterm" name="id1495477"></a>
- <a class="indexterm" name="id1495487"></a>
- <a class="indexterm" name="id1495496"></a>
- <a class="indexterm" name="id1495506"></a>
- <a class="indexterm" name="id1495515"></a>
- <a class="indexterm" name="id1495524"></a>
- <a class="indexterm" name="id1495535"></a>
- <a class="indexterm" name="id1495545"></a>
- <a class="indexterm" name="id1495553"></a>
- <a class="indexterm" name="id1495563"></a>
- <a class="indexterm" name="id1495574"></a>
- <a class="indexterm" name="id1495584"></a>
- <a class="indexterm" name="id1495593"></a>
- <a class="indexterm" name="id1495602"></a>
- <a class="indexterm" name="id1495612"></a>
- <a class="indexterm" name="id1495622"></a>
- <a class="indexterm" name="id1495632"></a>
- <a class="indexterm" name="id1495642"></a>
- <a class="indexterm" name="id1495650"></a>
- <a class="indexterm" name="id1495660"></a>
- <a class="indexterm" name="id1495671"></a>
- <a class="indexterm" name="id1495680"></a>
- <a class="indexterm" name="id1495690"></a>
- <a class="indexterm" name="id1495699"></a>
- <a class="indexterm" name="id1495710"></a>
- <a class="indexterm" name="id1495718"></a>
- <a class="indexterm" name="id1495728"></a>
- <a class="indexterm" name="id1495738"></a>
- <a class="indexterm" name="id1495746"></a>
- <a class="indexterm" name="id1495755"></a>
- <a class="indexterm" name="id1495765"></a>
- <a class="indexterm" name="id1495773"></a>
- <a class="indexterm" name="id1495786"></a>
- <a class="indexterm" name="id1495792"></a>
- <a class="indexterm" name="id1495805"></a>
- <a class="indexterm" name="id1495812"></a>
- <a class="indexterm" name="id1495821"></a>
- <a class="indexterm" name="id1495831"></a>
- <a class="indexterm" name="id1495840"></a>
- <a class="indexterm" name="id1495850"></a>
- <a class="indexterm" name="id1495863"></a>
- <a class="indexterm" name="id1495870"></a>
- <a class="indexterm" name="id1495882"></a>
- <a class="indexterm" name="id1495889"></a>
- <a class="indexterm" name="id1495901"></a>
- <a class="indexterm" name="id1495907"></a>
- <a class="indexterm" name="id1495917"></a>
- <a class="indexterm" name="id1495927"></a>
- <a class="indexterm" name="id1495936"></a>
- <a class="indexterm" name="id1495946"></a>
- <a class="indexterm" name="id1495955"></a>
- <a class="indexterm" name="id1495966"></a>
- <a class="indexterm" name="id1495978"></a>
- <a class="indexterm" name="id1495985"></a>
- <a class="indexterm" name="id1495994"></a>
- <a class="indexterm" name="id1496004"></a>
- <a class="indexterm" name="id1496014"></a>
- <a class="indexterm" name="id1496026"></a>
- <a class="indexterm" name="id1496032"></a>
- <a class="indexterm" name="id1496042"></a>
- <a class="indexterm" name="id1496052"></a>
- <a class="indexterm" name="id1496064"></a>
- <a class="indexterm" name="id1496071"></a>
- <a class="indexterm" name="id1496081"></a>
- <a class="indexterm" name="id1496091"></a>
- <a class="indexterm" name="id1496103"></a>
- <a class="indexterm" name="id1496110"></a>
- <a class="indexterm" name="id1496119"></a>
- <a class="indexterm" name="id1496129"></a>
- <a class="indexterm" name="id1496141"></a>
- <a class="indexterm" name="id1496148"></a>
- <a class="indexterm" name="id1496158"></a>
- <a class="indexterm" name="id1496167"></a>
- <a class="indexterm" name="id1496177"></a>
- <a class="indexterm" name="id1496190"></a>
- <a class="indexterm" name="id1496196"></a>
- <a class="indexterm" name="id1496206"></a>
- <a class="indexterm" name="id1496216"></a>
- <a class="indexterm" name="id1496225"></a>
- <a class="indexterm" name="id1496235"></a>
- <a class="indexterm" name="id1496248"></a>
- <a class="indexterm" name="id1496254"></a>
- <a class="indexterm" name="id1496264"></a>
- <a class="indexterm" name="id1496274"></a>
- <a class="indexterm" name="id1496286"></a>
- <a class="indexterm" name="id1496296"></a>
- <a class="indexterm" name="id1496306"></a>
- <a class="indexterm" name="id1496315"></a>
- <a class="indexterm" name="id1496325"></a>
- <a class="indexterm" name="id1496333"></a>
- <a class="indexterm" name="id1496344"></a>
- <a class="indexterm" name="id1496353"></a>
- <a class="indexterm" name="id1496363"></a>
- <a class="indexterm" name="id1496372"></a>
- <a class="indexterm" name="id1496382"></a>
- <a class="indexterm" name="id1496391"></a>
- <a class="indexterm" name="id1496401"></a>
- <a class="indexterm" name="id1496410"></a>
- <a class="indexterm" name="id1496421"></a>
- <a class="indexterm" name="id1496429"></a>
- <a class="indexterm" name="id1496440"></a>
- <a class="indexterm" name="id1496448"></a>
- <a class="indexterm" name="id1496459"></a>
- <a class="indexterm" name="id1496468"></a>
- <a class="indexterm" name="id1496478"></a>
- <a class="indexterm" name="id1496487"></a>
- <a class="indexterm" name="id1496497"></a>
- <a class="indexterm" name="id1496506"></a>
- <a class="indexterm" name="id1496517"></a>
- <a class="indexterm" name="id1496525"></a>
- <a class="indexterm" name="id1496536"></a>
- <a class="indexterm" name="id1496544"></a>
- <a class="indexterm" name="id1496555"></a>
- <a class="indexterm" name="id1496564"></a>
- <a class="indexterm" name="id1496574"></a>
- <a class="indexterm" name="id1496583"></a>
- <a class="indexterm" name="id1496593"></a>
- <a class="indexterm" name="id1496602"></a>
- <a class="indexterm" name="id1496613"></a>
- <a class="indexterm" name="id1496621"></a>
- <a class="indexterm" name="id1496632"></a>
- <a class="indexterm" name="id1496640"></a>
- <a class="indexterm" name="id1496651"></a>
- <a class="indexterm" name="id1496660"></a>
- <a class="indexterm" name="id1496670"></a>
- <a class="indexterm" name="id1496679"></a>
- <a class="indexterm" name="id1496689"></a>
- <a class="indexterm" name="id1496698"></a>
- <a class="indexterm" name="id1496708"></a>
- <a class="indexterm" name="id1496717"></a>
- <a class="indexterm" name="id1496728"></a>
- <a class="indexterm" name="id1496736"></a>
- <a class="indexterm" name="id1496747"></a>
- <a class="indexterm" name="id1496755"></a>
- <a class="indexterm" name="id1496766"></a>
- <a class="indexterm" name="id1496775"></a>
- <a class="indexterm" name="id1496785"></a>
- <a class="indexterm" name="id1496794"></a>
- <a class="indexterm" name="id1496804"></a>
- <a class="indexterm" name="id1496813"></a>
- <a class="indexterm" name="id1496823"></a>
- <a class="indexterm" name="id1496832"></a>
- <a class="indexterm" name="id1496841"></a>
- <a class="indexterm" name="id1496852"></a>
- <a class="indexterm" name="id1496860"></a>
- <a class="indexterm" name="id1496871"></a>
- <a class="indexterm" name="id1496879"></a>
- <a class="indexterm" name="id1496888"></a>
- <a class="indexterm" name="id1496900"></a>
- <a class="indexterm" name="id1496908"></a>
- <a class="indexterm" name="id1496919"></a>
- <a class="indexterm" name="id1496929"></a>
- <a class="indexterm" name="id1496937"></a>
- <a class="indexterm" name="id1496947"></a>
- <a class="indexterm" name="id1496957"></a>
- <a class="indexterm" name="id1496967"></a>
- <a class="indexterm" name="id1496976"></a>
- <a class="indexterm" name="id1496986"></a>
- <a class="indexterm" name="id1496996"></a>
- <a class="indexterm" name="id1497007"></a>
- <a class="indexterm" name="id1497017"></a>
- <a class="indexterm" name="id1497025"></a>
- <a class="indexterm" name="id1497035"></a>
- <a class="indexterm" name="id1497046"></a>
- <a class="indexterm" name="id1497056"></a>
- <a class="indexterm" name="id1497065"></a>
- <a class="indexterm" name="id1497074"></a>
- <a class="indexterm" name="id1497085"></a>
- <a class="indexterm" name="id1497094"></a>
- <a class="indexterm" name="id1497103"></a>
- <a class="indexterm" name="id1497112"></a>
- <a class="indexterm" name="id1497123"></a>
- <a class="indexterm" name="id1497130"></a>
- <a class="indexterm" name="id1497140"></a>
- <a class="indexterm" name="id1497149"></a>
- <a class="indexterm" name="id1497159"></a>
- <a class="indexterm" name="id1497168"></a>
- <a class="indexterm" name="id1497179"></a>
- <a class="indexterm" name="id1497188"></a>
- <a class="indexterm" name="id1497198"></a>
- <a class="indexterm" name="id1497207"></a>
- <a class="indexterm" name="id1497218"></a>
- <a class="indexterm" name="id1497227"></a>
- <a class="indexterm" name="id1497236"></a>
- <a class="indexterm" name="id1497246"></a>
- <a class="indexterm" name="id1497256"></a>
- <a class="indexterm" name="id1497265"></a>
- <a class="indexterm" name="id1497275"></a>
- <a class="indexterm" name="id1497285"></a>
- <a class="indexterm" name="id1497294"></a>
- <a class="indexterm" name="id1497304"></a>
- <a class="indexterm" name="id1497314"></a>
- <a class="indexterm" name="id1497323"></a>
- <a class="indexterm" name="id1497333"></a>
- <a class="indexterm" name="id1497343"></a>
+ <a class="indexterm" name="id5666309"></a>
+ <a class="indexterm" name="id5666320"></a>
+ <a class="indexterm" name="id5666327"></a>
+ <a class="indexterm" name="id5666336"></a>
+ <a class="indexterm" name="id5666346"></a>
+ <a class="indexterm" name="id5666355"></a>
+ <a class="indexterm" name="id5666365"></a>
+ <a class="indexterm" name="id5666372"></a>
+ <a class="indexterm" name="id5666382"></a>
+ <a class="indexterm" name="id5666389"></a>
+ <a class="indexterm" name="id5666398"></a>
+ <a class="indexterm" name="id5666409"></a>
+ <a class="indexterm" name="id5666418"></a>
+ <a class="indexterm" name="id5666429"></a>
+ <a class="indexterm" name="id5666438"></a>
+ <a class="indexterm" name="id5666447"></a>
+ <a class="indexterm" name="id5666458"></a>
+ <a class="indexterm" name="id5666467"></a>
+ <a class="indexterm" name="id5666476"></a>
+ <a class="indexterm" name="id5666486"></a>
+ <a class="indexterm" name="id5666496"></a>
+ <a class="indexterm" name="id5666477"></a>
+ <a class="indexterm" name="id5666515"></a>
+ <a class="indexterm" name="id5666522"></a>
+ <a class="indexterm" name="id5666531"></a>
+ <a class="indexterm" name="id5666542"></a>
+ <a class="indexterm" name="id5666533"></a>
+ <a class="indexterm" name="id5666561"></a>
+ <a class="indexterm" name="id5666568"></a>
+ <a class="indexterm" name="id5666579"></a>
+ <a class="indexterm" name="id5666569"></a>
+ <a class="indexterm" name="id5666597"></a>
+ <a class="indexterm" name="id5666605"></a>
+ <a class="indexterm" name="id5666615"></a>
+ <a class="indexterm" name="id5666622"></a>
+ <a class="indexterm" name="id5666633"></a>
+ <a class="indexterm" name="id5666643"></a>
+ <a class="indexterm" name="id5666634"></a>
+ <a class="indexterm" name="id5666662"></a>
+ <a class="indexterm" name="id5666672"></a>
+ <a class="indexterm" name="id5666663"></a>
+ <a class="indexterm" name="id5666692"></a>
+ <a class="indexterm" name="id5666701"></a>
+ <a class="indexterm" name="id5666709"></a>
+ <a class="indexterm" name="id5666719"></a>
+ <a class="indexterm" name="id5666730"></a>
+ <a class="indexterm" name="id5666721"></a>
+ <a class="indexterm" name="id5666747"></a>
+ <a class="indexterm" name="id5666754"></a>
+ <a class="indexterm" name="id5666766"></a>
+ <a class="indexterm" name="id5666775"></a>
+ <a class="indexterm" name="id5666785"></a>
+ <a class="indexterm" name="id5666795"></a>
+ <a class="indexterm" name="id5666804"></a>
+ <a class="indexterm" name="id5666815"></a>
+ <a class="indexterm" name="id5666825"></a>
+ <a class="indexterm" name="id5666835"></a>
+ <a class="indexterm" name="id5666844"></a>
+ <a class="indexterm" name="id5666852"></a>
+ <a class="indexterm" name="id5666864"></a>
+ <a class="indexterm" name="id5666855"></a>
+ <a class="indexterm" name="id5666883"></a>
+ <a class="indexterm" name="id5666893"></a>
+ <a class="indexterm" name="id5666903"></a>
+ <a class="indexterm" name="id5666913"></a>
+ <a class="indexterm" name="id5666904"></a>
+ <a class="indexterm" name="id5666915"></a>
+ <a class="indexterm" name="id5666940"></a>
+ <a class="indexterm" name="id5666951"></a>
+ <a class="indexterm" name="id5666932"></a>
+ <a class="indexterm" name="id5666970"></a>
+ <a class="indexterm" name="id5666977"></a>
+ <a class="indexterm" name="id5666988"></a>
+ <a class="indexterm" name="id5666998"></a>
+ <a class="indexterm" name="id5667008"></a>
+ <a class="indexterm" name="id5666979"></a>
+ <a class="indexterm" name="id5667026"></a>
+ <a class="indexterm" name="id5667037"></a>
+ <a class="indexterm" name="id5667046"></a>
+ <a class="indexterm" name="id5667039"></a>
+ <a class="indexterm" name="id5667065"></a>
+ <a class="indexterm" name="id5667076"></a>
+ <a class="indexterm" name="id5667048"></a>
+ <a class="indexterm" name="id5667094"></a>
+ <a class="indexterm" name="id5667105"></a>
+ <a class="indexterm" name="id5667096"></a>
+ <a class="indexterm" name="id5667123"></a>
+ <a class="indexterm" name="id5667134"></a>
+ <a class="indexterm" name="id5667142"></a>
+ <a class="indexterm" name="id5667153"></a>
+ <a class="indexterm" name="id5667162"></a>
+ <a class="indexterm" name="id5667172"></a>
+ <a class="indexterm" name="id5667181"></a>
+ <a class="indexterm" name="id5667190"></a>
+ <a class="indexterm" name="id5667201"></a>
+ <a class="indexterm" name="id5667210"></a>
+ <a class="indexterm" name="id5667220"></a>
+ <a class="indexterm" name="id5667192"></a>
+ <a class="indexterm" name="id5667239"></a>
+ <a class="indexterm" name="id5667248"></a>
+ <a class="indexterm" name="id5667258"></a>
+ <a class="indexterm" name="id5667249"></a>
+ <a class="indexterm" name="id5667277"></a>
+ <a class="indexterm" name="id5667286"></a>
+ <a class="indexterm" name="id5667297"></a>
+ <a class="indexterm" name="id5667306"></a>
+ <a class="indexterm" name="id5667315"></a>
+ <a class="indexterm" name="id5667326"></a>
+ <a class="indexterm" name="id5667335"></a>
+ <a class="indexterm" name="id5667345"></a>
+ <a class="indexterm" name="id5667355"></a>
+ <a class="indexterm" name="id5667366"></a>
+ <a class="indexterm" name="id5667375"></a>
+ <a class="indexterm" name="id5667384"></a>
+ <a class="indexterm" name="id5667356"></a>
+ <a class="indexterm" name="id5667403"></a>
+ <a class="indexterm" name="id5667411"></a>
+ <a class="indexterm" name="id5667412"></a>
+ <a class="indexterm" name="id5667431"></a>
+ <a class="indexterm" name="id5667440"></a>
+ <a class="indexterm" name="id5667450"></a>
+ <a class="indexterm" name="id5667441"></a>
+ <a class="indexterm" name="id5667461"></a>
+ <a class="indexterm" name="id5667478"></a>
+ <a class="indexterm" name="id5667488"></a>
+ <a class="indexterm" name="id5667480"></a>
+ <a class="indexterm" name="id5667508"></a>
+ <a class="indexterm" name="id5667499"></a>
+ <a class="indexterm" name="id5667526"></a>
+ <a class="indexterm" name="id5667538"></a>
+ <a class="indexterm" name="id5667548"></a>
+ <a class="indexterm" name="id5667557"></a>
+ <a class="indexterm" name="id5667568"></a>
+ <a class="indexterm" name="id5667577"></a>
+ <a class="indexterm" name="id5667539"></a>
+ <a class="indexterm" name="id5667596"></a>
+ <a class="indexterm" name="id5667597"></a>
+ <a class="indexterm" name="id5667607"></a>
+ <a class="indexterm" name="id5667623"></a>
+ <a class="indexterm" name="id5667635"></a>
+ <a class="indexterm" name="id5667615"></a>
+ <a class="indexterm" name="id5667654"></a>
+ <a class="indexterm" name="id5667644"></a>
+ <a class="indexterm" name="id5667673"></a>
+ <a class="indexterm" name="id5667684"></a>
+ <a class="indexterm" name="id5667694"></a>
+ <a class="indexterm" name="id5667702"></a>
+ <a class="indexterm" name="id5667712"></a>
+ <a class="indexterm" name="id5667721"></a>
+ <a class="indexterm" name="id5667732"></a>
+ <a class="indexterm" name="id5667740"></a>
+ <a class="indexterm" name="id5667749"></a>
+ <a class="indexterm" name="id5667760"></a>
+ <a class="indexterm" name="id5667769"></a>
+ <a class="indexterm" name="id5667778"></a>
+ <a class="indexterm" name="id5667789"></a>
+ <a class="indexterm" name="id5667780"></a>
+ <a class="indexterm" name="id5667807"></a>
+ <a class="indexterm" name="id5667818"></a>
+ <a class="indexterm" name="id5667808"></a>
+ <a class="indexterm" name="id5667836"></a>
+ <a class="indexterm" name="id5667846"></a>
+ <a class="indexterm" name="id5667856"></a>
+ <a class="indexterm" name="id5667865"></a>
+ <a class="indexterm" name="id5667875"></a>
+ <a class="indexterm" name="id5667866"></a>
+ <a class="indexterm" name="id5667893"></a>
+ <a class="indexterm" name="id5667904"></a>
+ <a class="indexterm" name="id5667914"></a>
+ <a class="indexterm" name="id5667923"></a>
+ <a class="indexterm" name="id5667932"></a>
+ <a class="indexterm" name="id5667943"></a>
+ <a class="indexterm" name="id5667952"></a>
+ <a class="indexterm" name="id5667962"></a>
+ <a class="indexterm" name="id5667954"></a>
+ <a class="indexterm" name="id5667934"></a>
+ <a class="indexterm" name="id5667991"></a>
+ <a class="indexterm" name="id5668001"></a>
+ <a class="indexterm" name="id5667992"></a>
+ <a class="indexterm" name="id5668020"></a>
+ <a class="indexterm" name="id5668031"></a>
+ <a class="indexterm" name="id5668041"></a>
+ <a class="indexterm" name="id5668049"></a>
+ <a class="indexterm" name="id5668058"></a>
+ <a class="indexterm" name="id5668069"></a>
+ <a class="indexterm" name="id5668078"></a>
+ <a class="indexterm" name="id5668088"></a>
+ <a class="indexterm" name="id5668097"></a>
+ <a class="indexterm" name="id5668107"></a>
+ <a class="indexterm" name="id5668099"></a>
+ <a class="indexterm" name="id5668109"></a>
+ <a class="indexterm" name="id5668136"></a>
+ <a class="indexterm" name="id5668127"></a>
+ <a class="indexterm" name="id5668156"></a>
+ <a class="indexterm" name="id5668146"></a>
+ <a class="indexterm" name="id5668175"></a>
+ <a class="indexterm" name="id5668183"></a>
+ <a class="indexterm" name="id5668193"></a>
+ <a class="indexterm" name="id5668202"></a>
+ <a class="indexterm" name="id5668212"></a>
+ <a class="indexterm" name="id5668220"></a>
+ <a class="indexterm" name="id5668231"></a>
+ <a class="indexterm" name="id5668241"></a>
+ <a class="indexterm" name="id5668251"></a>
+ <a class="indexterm" name="id5668260"></a>
+ <a class="indexterm" name="id5668271"></a>
+ <a class="indexterm" name="id5668262"></a>
+ <a class="indexterm" name="id5668289"></a>
+ <a class="indexterm" name="id5668299"></a>
+ <a class="indexterm" name="id5668290"></a>
+ <a class="indexterm" name="id5668319"></a>
+ <a class="indexterm" name="id5668328"></a>
+ <a class="indexterm" name="id5668320"></a>
+ <a class="indexterm" name="id5668347"></a>
+ <a class="indexterm" name="id5668357"></a>
+ <a class="indexterm" name="id5668367"></a>
+ <a class="indexterm" name="id5668376"></a>
+ <a class="indexterm" name="id5668386"></a>
+ <a class="indexterm" name="id5668396"></a>
+ <a class="indexterm" name="id5668404"></a>
+ <a class="indexterm" name="id5668415"></a>
+ <a class="indexterm" name="id5668424"></a>
+ <a class="indexterm" name="id5668406"></a>
+ <a class="indexterm" name="id5668443"></a>
+ <a class="indexterm" name="id5668452"></a>
+ <a class="indexterm" name="id5668444"></a>
+ <a class="indexterm" name="id5668453"></a>
+ <a class="indexterm" name="id5668483"></a>
+ <a class="indexterm" name="id5668492"></a>
+ <a class="indexterm" name="id5668472"></a>
+ <a class="indexterm" name="id5668474"></a>
+ <a class="indexterm" name="id5668520"></a>
+ <a class="indexterm" name="id5668521"></a>
+ <a class="indexterm" name="id5668512"></a>
+ <a class="indexterm" name="id5668530"></a>
+ <a class="indexterm" name="id5668559"></a>
+ <a class="indexterm" name="id5668569"></a>
+ <a class="indexterm" name="id5668560"></a>
+ <a class="indexterm" name="id5668589"></a>
+ <a class="indexterm" name="id5668598"></a>
+ <a class="indexterm" name="id5668590"></a>
+ <a class="indexterm" name="id5668616"></a>
+ <a class="indexterm" name="id5668625"></a>
+ <a class="indexterm" name="id5668635"></a>
+ <a class="indexterm" name="id5668644"></a>
+ <a class="indexterm" name="id5668655"></a>
+ <a class="indexterm" name="id5668664"></a>
+ <a class="indexterm" name="id5668673"></a>
+ <a class="indexterm" name="id5668683"></a>
+ <a class="indexterm" name="id5668693"></a>
+ <a class="indexterm" name="id5668702"></a>
+ <a class="indexterm" name="id5668674"></a>
+ <a class="indexterm" name="id5668720"></a>
+ <a class="indexterm" name="id5668731"></a>
+ <a class="indexterm" name="id5668723"></a>
+ <a class="indexterm" name="id5668750"></a>
+ <a class="indexterm" name="id5668732"></a>
+ <a class="indexterm" name="id5668770"></a>
+ <a class="indexterm" name="id5668760"></a>
+ <a class="indexterm" name="id5668789"></a>
+ <a class="indexterm" name="id5668779"></a>
+ <a class="indexterm" name="id5668780"></a>
+ <a class="indexterm" name="id5668818"></a>
+ <a class="indexterm" name="id5668808"></a>
+ <a class="indexterm" name="id5668837"></a>
+ <a class="indexterm" name="id5668846"></a>
+ <a class="indexterm" name="id5668838"></a>
+ <a class="indexterm" name="id5668865"></a>
+ <a class="indexterm" name="id5668857"></a>
+ <a class="indexterm" name="id5668885"></a>
+ <a class="indexterm" name="id5668896"></a>
+ <a class="indexterm" name="id5668905"></a>
+ <a class="indexterm" name="id5668914"></a>
+ <a class="indexterm" name="id5668925"></a>
+ <a class="indexterm" name="id5668916"></a>
+ <a class="indexterm" name="id5668943"></a>
+ <a class="indexterm" name="id5668953"></a>
+ <a class="indexterm" name="id5668964"></a>
+ <a class="indexterm" name="id5668973"></a>
+ <a class="indexterm" name="id5668983"></a>
+ <a class="indexterm" name="id5668993"></a>
+ <a class="indexterm" name="id5668965"></a>
+ <a class="indexterm" name="id5669010"></a>
+ <a class="indexterm" name="id5669002"></a>
+ <a class="indexterm" name="id5669031"></a>
+ <a class="indexterm" name="id5669042"></a>
+ <a class="indexterm" name="id5669022"></a>
+ <a class="indexterm" name="id5669062"></a>
+ <a class="indexterm" name="id5669073"></a>
+ <a class="indexterm" name="id5669083"></a>
+ <a class="indexterm" name="id5669091"></a>
+ <a class="indexterm" name="id5669100"></a>
+ <a class="indexterm" name="id5669109"></a>
+ <a class="indexterm" name="id5669120"></a>
+ <a class="indexterm" name="id5669111"></a>
+ <a class="indexterm" name="id5669138"></a>
+ <a class="indexterm" name="id5669148"></a>
+ <a class="indexterm" name="id5669159"></a>
+ <a class="indexterm" name="id5669168"></a>
+ <a class="indexterm" name="id5669177"></a>
+ <a class="indexterm" name="id5669188"></a>
+ <a class="indexterm" name="id5669178"></a>
+ <a class="indexterm" name="id5669207"></a>
+ <a class="indexterm" name="id5669218"></a>
+ <a class="indexterm" name="id5669227"></a>
+ <a class="indexterm" name="id5669236"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/macros.html
^
|
@@ -268,7 +268,7 @@
<p>A list of all the macros that are available in Icinga, as well as a chart of when they can be used, can be found
<a class="link" href="macrolist.html" title="Standard Macros in Icinga">here</a>.</p>
- <a class="indexterm" name="id1479265"></a>
+ <a class="indexterm" name="id5651059"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/monitoring-linux.html
^
|
@@ -94,7 +94,7 @@
<p>Another common method of monitoring remote Linux/Unix hosts is to use the <a class="link" href="addons.html#addons-nrpe">NRPE addon</a>.
NRPE allows you to execute plugins on remote Linux/Unix hosts. This is useful if you need to monitor local resources/attributes
like disk usage, CPU load, memory usage, etc. on a remote host.</p>
- <a class="indexterm" name="id1432080"></a>
+ <a class="indexterm" name="id5603466"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/monitoring-netware.html
^
|
@@ -81,7 +81,7 @@
<p>Thanks to <a class="link" href="http://www.novell.com/coolsolutions/author/1301" target="_top">Christian Mies</a>, <a class="link" href="http://www.novell.com/coolsolutions/author/1525" target="_top">Rainer Brunold</a>, and others for contributing Nagios
and Netware documentation, addons, etc. on the Novell site!</p>
- <a class="indexterm" name="id1432255"></a>
+ <a class="indexterm" name="id5603642"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/monitoring-printers.html
^
|
@@ -234,7 +234,7 @@
<p>If the verification process produces any errors messages, fix your configuration file before continuing. Make sure that
you don't (re)start Icinga until the verification process completes without any errors!</p>
- <a class="indexterm" name="id1432758"></a>
+ <a class="indexterm" name="id5604165"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/monitoring-publicservices.html
^
|
@@ -353,7 +353,7 @@
<p>If the verification process produces any errors messages, fix your configuration file before continuing. Make sure that
you don't (re)start Icinga until the verification process completes without any errors!</p>
- <a class="indexterm" name="id1434085"></a>
+ <a class="indexterm" name="id5605482"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/monitoring-routers.html
^
|
@@ -293,7 +293,7 @@
<p>If the verification process produces any errors messages, fix your configuration file before continuing. Make sure that
you don't (re)start Icinga until the verification process completes without any errors!</p>
- <a class="indexterm" name="id1433396"></a>
+ <a class="indexterm" name="id5604806"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/monitoring-windows.html
^
|
@@ -351,8 +351,8 @@
<p>If the verification process produces any errors messages, fix your configuration file before continuing. Make sure that
you don't (re)start Icinga until the verification process completes without any errors!</p>
- <a class="indexterm" name="id1431899"></a>
- <a class="indexterm" name="id1431870"></a>
+ <a class="indexterm" name="id5603283"></a>
+ <a class="indexterm" name="id5603292"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/mrtggraphs.html
^
|
@@ -301,7 +301,7 @@
</tbody>
</table>
</div>
- <a class="indexterm" name="id1533911"></a>
+ <a class="indexterm" name="id5704977"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/networkreachability.html
^
|
@@ -146,8 +146,8 @@
<p>If you want to spare yourself from a flood of UNREACHABLE notifications during network outages, you can exclude the
unreachable (u) option from the <span class="emphasis"><em>notification_options</em></span> directive in your <a class="link" href="objectdefinitions.html#objectdefinitions-host">host</a> definitions and/or the <span class="emphasis"><em>host_notification_options</em></span> directive in
your <a class="link" href="objectdefinitions.html#objectdefinitions-contact">contact</a> definitions.</p>
- <a class="indexterm" name="id1500405"></a>
- <a class="indexterm" name="id1500415"></a>
+ <a class="indexterm" name="id5672312"></a>
+ <a class="indexterm" name="id5672321"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/notifications.html
^
|
@@ -315,13 +315,13 @@
have audio alerts played on the monitoring server (with synthesized speech), check out <a class="link" href="http://www.cstr.ed.ac.uk/projects/festival/" target="_top">Festival</a>. If you'd rather leave the monitoring box alone and have audio
alerts played on another box, check out the <a class="link" href="http://radscan.com/nas" target="_top">Network Audio System (NAS)</a> and <a class="link" href="http://rplay.doit.org/" target="_top">rplay</a> projects.</p>
- <a class="indexterm" name="id1501234"></a>
+ <a class="indexterm" name="id5673136"></a>
- <a class="indexterm" name="id1501244"></a>
+ <a class="indexterm" name="id5673108"></a>
- <a class="indexterm" name="id1501258"></a>
+ <a class="indexterm" name="id5673167"></a>
- <a class="indexterm" name="id1501271"></a>
+ <a class="indexterm" name="id5673151"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/nrpe.html
^
|
@@ -51,7 +51,7 @@
outweigh the security difference. SSL can be actived though if you need a more secure connection.</p>
<div class="figure">
-<a name="id1536112"></a><p class="title"><b>Figure 10.1. NRPE</b></p>
+<a name="id5708149"></a><p class="title"><b>Figure 10.1. NRPE</b></p>
<div class="figure-contents">
@@ -77,7 +77,7 @@
The machine running the NRPE daemon is acting as a relay in this case.</p>
<div class="figure">
-<a name="id1536151"></a><p class="title"><b>Figure 10.2. NRPE remote</b></p>
+<a name="id5708206"></a><p class="title"><b>Figure 10.2. NRPE remote</b></p>
<div class="figure-contents">
@@ -645,9 +645,9 @@
</li>
</ul></div>
- <a class="indexterm" name="id1537379"></a>
+ <a class="indexterm" name="id5709437"></a>
- <a class="indexterm" name="id1537392"></a>
+ <a class="indexterm" name="id5709449"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/nsca.html
^
|
@@ -36,7 +36,7 @@
results are transmitted as well.</p>
<div class="figure">
-<a name="id1537431"></a><p class="title"><b>Figure 10.3. NSCA</b></p>
+<a name="id5709490"></a><p class="title"><b>Figure 10.3. NSCA</b></p>
<div class="figure-contents">
@@ -363,9 +363,9 @@
<p>After a short while you should see messages in icinga.log showing that the information submitted was processed. You should see the
information in the classic UI as well turning the service state from "Pending" to "OK" and containing the data you specified.</p>
- <a class="indexterm" name="id1538119"></a>
+ <a class="indexterm" name="id5710152"></a>
- <a class="indexterm" name="id1538133"></a>
+ <a class="indexterm" name="id5710201"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/objectdefinitions.html
^
|
@@ -116,13 +116,13 @@
<p><a class="link" href="objectdefinitions.html#objectdefinitions-module">Module definitions</a></p>
- <a class="indexterm" name="id1455081"></a>
+ <a class="indexterm" name="id5626597"></a>
- <a class="indexterm" name="id1455091"></a>
+ <a class="indexterm" name="id5626603"></a>
<div class="section" title="Host definition">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1455104"></a>Host definition</h3></div></div></div>
+<a name="id5626561"></a>Host definition</h3></div></div></div>
<p><a name="objectdefinitions-host"></a> <span class="bold"><strong>Host definition</strong></span></p>
@@ -800,14 +800,14 @@
</table>
</div>
- <a class="indexterm" name="id1456082"></a>
+ <a class="indexterm" name="id5629215"></a>
- <a class="indexterm" name="id1457738"></a>
+ <a class="indexterm" name="id5629279"></a>
</div>
<div class="section" title="Hostgroup Definition">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1455107"></a>Hostgroup Definition</h3></div></div></div>
+<a name="id5626620"></a>Hostgroup Definition</h3></div></div></div>
<p><a name="objectdefinitions-hostgroup"></a><span class="bold"><strong>Host Group Definition</strong></span></p>
@@ -943,14 +943,14 @@
</table>
</div>
- <a class="indexterm" name="id1458268"></a>
+ <a class="indexterm" name="id5629806"></a>
- <a class="indexterm" name="id1458278"></a>
+ <a class="indexterm" name="id5629815"></a>
</div>
<div class="section" title="Service Definition">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1457750"></a>Service Definition</h3></div></div></div>
+<a name="id5629293"></a>Service Definition</h3></div></div></div>
<p><a name="objectdefinitions-service"></a><span class="bold"><strong>Service Definition</strong></span></p>
@@ -1491,14 +1491,14 @@
</table>
</div>
- <a class="indexterm" name="id1459176"></a>
+ <a class="indexterm" name="id5632076"></a>
- <a class="indexterm" name="id1460633"></a>
+ <a class="indexterm" name="id5630714"></a>
</div>
<div class="section" title="Servicegroup Definition">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1458292"></a>Servicegroup Definition</h3></div></div></div>
+<a name="id5629830"></a>Servicegroup Definition</h3></div></div></div>
<p><a name="objectdefinitions-servicegroup"></a><span class="bold"><strong>Service Group Definition</strong></span></p>
@@ -1640,14 +1640,14 @@
</table>
</div>
- <a class="indexterm" name="id1461181"></a>
+ <a class="indexterm" name="id5632742"></a>
- <a class="indexterm" name="id1461189"></a>
+ <a class="indexterm" name="id5632750"></a>
</div>
<div class="section" title="Contact Definition">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1460648"></a>Contact Definition</h3></div></div></div>
+<a name="id5632205"></a>Contact Definition</h3></div></div></div>
<p><a name="objectdefinitions-contact"></a><span class="bold"><strong>Contact Definition</strong></span></p>
@@ -1911,14 +1911,14 @@
</table>
</div>
- <a class="indexterm" name="id1462373"></a>
+ <a class="indexterm" name="id5633840"></a>
- <a class="indexterm" name="id1462381"></a>
+ <a class="indexterm" name="id5633952"></a>
</div>
<div class="section" title="Contactgroup Definition">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1461202"></a>Contactgroup Definition</h3></div></div></div>
+<a name="id5632767"></a>Contactgroup Definition</h3></div></div></div>
<p><a name="objectdefinitions-contactgroup"></a><span class="bold"><strong>Contact Group Definition</strong></span></p>
@@ -2019,14 +2019,14 @@
</table>
</div>
- <a class="indexterm" name="id1462773"></a>
+ <a class="indexterm" name="id5634234"></a>
- <a class="indexterm" name="id1462782"></a>
+ <a class="indexterm" name="id5634348"></a>
</div>
<div class="section" title="Timeperiod Definition">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1462392"></a>Timeperiod Definition</h3></div></div></div>
+<a name="id5633966"></a>Timeperiod Definition</h3></div></div></div>
<p><a name="objectdefinitions-timeperiod"></a><span class="bold"><strong>Time Period Definition</strong></span></p>
@@ -2187,14 +2187,14 @@
</table>
</div>
- <a class="indexterm" name="id1463238"></a>
+ <a class="indexterm" name="id5634811"></a>
- <a class="indexterm" name="id1463247"></a>
+ <a class="indexterm" name="id5634819"></a>
</div>
<div class="section" title="Command Definition">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1462797"></a>Command Definition</h3></div></div></div>
+<a name="id5634364"></a>Command Definition</h3></div></div></div>
<p><a name="objectdefinitions-command"></a><span class="bold"><strong>Command Definition</strong></span></p>
@@ -2294,14 +2294,14 @@
</table>
</div>
- <a class="indexterm" name="id1463529"></a>
+ <a class="indexterm" name="id5635210"></a>
- <a class="indexterm" name="id1463650"></a>
+ <a class="indexterm" name="id5635225"></a>
</div>
<div class="section" title="Servicedependency Definition">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1463614"></a>Servicedependency Definition</h3></div></div></div>
+<a name="id5634832"></a>Servicedependency Definition</h3></div></div></div>
<p><a name="objectdefinitions-servicedependency"></a><span class="bold"><strong>Service Dependency Definition</strong></span></p>
@@ -2486,14 +2486,14 @@
</table>
</div>
- <a class="indexterm" name="id1464496"></a>
+ <a class="indexterm" name="id5635602"></a>
- <a class="indexterm" name="id1464486"></a>
+ <a class="indexterm" name="id5636087"></a>
</div>
<div class="section" title="Serviceescalation Definition">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1463663"></a>Serviceescalation Definition</h3></div></div></div>
+<a name="id5635240"></a>Serviceescalation Definition</h3></div></div></div>
<p><a name="objectdefinitions-serviceescalation"></a><span class="bold"><strong>Service Escalation Definition</strong></span></p>
@@ -2770,14 +2770,14 @@
</table>
</div>
- <a class="indexterm" name="id1465657"></a>
+ <a class="indexterm" name="id5637245"></a>
- <a class="indexterm" name="id1465665"></a>
+ <a class="indexterm" name="id5637253"></a>
</div>
<div class="section" title="Hostdependency Definition">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1465677"></a>Hostdependency Definition</h3></div></div></div>
+<a name="id5636102"></a>Hostdependency Definition</h3></div></div></div>
<p><a name="objectdefinitions-hostdependency"></a><span class="bold"><strong>Host Dependency Definition</strong></span></p>
@@ -2937,14 +2937,14 @@
</table>
</div>
- <a class="indexterm" name="id1466368"></a>
+ <a class="indexterm" name="id5637951"></a>
- <a class="indexterm" name="id1466378"></a>
+ <a class="indexterm" name="id5637970"></a>
</div>
<div class="section" title="Hostescalation Definition">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1465679"></a>Hostescalation Definition</h3></div></div></div>
+<a name="id5637267"></a>Hostescalation Definition</h3></div></div></div>
<p><a name="objectdefinitions-hostescalation"></a><span class="bold"><strong>Host Escalation Definition</strong></span></p>
@@ -3168,14 +3168,14 @@
</table>
</div>
- <a class="indexterm" name="id1467260"></a>
+ <a class="indexterm" name="id5638858"></a>
- <a class="indexterm" name="id1467268"></a>
+ <a class="indexterm" name="id5638865"></a>
</div>
<div class="section" title="Hostextinfo Definition">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1466393"></a>Hostextinfo Definition</h3></div></div></div>
+<a name="id5637984"></a>Hostextinfo Definition</h3></div></div></div>
<p><a name="objectdefinitions-hostextinfo"></a><span class="bold"><strong>Extended Host Information Definition</strong></span></p>
@@ -3413,14 +3413,14 @@
</table>
</div>
- <a class="indexterm" name="id1468089"></a>
+ <a class="indexterm" name="id5639682"></a>
- <a class="indexterm" name="id1468097"></a>
+ <a class="indexterm" name="id5639696"></a>
</div>
<div class="section" title="Serviceextinfo Definition">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1467283"></a>Serviceextinfo Definition</h3></div></div></div>
+<a name="id5638880"></a>Serviceextinfo Definition</h3></div></div></div>
<p><a name="objectdefinitions-serviceextinfo"></a><span class="bold"><strong>Extended Service Information
@@ -3579,14 +3579,14 @@
</table>
</div>
- <a class="indexterm" name="id1468700"></a>
+ <a class="indexterm" name="id5640301"></a>
- <a class="indexterm" name="id1468710"></a>
+ <a class="indexterm" name="id5640310"></a>
</div>
<div class="section" title="Module Definition">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id1468110"></a>Module Definition</h3></div></div></div>
+<a name="id5639712"></a>Module Definition</h3></div></div></div>
<p><a name="objectdefinitions-module"></a><span class="bold"><strong>Module Definition</strong></span></p>
@@ -3716,7 +3716,7 @@
</td></tr>
</table></div>
- <a class="indexterm" name="id1469092"></a>
+ <a class="indexterm" name="id5640702"></a>
</div>
</div>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/objectinheritance.html
^
|
@@ -559,19 +559,19 @@
</table>
</div>
- <a class="indexterm" name="id1528609"></a>
+ <a class="indexterm" name="id5700618"></a>
- <a class="indexterm" name="id1528537"></a>
+ <a class="indexterm" name="id5700646"></a>
- <a class="indexterm" name="id1528637"></a>
+ <a class="indexterm" name="id5700658"></a>
- <a class="indexterm" name="id1528651"></a>
+ <a class="indexterm" name="id5700671"></a>
- <a class="indexterm" name="id1528665"></a>
+ <a class="indexterm" name="id5700684"></a>
- <a class="indexterm" name="id1528676"></a>
+ <a class="indexterm" name="id5700699"></a>
- <a class="indexterm" name="id1528692"></a>
+ <a class="indexterm" name="id5700710"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/objecttricks.html
^
|
@@ -444,27 +444,27 @@
<span class="emphasis"><em>other hostgroup directives</em></span> ...
}</pre>
- <a class="indexterm" name="id1530305"></a>
+ <a class="indexterm" name="id5702329"></a>
- <a class="indexterm" name="id1530319"></a>
+ <a class="indexterm" name="id5702301"></a>
- <a class="indexterm" name="id1530329"></a>
+ <a class="indexterm" name="id5702353"></a>
- <a class="indexterm" name="id1530339"></a>
+ <a class="indexterm" name="id5702365"></a>
- <a class="indexterm" name="id1530348"></a>
+ <a class="indexterm" name="id5702373"></a>
- <a class="indexterm" name="id1530358"></a>
+ <a class="indexterm" name="id5702383"></a>
- <a class="indexterm" name="id1530373"></a>
+ <a class="indexterm" name="id5702397"></a>
- <a class="indexterm" name="id1530383"></a>
+ <a class="indexterm" name="id5702399"></a>
- <a class="indexterm" name="id1530397"></a>
+ <a class="indexterm" name="id5702385"></a>
- <a class="indexterm" name="id1530407"></a>
+ <a class="indexterm" name="id5702433"></a>
- <a class="indexterm" name="id1530417"></a>
+ <a class="indexterm" name="id5702442"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/oncallrotation.html
^
|
@@ -267,7 +267,7 @@
<a class="link" href="objectdefinitions.html#objectdefinitions-timeperiod">timeperiod definitions</a> is capable of handling most dates and date ranges
that you might need to use, so check out the different formats that you can use. If you make a mistake when creating timeperiod
definitions, always err on the side of giving someone else more on-call duty time. :-)</p>
- <a class="indexterm" name="id1522174"></a>
+ <a class="indexterm" name="id5694145"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/passivechecks.html
^
|
@@ -241,7 +241,7 @@
and a client that is executed from remote hosts. The daemon will listen for connections from remote clients, perform some basic
validation on the results being submitted, and then write the check results directly into the external command file (as
described above). More information on the NSCA addon can be found <a class="link" href="addons.html#addons-nsca">here</a>.</p>
- <a class="indexterm" name="id1498947"></a>
+ <a class="indexterm" name="id5670849"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/passivestatetranslation.html
^
|
@@ -104,7 +104,7 @@
<p>The automatic translation of passive host check states is controlled by the <a class="link" href="configmain.html#configmain-translate_passive_host_checks">translate_passive_host_checks</a> variable. Enable it and Icinga
will automatically translate DOWN and UNREACHABLE states from remote sources to their correct state for the local instance of
Icinga.</p>
- <a class="indexterm" name="id1526022"></a>
+ <a class="indexterm" name="id5698021"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/perfdata.html
^
|
@@ -182,7 +182,7 @@
(e.g. rotate them) using the <a class="link" href="configmain.html#configmain-host_perfdata_file_processing_command">host_perfdata_file_processing_command</a> and <a class="link" href="configmain.html#configmain-service_perfdata_file_processing_command">service_perfdata_file_processing_command</a> options. The
interval at which these commands are executed are governed by the <a class="link" href="configmain.html#configmain-host_perfdata_file_processing_interval">host_perfdata_file_processing_interval</a> and <a class="link" href="configmain.html#configmain-service_perfdata_file_processing_interval">service_perfdata_file_processing_interval</a> options,
respectively.</p>
- <a class="indexterm" name="id1524192"></a>
+ <a class="indexterm" name="id5696180"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/pluginapi.html
^
|
@@ -236,7 +236,7 @@
<p>Icinga features an optional <a class="link" href="embeddedperl.html" title="Using The Embedded Perl Interpreter">embedded Perl interpreter</a> which can speed up the
execution of Perl plugins. More information on developing Perl plugins for use with the embedded Perl interpreter can be found
<a class="link" href="embeddedperl.html" title="Using The Embedded Perl Interpreter">here</a>.</p>
- <a class="indexterm" name="id1538936"></a>
+ <a class="indexterm" name="id5711005"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/plugins.html
^
|
@@ -370,13 +370,13 @@
<p>You can find information on the technical aspects of plugins, as well as how to go about creating your own custom plugins <a class="link" href="pluginapi.html" title="Icinga Plugin API">here</a>.</p>
- <a class="indexterm" name="id1478557"></a>
+ <a class="indexterm" name="id5650346"></a>
- <a class="indexterm" name="id1478571"></a>
+ <a class="indexterm" name="id5650329"></a>
- <a class="indexterm" name="id1478581"></a>
+ <a class="indexterm" name="id5650361"></a>
- <a class="indexterm" name="id1478594"></a>
+ <a class="indexterm" name="id5650384"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/quickstart-icinga-freebsd.html
^
|
@@ -285,7 +285,7 @@
<p>You'll no doubt want to monitor more than just your local machine, so check out the chapter on <a class="link" href="ch02.html" title="Chapter 2. Getting Started">"Getting
Started"</a> about "Monitoring ..."</p>
- <a class="indexterm" name="id1427032"></a>
+ <a class="indexterm" name="id5598343"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/quickstart-icinga.html
^
|
@@ -379,7 +379,7 @@
<p>You'll no doubt want to monitor more than just your local machine, so check out the chapter on <a class="link" href="ch02.html" title="Chapter 2. Getting Started">"Getting
Started"</a> about "Monitoring ..."</p>
- <a class="indexterm" name="id1426432"></a>
+ <a class="indexterm" name="id5597763"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/quickstart-idoutils-freebsd.html
^
|
@@ -214,6 +214,7 @@
<pre class="programlisting"> #> ./configure --with-command-group=icinga-cmd \
--enable-idoutils CPPFLAGS=-I/usr/local/include \
+ CFLAGS="-I/usr/local/include -L/usr/local/lib" \
--with-dbi-lib=/usr/local/lib --with-dbi-inc=/usr/local/include</pre>
<div class="important" title="Important" style="margin-left: 0.5in; margin-right: 0.5in;"><table border="0" summary="Important">
@@ -226,6 +227,24 @@
respectively.</p>
</td></tr>
</table></div>
+ <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;"><table border="0" summary="Note">
+<tr>
+<td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="../images/note.png"></td>
+<th align="left">Note</th>
+</tr>
+<tr><td align="left" valign="top">
+ <p>You should include <code class="literal">CFLAGS=..."</code> like specified above. Otherwise you might get the following lines in
+ <code class="filename">icinga.log</code>:
+ </p>
+<pre class="screen"> Error: Module ‘/usr/local/icinga/bin/idomod.o’ is using an old or unspecified version of the event broker API. Module will
+ be unloaded.
+ Event broker module ‘/usr/local/icinga/bin/idomod.o’ deinitialized successfully.</pre>
+<p>
+ More details on this error can be found <a class="link" href="http://www.mazej.net/icinga-idomod-o-is-using-an-old-or-unspecified-version-of-the-event-broker-api/" target="_top">
+ here</a>.
+ </p>
+ </td></tr>
+</table></div>
<p><span class="bold"><strong>With SSL-encryption:</strong></span></p>
@@ -514,7 +533,7 @@
<pre class="programlisting">make install NAGIOSUSER=icinga NAGIOSGROUP=icinga \
PREFIX=/usr/local/icinga</pre>
- <a class="indexterm" name="id1429531"></a>
+ <a class="indexterm" name="id5600904"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/quickstart-idoutils.html
^
|
@@ -777,7 +777,7 @@
no doubt want to monitor more than just your local machine, so check out the chapter on <a class="link" href="ch02.html" title="Chapter 2. Getting Started">"Getting Started"</a>
about "Monitoring ..."</p>
- <a class="indexterm" name="id1428568"></a>
+ <a class="indexterm" name="id5599909"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/quickstart.html
^
|
@@ -88,7 +88,7 @@
<p>Command names, paths, etc. vary widely across different Operating Systems/Distributions, so you'll likely need to tweak the
installation docs a bit to work for your particular case.</p>
- <a class="indexterm" name="id1425592"></a>
+ <a class="indexterm" name="id5596926"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/redundancy.html
^
|
@@ -425,9 +425,9 @@
monitoring deals with service checks.</p>
<p>That's pretty much it as far as setup goes.</p>
- <a class="indexterm" name="id1520452"></a>
- <a class="indexterm" name="id1520462"></a>
- <a class="indexterm" name="id1520473"></a>
+ <a class="indexterm" name="id5692421"></a>
+ <a class="indexterm" name="id5692430"></a>
+ <a class="indexterm" name="id5692441"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/reporting.html
^
|
@@ -227,7 +227,7 @@
<tbody><tr>
<td>
<div class="figure">
-<a name="id1535178"></a><p class="title"><b>Figure 9.1. Icinga-Reporting in Icinga-Web</b></p>
+<a name="id5707235"></a><p class="title"><b>Figure 9.1. Icinga-Reporting in Icinga-Web</b></p>
<div class="figure-contents">
@@ -238,7 +238,7 @@
</td>
<td>
<div class="figure">
-<a name="id1535192"></a><p class="title"><b>Figure 9.2. Icinga-Reporting TOP10 in Icinga-Web</b></p>
+<a name="id5707237"></a><p class="title"><b>Figure 9.2. Icinga-Reporting TOP10 in Icinga-Web</b></p>
<div class="figure-contents">
@@ -265,7 +265,7 @@
<p>That's all, you're done!</p>
- <a class="indexterm" name="id1535249"></a>
+ <a class="indexterm" name="id5707306"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/security.html
^
|
@@ -149,7 +149,7 @@
<p><span class="inlinemediaobject"><img src="../images/security2.png"></span></p>
</li>
</ol></div>
- <a class="indexterm" name="id1530475"></a>
+ <a class="indexterm" name="id5702873"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/servicechecks.html
^
|
@@ -110,7 +110,7 @@
<p>When services change state too frequently they are considered to be "flapping". Icinga can detect when services
start flapping, and can suppress notifications until flapping stops and the service's state stabilizes. More information on the
flap detection logic can be found <a class="link" href="flapping.html" title="Detection and Handling of State Flapping">here</a>.</p>
- <a class="indexterm" name="id1498181"></a>
+ <a class="indexterm" name="id5670073"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/stalking.html
^
|
@@ -170,7 +170,7 @@
<p>As a general rule, I would suggest that you <span class="emphasis"><em>not</em></span> enable stalking for hosts and services without
thinking things through. Still, it's there if you need and want it.</p>
- <a class="indexterm" name="id1523779"></a>
+ <a class="indexterm" name="id5695758"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/startstop.html
^
|
@@ -134,10 +134,10 @@
<p>If you experience long delays between starting Icinga and the first checks you can use several other options which are shown
<a class="link" href="faststartup.html" title="Fast Startup Options">here</a>. How to have a look at the scheduling queue (-S) is described there as well.</p>
- <a class="indexterm" name="id1477699"></a>
+ <a class="indexterm" name="id5649490"></a>
- <a class="indexterm" name="id1477709"></a>
-<a class="indexterm" name="id1477722"></a>
+ <a class="indexterm" name="id5649501"></a>
+<a class="indexterm" name="id5649514"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/statetypes.html
^
|
@@ -255,7 +255,7 @@
</tbody>
</table>
</div>
- <a class="indexterm" name="id1499788"></a>
+ <a class="indexterm" name="id5671691"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/timeperiods.html
^
|
@@ -153,7 +153,7 @@
<span class="emphasis"><em>dependency_period</em></span> directive in a dependency definition, the dependency can be used at any time. If you
specify a timeperiod in the <span class="emphasis"><em>dependency_period</em></span> directive, Icinga will only use the dependency
definition during times that are valid in the timeperiod definition.</p>
- <a class="indexterm" name="id1500151"></a>
+ <a class="indexterm" name="id5672025"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/tuning.html
^
|
@@ -169,7 +169,7 @@
new IDE drives.</p>
</li>
</ol></div>
- <a class="indexterm" name="id1531846"></a>
+ <a class="indexterm" name="id5703877"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/upgrading.html
^
|
@@ -317,17 +317,17 @@
backed up all your critical Nagios files before removing the original RPM or APT package, so you can revert back if you encounter
problems.</p>
- <a class="indexterm" name="id1430421"></a>
+ <a class="indexterm" name="id5601821"></a>
- <a class="indexterm" name="id1430450"></a>
+ <a class="indexterm" name="id5601830"></a>
- <a class="indexterm" name="id1430465"></a>
+ <a class="indexterm" name="id5601843"></a>
- <a class="indexterm" name="id1430478"></a>
+ <a class="indexterm" name="id5601855"></a>
- <a class="indexterm" name="id1430492"></a>
+ <a class="indexterm" name="id5601872"></a>
- <a class="indexterm" name="id1430506"></a>
+ <a class="indexterm" name="id5601885"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/upgrading_icingaweb.html
^
|
@@ -182,13 +182,13 @@
<p>That's all.</p>
- <a class="indexterm" name="id1513984"></a>
+ <a class="indexterm" name="id5685867"></a>
- <a class="indexterm" name="id1513993"></a>
+ <a class="indexterm" name="id5685903"></a>
- <a class="indexterm" name="id1514009"></a>
+ <a class="indexterm" name="id5685926"></a>
- <a class="indexterm" name="id1514018"></a>
+ <a class="indexterm" name="id5685927"></a>
</div>
<div class="navfooter">
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/upgrading_idoutils.html
^
|
@@ -345,7 +345,7 @@
<p>If you changed something on the keys before please make sure you'll have the same database scheme applied as in 1.0RC otherwise the
script will fail.</p>
- <a class="indexterm" name="id1431184"></a>
+ <a class="indexterm" name="id5602563"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/verifyconfig.html
^
|
@@ -62,15 +62,15 @@
<p>Once you've verified your configuration files and fixed possible errors you can go ahead with <a class="xref" href="startstop.html" title="Starting and Stopping Icinga">“Starting and Stopping Icinga”</a>.</p>
- <a class="indexterm" name="id1477327"></a>
+ <a class="indexterm" name="id5649119"></a>
- <a class="indexterm" name="id1477337"></a>
+ <a class="indexterm" name="id5649130"></a>
- <a class="indexterm" name="id1477350"></a>
+ <a class="indexterm" name="id5649112"></a>
- <a class="indexterm" name="id1477363"></a>
+ <a class="indexterm" name="id5649157"></a>
- <a class="indexterm" name="id1477377"></a>
+ <a class="indexterm" name="id5649170"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/volatileservices.html
^
|
@@ -179,7 +179,7 @@
</ul></div>
<p>Pretty neat, huh?</p>
- <a class="indexterm" name="id1518172"></a>
+ <a class="indexterm" name="id5690101"></a>
</div>
<div class="navfooter">
<hr>
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/en/whatsnew.html
^
|
@@ -130,7 +130,7 @@
<p><a class="link" href="https://dev.icinga.org/projects/show/icinga-docs" target="_top">Report Issue Icinga-Docs</a></p>
- <a class="indexterm" name="id1425354"></a>
+ <a class="indexterm" name="id5596677"></a>
</div>
<div class="navfooter">
|
|
Changed |
icinga-1.4.1.tar.bz2/html/docs/images/distributed.png
^
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/html/main.html
^
|
@@ -18,9 +18,9 @@
</div>
<div id="currentversioninfo">
-<div class="version">Version 1.4.0</div>
+<div class="version">Version 1.4.1</div>
<div class="releasedate">May 11, 2011</div>
-<div class="whatsnew"><a href="docs/en/whatsnew.html">Read what's new in Icinga 1.4.0</a></div>
+<div class="whatsnew"><a href="docs/en/whatsnew.html">Read what's new in Icinga 1.4.1</a></div>
</div>
<div id="developer">
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/icinga.spec
^
|
@@ -11,8 +11,8 @@
Summary: Open Source host, service and network monitoring program
Name: icinga
-Version: 1.4.0
-Release: 2%{?dist}
+Version: 1.4.1
+Release: 1%{?dist}
License: GPLv2+
Group: Applications/System
URL: http://www.icinga.org/
@@ -28,7 +28,7 @@
BuildRequires: libjpeg-devel
BuildRequires: libdbi-devel
BuildRequires: perl(ExtUtils::Embed)
-Provides: nagios = %{version}
+Provides: nagios
%description
Icinga is an application, system and network monitoring application.
@@ -242,6 +242,12 @@
%changelog
+* Sun Jun 05 2011 Michael Friedrich <michael.friedrich@univie.ac.at> - 1.4.1-1
+- update to 1.4.1
+
+* Wed May 18 2011 Michael Friedrich <michael.friedrich@univie.ac.at> - 1.4.0-3
+- undo provides nagios version
+
* Wed May 11 2011 Michael Friedrich <michael.friedrich@univie.ac.at> - 1.4.0-2
- undo changes on icinga-cmd group, use icingacmd like before
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/include/cgiutils.h
^
|
@@ -486,26 +486,41 @@
#define CONTEXTHELP_SUMMARY_SERVICEGROUP_ALERT_TOTALS "N8"
/************************** TAC TITLES ****************************/
-#define TAC_TITLE_HOST_UP_ALL "All Hosts up"
-#define TAC_TITLE_HOST_DOWN_UNACK_ACTIVE "Active unacknowledged Hosts down"
-#define TAC_TITLE_HOST_DOWN_UNACK_PASSIVE "Passive unacknowledged Hosts down"
-#define TAC_TITLE_HOST_DOWN_ACK "All acknowledged Hosts down"
-#define TAC_TITLE_HOST_UNREACHABLE_UNACK_ACTIVE "Active unacknowledged Hosts unreachable"
-#define TAC_TITLE_HOST_UNREACHABLE_UNACK_PASSIVE "Passive unacknowledged Hosts unreachable"
-#define TAC_TITLE_HOST_UNREACHABLE_ACK "All acknowledged Hosts unreachable"
-#define TAC_TITLE_HOST_TOTAL_ALL "All Hosts in total"
-#define TAC_TITLE_SVC_OK_ALL "All Services up"
-#define TAC_TITLE_SVC_WARNING_UNACK_ACTIVE "Active unacknowledged Services warning"
-#define TAC_TITLE_SVC_WARNING_UNACK_PASSIVE "Passive unacknowledged Services warning"
-#define TAC_TITLE_SVC_WARNING_ACK "All acknowledged Services warning"
-#define TAC_TITLE_SVC_CRITICAL_UNACK_ACTIVE "Active unacknowledged Services critical"
-#define TAC_TITLE_SVC_CRITICAL_UNACK_PASSIVE "Passive unacknowledged Services critical"
-#define TAC_TITLE_SVC_CRITICAL_ACK "All acknowledged Services critical"
-#define TAC_TITLE_SVC_UNKNOWN_UNACK_ACTIVE "Active unacknowledged Services unknown"
-#define TAC_TITLE_SVC_UNKNOWN_UNACK_PASSIVE "Passive unacknowledged Services unknown"
-#define TAC_TITLE_SVC_UNKNOWN_ACK "All acknowledged Services unknown"
-#define TAC_TITLE_SVC_TOTAL_ALL "All Services in total"
+#define TAC_TITLE_HOST_PENDING_ACTIVE "Active Hosts PENDING"
+#define TAC_TITLE_HOST_PENDING_PASSIVE "Passive Hosts PENDING"
+#define TAC_TITLE_HOST_PENDING_ALL "All PENDING Hosts"
+#define TAC_TITLE_HOST_UP_ALL "Hosts UP"
+#define TAC_TITLE_HOST_DOWN_UNACK_ACTIVE "Active unacknowledged Hosts DOWN"
+#define TAC_TITLE_HOST_DOWN_UNACK_PASSIVE "Passive unacknowledged Hosts DOWN"
+#define TAC_TITLE_HOST_DOWN_ACK "Acknowledged Hosts DOWN"
+#define TAC_TITLE_HOST_DOWN_ALL "All Hosts DOWN"
+#define TAC_TITLE_HOST_UNREACHABLE_UNACK_ACTIVE "Active unacknowledged Hosts UNREACHABLE"
+#define TAC_TITLE_HOST_UNREACHABLE_UNACK_PASSIVE "Passive unacknowledged Hosts UNREACHABLE"
+#define TAC_TITLE_HOST_UNREACHABLE_ACK "Acknowledged Hosts UNREACHABLE"
+#define TAC_TITLE_HOST_UNREACHABLE_ALL "All Hosts UNREACHABLE"
+#define TAC_TITLE_HOST_PROBLEM_ALL "All Problem Hosts"
+#define TAC_TITLE_HOST_TOTAL_ALL "Hosts TOTAL"
+
+#define TAC_TITLE_SVC_PENDING_ACTIVE "Active Services PENDING"
+#define TAC_TITLE_SVC_PENDING_PASSIVE "Passive Services PENDING"
+#define TAC_TITLE_SVC_PENDING_ALL "All PENDING Services"
+#define TAC_TITLE_SVC_OK_ALL "Services OK"
+#define TAC_TITLE_SVC_WARNING_UNACK_ACTIVE "Active unacknowledged Services WARNING"
+#define TAC_TITLE_SVC_WARNING_UNACK_PASSIVE "Passive unacknowledged Services WARNING"
+#define TAC_TITLE_SVC_WARNING_ACK "Acknowledged Services WARNING"
+#define TAC_TITLE_SVC_WARNING_ALL "All Services WARNING"
+#define TAC_TITLE_SVC_CRITICAL_UNACK_ACTIVE "Active unacknowledged Services CRITICAL"
+#define TAC_TITLE_SVC_CRITICAL_UNACK_PASSIVE "Passive unacknowledged Services CRITICAL"
+#define TAC_TITLE_SVC_CRITICAL_ACK "Acknowledged Services CRITICAL"
+#define TAC_TITLE_SVC_CRITICAL_ALL "All Services CRITICAL"
+#define TAC_TITLE_SVC_UNKNOWN_UNACK_ACTIVE "Active unacknowledged Services UNKNOWN"
+#define TAC_TITLE_SVC_UNKNOWN_UNACK_PASSIVE "Passive unacknowledged Services UNKNOWN"
+#define TAC_TITLE_SVC_UNKNOWN_ACK "Acknowledged Services UNKNOWN"
+#define TAC_TITLE_SVC_UNKNOWN_ALL "All Services UNKNOWN"
+#define TAC_TITLE_SVC_PROBLEM_ALL "All Problem Services"
+#define TAC_TITLE_SVC_NON_HOST_PROBLEM_ALL "All Services exluding Problem Hosts"
+#define TAC_TITLE_SVC_TOTAL_ALL "Services TOTAL"
/************************** HTTP CHARSET ****************************/
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/include/common.h
^
|
@@ -27,7 +27,7 @@
#define PROGRAM_NAME "Icinga"
#define PROGRAM_NAME_UC "ICINGA"
#define PROGRAM_NAME_LC "icinga"
-#define PROGRAM_VERSION "1.4.0"
+#define PROGRAM_VERSION "1.4.1"
#define PROGRAM_MODIFICATION_DATE "05-11-2011"
/*#define DEBUG_CHECK_IPC 1 */
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/module/idoutils/db/mysql/mysql.sql
^
|
@@ -1555,6 +1555,6 @@
-- -----------------------------------------
-- set dbversion
-- -----------------------------------------
-INSERT INTO icinga_dbversion (name, version) VALUES ('idoutils', '1.4.0') ON DUPLICATE KEY UPDATE version='1.4.0';
+INSERT INTO icinga_dbversion (name, version) VALUES ('idoutils', '1.4.1') ON DUPLICATE KEY UPDATE version='1.4.1';
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/module/idoutils/db/oracle/oracle.sql
^
|
@@ -21,7 +21,7 @@
-- -- --------------------------------------------------------
*/
-DEFINE ICINGA_VERSION=1.4.0
+DEFINE ICINGA_VERSION=1.4.1
-- -----------------------------------------
-- set defines
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/module/idoutils/db/pgsql/pgsql.sql
^
|
@@ -1,1592 +1,1591 @@
--- --------------------------------------------------------
--- pgsql.sql
--- DB definition for Postgresql
---
--- Copyright (c) 2009-2011 Icinga Development Team (http://www.icinga.org)
---
--- initial version: 2009-05-13 Markus Manzke
--- current version: 2010-07-20 Michael Friedrich <michael.friedrich@univie.ac.at>
---
--- --------------------------------------------------------
-
---
--- Functions
---
-
-CREATE OR REPLACE FUNCTION from_unixtime(integer) RETURNS timestamp AS '
- SELECT to_timestamp($1)::timestamp AS result
-' LANGUAGE 'SQL';
-
--- timestamp without time zone (i.e. 1973-11-29 21:33:09)
-CREATE OR REPLACE FUNCTION unix_timestamp(timestamp) RETURNS bigint AS '
- SELECT EXTRACT(EPOCH FROM $1)::bigint AS result;
-' LANGUAGE 'SQL';
-
-
--- -----------------------------------------
--- set dbversion
--- -----------------------------------------
-
-CREATE OR REPLACE FUNCTION updatedbversion(version_i TEXT) RETURNS void AS $$
-BEGIN
- IF EXISTS( SELECT * FROM icinga_dbversion WHERE name='idoutils')
- THEN
- UPDATE icinga_dbversion
- SET version=version_i WHERE name='idoutils';
- ELSE
- INSERT INTO icinga_dbversion (dbversion_id, name, version) VALUES ('1', 'idoutils', version_i);
- END IF;
-
- RETURN;
-END;
-$$ LANGUAGE plpgsql;
--- HINT: su - postgres; createlang plpgsql icinga;
-
-
-
---
--- Database: icinga
---
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_acknowledgements
---
-
-CREATE TABLE icinga_acknowledgements (
- acknowledgement_id bigserial,
- instance_id bigint default 0,
- entry_time timestamp default '1970-01-01 00:00:00',
- entry_time_usec INTEGER default 0,
- acknowledgement_type INTEGER default 0,
- object_id bigint default 0,
- state INTEGER default 0,
- author_name TEXT default '',
- comment_data TEXT default '',
- is_sticky INTEGER default 0,
- persistent_comment INTEGER default 0,
- notify_contacts INTEGER default 0,
- CONSTRAINT PK_acknowledgement_id PRIMARY KEY (acknowledgement_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_commands
---
-
-CREATE TABLE icinga_commands (
- command_id bigserial,
- instance_id bigint default 0,
- config_type INTEGER default 0,
- object_id bigint default 0,
- command_line TEXT default '',
- CONSTRAINT PK_command_id PRIMARY KEY (command_id) ,
- CONSTRAINT UQ_commands UNIQUE (instance_id,object_id,config_type)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_commenthistory
---
-
-CREATE TABLE icinga_commenthistory (
- commenthistory_id bigserial,
- instance_id bigint default 0,
- entry_time timestamp default '1970-01-01 00:00:00',
- entry_time_usec INTEGER default 0,
- comment_type INTEGER default 0,
- entry_type INTEGER default 0,
- object_id bigint default 0,
- comment_time timestamp default '1970-01-01 00:00:00',
- internal_comment_id bigint default 0,
- author_name TEXT default '',
- comment_data TEXT default '',
- is_persistent INTEGER default 0,
- comment_source INTEGER default 0,
- expires INTEGER default 0,
- expiration_time timestamp default '1970-01-01 00:00:00',
- deletion_time timestamp default '1970-01-01 00:00:00',
- deletion_time_usec INTEGER default 0,
- CONSTRAINT PK_commenthistory_id PRIMARY KEY (commenthistory_id) ,
- CONSTRAINT UQ_commenthistory UNIQUE (instance_id,comment_time,internal_comment_id)
-);
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_comments
---
-
-CREATE TABLE icinga_comments (
- comment_id bigserial,
- instance_id bigint default 0,
- entry_time timestamp default '1970-01-01 00:00:00',
- entry_time_usec INTEGER default 0,
- comment_type INTEGER default 0,
- entry_type INTEGER default 0,
- object_id bigint default 0,
- comment_time timestamp default '1970-01-01 00:00:00',
- internal_comment_id bigint default 0,
- author_name TEXT default '',
- comment_data TEXT default '',
- is_persistent INTEGER default 0,
- comment_source INTEGER default 0,
- expires INTEGER default 0,
- expiration_time timestamp default '1970-01-01 00:00:00',
- CONSTRAINT PK_comment_id PRIMARY KEY (comment_id) ,
- CONSTRAINT UQ_comments UNIQUE (instance_id,comment_time,internal_comment_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_configfiles
---
-
-CREATE TABLE icinga_configfiles (
- configfile_id bigserial,
- instance_id bigint default 0,
- configfile_type INTEGER default 0,
- configfile_path TEXT default '',
- CONSTRAINT PK_configfile_id PRIMARY KEY (configfile_id) ,
- CONSTRAINT UQ_configfiles UNIQUE (instance_id,configfile_type,configfile_path)
-);
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_configfilevariables
---
-
-CREATE TABLE icinga_configfilevariables (
- configfilevariable_id bigserial,
- instance_id bigint default 0,
- configfile_id bigint default 0,
- varname TEXT default '',
- varvalue TEXT default '',
- CONSTRAINT PK_configfilevariable_id PRIMARY KEY (configfilevariable_id)
- --UNIQUE (instance_id,configfile_id)
- -- varname/varvalue are not unique!
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_conninfo
---
-
-CREATE TABLE icinga_conninfo (
- conninfo_id bigserial,
- instance_id bigint default 0,
- agent_name TEXT default '',
- agent_version TEXT default '',
- disposition TEXT default '',
- connect_source TEXT default '',
- connect_type TEXT default '',
- connect_time timestamp default '1970-01-01 00:00:00',
- disconnect_time timestamp default '1970-01-01 00:00:00',
- last_checkin_time timestamp default '1970-01-01 00:00:00',
- data_start_time timestamp default '1970-01-01 00:00:00',
- data_end_time timestamp default '1970-01-01 00:00:00',
- bytes_processed bigint default 0,
- lines_processed bigint default 0,
- entries_processed bigint default 0,
- CONSTRAINT PK_conninfo_id PRIMARY KEY (conninfo_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_contactgroups
---
-
-CREATE TABLE icinga_contactgroups (
- contactgroup_id bigserial,
- instance_id bigint default 0,
- config_type INTEGER default 0,
- contactgroup_object_id bigint default 0,
- alias TEXT default '',
- CONSTRAINT PK_contactgroup_id PRIMARY KEY (contactgroup_id) ,
- CONSTRAINT UQ_contactgroups UNIQUE (instance_id,config_type,contactgroup_object_id)
-);
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_contactgroup_members
---
-
-CREATE TABLE icinga_contactgroup_members (
- contactgroup_member_id bigserial,
- instance_id bigint default 0,
- contactgroup_id bigint default 0,
- contact_object_id bigint default 0,
- CONSTRAINT PK_contactgroup_member_id PRIMARY KEY (contactgroup_member_id) ,
- CONSTRAINT UQ_contactgroup_members UNIQUE (contactgroup_id,contact_object_id)
-);
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_contactnotificationmethods
---
-
-CREATE TABLE icinga_contactnotificationmethods (
- contactnotificationmethod_id bigserial,
- instance_id bigint default 0,
- contactnotification_id bigint default 0,
- start_time timestamp default '1970-01-01 00:00:00',
- start_time_usec INTEGER default 0,
- end_time timestamp default '1970-01-01 00:00:00',
- end_time_usec INTEGER default 0,
- command_object_id bigint default 0,
- command_args TEXT default '',
- CONSTRAINT PK_contactnotificationmethod_id PRIMARY KEY (contactnotificationmethod_id) ,
- CONSTRAINT UQ_contactnotificationmethods UNIQUE (instance_id,contactnotification_id,start_time,start_time_usec)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_contactnotifications
---
-
-CREATE TABLE icinga_contactnotifications (
- contactnotification_id bigserial,
- instance_id bigint default 0,
- notification_id bigint default 0,
- contact_object_id bigint default 0,
- start_time timestamp default '1970-01-01 00:00:00',
- start_time_usec INTEGER default 0,
- end_time timestamp default '1970-01-01 00:00:00',
- end_time_usec INTEGER default 0,
- CONSTRAINT PK_contactnotification_id PRIMARY KEY (contactnotification_id) ,
- CONSTRAINT UQ_contactnotifications UNIQUE (instance_id,contact_object_id,start_time,start_time_usec)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_contacts
---
-
-CREATE TABLE icinga_contacts (
- contact_id bigserial,
- instance_id bigint default 0,
- config_type INTEGER default 0,
- contact_object_id bigint default 0,
- alias TEXT default '',
- email_address TEXT default '',
- pager_address TEXT default '',
- host_timeperiod_object_id bigint default 0,
- service_timeperiod_object_id bigint default 0,
- host_notifications_enabled INTEGER default 0,
- service_notifications_enabled INTEGER default 0,
- can_submit_commands INTEGER default 0,
- notify_service_recovery INTEGER default 0,
- notify_service_warning INTEGER default 0,
- notify_service_unknown INTEGER default 0,
- notify_service_critical INTEGER default 0,
- notify_service_flapping INTEGER default 0,
- notify_service_downtime INTEGER default 0,
- notify_host_recovery INTEGER default 0,
- notify_host_down INTEGER default 0,
- notify_host_unreachable INTEGER default 0,
- notify_host_flapping INTEGER default 0,
- notify_host_downtime INTEGER default 0,
- CONSTRAINT PK_contact_id PRIMARY KEY (contact_id) ,
- CONSTRAINT UQ_contacts UNIQUE (instance_id,config_type,contact_object_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_contactstatus
---
-
-CREATE TABLE icinga_contactstatus (
- contactstatus_id bigserial,
- instance_id bigint default 0,
- contact_object_id bigint default 0,
- status_update_time timestamp default '1970-01-01 00:00:00',
- host_notifications_enabled INTEGER default 0,
- service_notifications_enabled INTEGER default 0,
- last_host_notification timestamp default '1970-01-01 00:00:00',
- last_service_notification timestamp default '1970-01-01 00:00:00',
- modified_attributes INTEGER default 0,
- modified_host_attributes INTEGER default 0,
- modified_service_attributes INTEGER default 0,
- CONSTRAINT PK_contactstatus_id PRIMARY KEY (contactstatus_id) ,
- CONSTRAINT UQ_contactstatus UNIQUE (contact_object_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_contact_addresses
---
-
-CREATE TABLE icinga_contact_addresses (
- contact_address_id bigserial,
- instance_id bigint default 0,
- contact_id bigint default 0,
- address_number INTEGER default 0,
- address TEXT default '',
- CONSTRAINT PK_contact_address_id PRIMARY KEY (contact_address_id) ,
- CONSTRAINT UQ_contact_addresses UNIQUE (contact_id,address_number)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_contact_notificationcommands
---
-
-CREATE TABLE icinga_contact_notificationcommands (
- contact_notificationcommand_id bigserial,
- instance_id bigint default 0,
- contact_id bigint default 0,
- notification_type INTEGER default 0,
- command_object_id bigint default 0,
- command_args TEXT default '',
- CONSTRAINT PK_contact_notificationcommand_id PRIMARY KEY (contact_notificationcommand_id) ,
- CONSTRAINT UQ_contact_notificationcommands UNIQUE (contact_id,notification_type,command_object_id,command_args)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_customvariables
---
-
-CREATE TABLE icinga_customvariables (
- customvariable_id bigserial,
- instance_id bigint default 0,
- object_id bigint default 0,
- config_type INTEGER default 0,
- has_been_modified INTEGER default 0,
- varname TEXT default '',
- varvalue TEXT default '',
- CONSTRAINT PK_customvariable_id PRIMARY KEY (customvariable_id) ,
- CONSTRAINT UQ_customvariables UNIQUE (object_id,config_type,varname)
-) ;
-CREATE INDEX icinga_customvariables_i ON icinga_customvariables(varname);
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_customvariablestatus
---
-
-CREATE TABLE icinga_customvariablestatus (
- customvariablestatus_id bigserial,
- instance_id bigint default 0,
- object_id bigint default 0,
- status_update_time timestamp default '1970-01-01 00:00:00',
- has_been_modified INTEGER default 0,
- varname TEXT default '',
- varvalue TEXT default '',
- CONSTRAINT PK_customvariablestatus_id PRIMARY KEY (customvariablestatus_id) ,
- CONSTRAINT UQ_customvariablestatus UNIQUE (object_id,varname)
-) ;
-CREATE INDEX icinga_customvariablestatus_i ON icinga_customvariablestatus(varname);
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_dbversion
---
-
-CREATE TABLE icinga_dbversion (
- dbversion_id bigserial,
- name TEXT default '',
- version TEXT default '',
- CONSTRAINT PK_dbversion_id PRIMARY KEY (dbversion_id) ,
- CONSTRAINT UQ_dbversion UNIQUE (name)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_downtimehistory
---
-
-CREATE TABLE icinga_downtimehistory (
- downtimehistory_id bigserial,
- instance_id bigint default 0,
- downtime_type INTEGER default 0,
- object_id bigint default 0,
- entry_time timestamp default '1970-01-01 00:00:00',
- author_name TEXT default '',
- comment_data TEXT default '',
- internal_downtime_id bigint default 0,
- triggered_by_id bigint default 0,
- is_fixed INTEGER default 0,
- duration INTEGER default 0,
- scheduled_start_time timestamp default '1970-01-01 00:00:00',
- scheduled_end_time timestamp default '1970-01-01 00:00:00',
- was_started INTEGER default 0,
- actual_start_time timestamp default '1970-01-01 00:00:00',
- actual_start_time_usec INTEGER default 0,
- actual_end_time timestamp default '1970-01-01 00:00:00',
- actual_end_time_usec INTEGER default 0,
- was_cancelled INTEGER default 0,
- CONSTRAINT PK_downtimehistory_id PRIMARY KEY (downtimehistory_id) ,
- CONSTRAINT UQ_downtimehistory UNIQUE (instance_id,object_id,entry_time,internal_downtime_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_eventhandlers
---
-
-CREATE TABLE icinga_eventhandlers (
- eventhandler_id bigserial,
- instance_id bigint default 0,
- eventhandler_type INTEGER default 0,
- object_id bigint default 0,
- state INTEGER default 0,
- state_type INTEGER default 0,
- start_time timestamp default '1970-01-01 00:00:00',
- start_time_usec INTEGER default 0,
- end_time timestamp default '1970-01-01 00:00:00',
- end_time_usec INTEGER default 0,
- command_object_id bigint default 0,
- command_args TEXT default '',
- command_line TEXT default '',
- timeout INTEGER default 0,
- early_timeout INTEGER default 0,
- execution_time double precision default 0,
- return_code INTEGER default 0,
- output TEXT default '',
- long_output TEXT default '',
- CONSTRAINT PK_eventhandler_id PRIMARY KEY (eventhandler_id) ,
- CONSTRAINT UQ_eventhandlers UNIQUE (instance_id,object_id,start_time,start_time_usec)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_externalcommands
---
-
-CREATE TABLE icinga_externalcommands (
- externalcommand_id bigserial,
- instance_id bigint default 0,
- entry_time timestamp default '1970-01-01 00:00:00',
- command_type INTEGER default 0,
- command_name TEXT default '',
- command_args TEXT default '',
- CONSTRAINT PK_externalcommand_id PRIMARY KEY (externalcommand_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_flappinghistory
---
-
-CREATE TABLE icinga_flappinghistory (
- flappinghistory_id bigserial,
- instance_id bigint default 0,
- event_time timestamp default '1970-01-01 00:00:00',
- event_time_usec INTEGER default 0,
- event_type INTEGER default 0,
- reason_type INTEGER default 0,
- flapping_type INTEGER default 0,
- object_id bigint default 0,
- percent_state_change double precision default 0,
- low_threshold double precision default 0,
- high_threshold double precision default 0,
- comment_time timestamp default '1970-01-01 00:00:00',
- internal_comment_id bigint default 0,
- CONSTRAINT PK_flappinghistory_id PRIMARY KEY (flappinghistory_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_hostchecks
---
-
-CREATE TABLE icinga_hostchecks (
- hostcheck_id bigserial,
- instance_id bigint default 0,
- host_object_id bigint default 0,
- check_type INTEGER default 0,
- is_raw_check INTEGER default 0,
- current_check_attempt INTEGER default 0,
- max_check_attempts INTEGER default 0,
- state INTEGER default 0,
- state_type INTEGER default 0,
- start_time timestamp default '1970-01-01 00:00:00',
- start_time_usec INTEGER default 0,
- end_time timestamp default '1970-01-01 00:00:00',
- end_time_usec INTEGER default 0,
- command_object_id bigint default 0,
- command_args TEXT default '',
- command_line TEXT default '',
- timeout INTEGER default 0,
- early_timeout INTEGER default 0,
- execution_time double precision default 0,
- latency double precision default 0,
- return_code INTEGER default 0,
- output TEXT default '',
- long_output TEXT default '',
- perfdata TEXT default '',
- CONSTRAINT PK_hostcheck_id PRIMARY KEY (hostcheck_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_hostdependencies
---
-
-CREATE TABLE icinga_hostdependencies (
- hostdependency_id bigserial,
- instance_id bigint default 0,
- config_type INTEGER default 0,
- host_object_id bigint default 0,
- dependent_host_object_id bigint default 0,
- dependency_type INTEGER default 0,
- inherits_parent INTEGER default 0,
- timeperiod_object_id bigint default 0,
- fail_on_up INTEGER default 0,
- fail_on_down INTEGER default 0,
- fail_on_unreachable INTEGER default 0,
- CONSTRAINT PK_hostdependency_id PRIMARY KEY (hostdependency_id) ,
- CONSTRAINT UQ_hostdependencies UNIQUE (instance_id,config_type,host_object_id,dependent_host_object_id,dependency_type,inherits_parent,fail_on_up,fail_on_down,fail_on_unreachable)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_hostescalations
---
-
-CREATE TABLE icinga_hostescalations (
- hostescalation_id bigserial,
- instance_id bigint default 0,
- config_type INTEGER default 0,
- host_object_id bigint default 0,
- timeperiod_object_id bigint default 0,
- first_notification INTEGER default 0,
- last_notification INTEGER default 0,
- notification_interval double precision default 0,
- escalate_on_recovery INTEGER default 0,
- escalate_on_down INTEGER default 0,
- escalate_on_unreachable INTEGER default 0,
- CONSTRAINT PK_hostescalation_id PRIMARY KEY (hostescalation_id) ,
- CONSTRAINT UQ_hostescalations UNIQUE (instance_id,config_type,host_object_id,timeperiod_object_id,first_notification,last_notification)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_hostescalation_contactgroups
---
-
-CREATE TABLE icinga_hostescalation_contactgroups (
- hostescalation_contactgroup_id bigserial,
- instance_id bigint default 0,
- hostescalation_id bigint default 0,
- contactgroup_object_id bigint default 0,
- CONSTRAINT PK_hostescalation_contactgroup_id PRIMARY KEY (hostescalation_contactgroup_id) ,
- CONSTRAINT UQ_hostescalation_contactgroups UNIQUE (hostescalation_id,contactgroup_object_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_hostescalation_contacts
---
-
-CREATE TABLE icinga_hostescalation_contacts (
- hostescalation_contact_id bigserial,
- instance_id bigint default 0,
- hostescalation_id bigint default 0,
- contact_object_id bigint default 0,
- CONSTRAINT PK_hostescalation_contact_id PRIMARY KEY (hostescalation_contact_id) ,
- CONSTRAINT UQ_hostescalation_contacts UNIQUE (instance_id,hostescalation_id,contact_object_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_hostgroups
---
-
-CREATE TABLE icinga_hostgroups (
- hostgroup_id bigserial,
- instance_id bigint default 0,
- config_type INTEGER default 0,
- hostgroup_object_id bigint default 0,
- alias TEXT default '',
- CONSTRAINT PK_hostgroup_id PRIMARY KEY (hostgroup_id) ,
- CONSTRAINT UQ_hostgroups UNIQUE (instance_id,hostgroup_object_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_hostgroup_members
---
-
-CREATE TABLE icinga_hostgroup_members (
- hostgroup_member_id bigserial,
- instance_id bigint default 0,
- hostgroup_id bigint default 0,
- host_object_id bigint default 0,
- CONSTRAINT PK_hostgroup_member_id PRIMARY KEY (hostgroup_member_id) ,
- CONSTRAINT UQ_hostgroup_members UNIQUE (hostgroup_id,host_object_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_hosts
---
-
-CREATE TABLE icinga_hosts (
- host_id bigserial,
- instance_id bigint default 0,
- config_type INTEGER default 0,
- host_object_id bigint default 0,
- alias TEXT default '',
- display_name TEXT default '',
- address TEXT default '',
- address6 TEXT default '',
- check_command_object_id bigint default 0,
- check_command_args TEXT default '',
- eventhandler_command_object_id bigint default 0,
- eventhandler_command_args TEXT default '',
- notification_timeperiod_object_id bigint default 0,
- check_timeperiod_object_id bigint default 0,
- failure_prediction_options TEXT default '',
- check_interval double precision default 0,
- retry_interval double precision default 0,
- max_check_attempts INTEGER default 0,
- first_notification_delay double precision default 0,
- notification_interval double precision default 0,
- notify_on_down INTEGER default 0,
- notify_on_unreachable INTEGER default 0,
- notify_on_recovery INTEGER default 0,
- notify_on_flapping INTEGER default 0,
- notify_on_downtime INTEGER default 0,
- stalk_on_up INTEGER default 0,
- stalk_on_down INTEGER default 0,
- stalk_on_unreachable INTEGER default 0,
- flap_detection_enabled INTEGER default 0,
- flap_detection_on_up INTEGER default 0,
- flap_detection_on_down INTEGER default 0,
- flap_detection_on_unreachable INTEGER default 0,
- low_flap_threshold double precision default 0,
- high_flap_threshold double precision default 0,
- process_performance_data INTEGER default 0,
- freshness_checks_enabled INTEGER default 0,
- freshness_threshold INTEGER default 0,
- passive_checks_enabled INTEGER default 0,
- event_handler_enabled INTEGER default 0,
- active_checks_enabled INTEGER default 0,
- retain_status_information INTEGER default 0,
- retain_nonstatus_information INTEGER default 0,
- notifications_enabled INTEGER default 0,
- obsess_over_host INTEGER default 0,
- failure_prediction_enabled INTEGER default 0,
- notes TEXT default '',
- notes_url TEXT default '',
- action_url TEXT default '',
- icon_image TEXT default '',
- icon_image_alt TEXT default '',
- vrml_image TEXT default '',
- statusmap_image TEXT default '',
- have_2d_coords INTEGER default 0,
- x_2d INTEGER default 0,
- y_2d INTEGER default 0,
- have_3d_coords INTEGER default 0,
- x_3d double precision default 0,
- y_3d double precision default 0,
- z_3d double precision default 0,
- CONSTRAINT PK_host_id PRIMARY KEY (host_id) ,
- CONSTRAINT UQ_hosts UNIQUE (instance_id,config_type,host_object_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_hoststatus
---
-
-CREATE TABLE icinga_hoststatus (
- hoststatus_id bigserial,
- instance_id bigint default 0,
- host_object_id bigint default 0,
- status_update_time timestamp default '1970-01-01 00:00:00',
- output TEXT default '',
- long_output TEXT default '',
- perfdata TEXT default '',
- current_state INTEGER default 0,
- has_been_checked INTEGER default 0,
- should_be_scheduled INTEGER default 0,
- current_check_attempt INTEGER default 0,
- max_check_attempts INTEGER default 0,
- last_check timestamp default '1970-01-01 00:00:00',
- next_check timestamp default '1970-01-01 00:00:00',
- check_type INTEGER default 0,
- last_state_change timestamp default '1970-01-01 00:00:00',
- last_hard_state_change timestamp default '1970-01-01 00:00:00',
- last_hard_state INTEGER default 0,
- last_time_up timestamp default '1970-01-01 00:00:00',
- last_time_down timestamp default '1970-01-01 00:00:00',
- last_time_unreachable timestamp default '1970-01-01 00:00:00',
- state_type INTEGER default 0,
- last_notification timestamp default '1970-01-01 00:00:00',
- next_notification timestamp default '1970-01-01 00:00:00',
- no_more_notifications INTEGER default 0,
- notifications_enabled INTEGER default 0,
- problem_has_been_acknowledged INTEGER default 0,
- acknowledgement_type INTEGER default 0,
- current_notification_number INTEGER default 0,
- passive_checks_enabled INTEGER default 0,
- active_checks_enabled INTEGER default 0,
- event_handler_enabled INTEGER default 0,
- flap_detection_enabled INTEGER default 0,
- is_flapping INTEGER default 0,
- percent_state_change double precision default 0,
- latency double precision default 0,
- execution_time double precision default 0,
- scheduled_downtime_depth INTEGER default 0,
- failure_prediction_enabled INTEGER default 0,
- process_performance_data INTEGER default 0,
- obsess_over_host INTEGER default 0,
- modified_host_attributes INTEGER default 0,
- event_handler TEXT default '',
- check_command TEXT default '',
- normal_check_interval double precision default 0,
- retry_check_interval double precision default 0,
- check_timeperiod_object_id bigint default 0,
- CONSTRAINT PK_hoststatus_id PRIMARY KEY (hoststatus_id) ,
- CONSTRAINT UQ_hoststatus UNIQUE (host_object_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_host_contactgroups
---
-
-CREATE TABLE icinga_host_contactgroups (
- host_contactgroup_id bigserial,
- instance_id bigint default 0,
- host_id bigint default 0,
- contactgroup_object_id bigint default 0,
- CONSTRAINT PK_host_contactgroup_id PRIMARY KEY (host_contactgroup_id) ,
- CONSTRAINT UQ_host_contactgroups UNIQUE (host_id,contactgroup_object_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_host_contacts
---
-
-CREATE TABLE icinga_host_contacts (
- host_contact_id bigserial,
- instance_id bigint default 0,
- host_id bigint default 0,
- contact_object_id bigint default 0,
- CONSTRAINT PK_host_contact_id PRIMARY KEY (host_contact_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_host_parenthosts
---
-
-CREATE TABLE icinga_host_parenthosts (
- host_parenthost_id bigserial,
- instance_id bigint default 0,
- host_id bigint default 0,
- parent_host_object_id bigint default 0,
- CONSTRAINT PK_host_parenthost_id PRIMARY KEY (host_parenthost_id) ,
- CONSTRAINT UQ_host_parenthosts UNIQUE (host_id,parent_host_object_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_instances
---
-
-CREATE TABLE icinga_instances (
- instance_id bigserial,
- instance_name TEXT default '',
- instance_description TEXT default '',
- CONSTRAINT PK_instance_id PRIMARY KEY (instance_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_logentries
---
-
-CREATE TABLE icinga_logentries (
- logentry_id bigserial,
- instance_id bigint default 0,
- logentry_time timestamp default '1970-01-01 00:00:00',
- entry_time timestamp default '1970-01-01 00:00:00',
- entry_time_usec INTEGER default 0,
- logentry_type INTEGER default 0,
- logentry_data TEXT default '',
- realtime_data INTEGER default 0,
- inferred_data_extracted INTEGER default 0,
- CONSTRAINT PK_logentry_id PRIMARY KEY (logentry_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_notifications
---
-
-CREATE TABLE icinga_notifications (
- notification_id bigserial,
- instance_id bigint default 0,
- notification_type INTEGER default 0,
- notification_reason INTEGER default 0,
- object_id bigint default 0,
- start_time timestamp default '1970-01-01 00:00:00',
- start_time_usec INTEGER default 0,
- end_time timestamp default '1970-01-01 00:00:00',
- end_time_usec INTEGER default 0,
- state INTEGER default 0,
- output TEXT default '',
- long_output TEXT default '',
- escalated INTEGER default 0,
- contacts_notified INTEGER default 0,
- CONSTRAINT PK_notification_id PRIMARY KEY (notification_id) ,
- CONSTRAINT UQ_notifications UNIQUE (instance_id,object_id,start_time,start_time_usec)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_objects
---
-
-CREATE TABLE icinga_objects (
- object_id bigserial,
- instance_id bigint default 0,
- objecttype_id bigint default 0,
- name1 TEXT,
- name2 TEXT,
- is_active INTEGER default 0,
- CONSTRAINT PK_object_id PRIMARY KEY (object_id)
--- UNIQUE (objecttype_id,name1,name2)
-) ;
-CREATE INDEX icinga_objects_i ON icinga_objects(objecttype_id,name1,name2);
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_processevents
---
-
-CREATE TABLE icinga_processevents (
- processevent_id bigserial,
- instance_id bigint default 0,
- event_type INTEGER default 0,
- event_time timestamp default '1970-01-01 00:00:00',
- event_time_usec INTEGER default 0,
- process_id bigint default 0,
- program_name TEXT default '',
- program_version TEXT default '',
- program_date TEXT default '',
- CONSTRAINT PK_processevent_id PRIMARY KEY (processevent_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_programstatus
---
-
-CREATE TABLE icinga_programstatus (
- programstatus_id bigserial,
- instance_id bigint default 0,
- status_update_time timestamp default '1970-01-01 00:00:00',
- program_start_time timestamp default '1970-01-01 00:00:00',
- program_end_time timestamp default '1970-01-01 00:00:00',
- is_currently_running INTEGER default 0,
- process_id bigint default 0,
- daemon_mode INTEGER default 0,
- last_command_check timestamp default '1970-01-01 00:00:00',
- last_log_rotation timestamp default '1970-01-01 00:00:00',
- notifications_enabled INTEGER default 0,
- active_service_checks_enabled INTEGER default 0,
- passive_service_checks_enabled INTEGER default 0,
- active_host_checks_enabled INTEGER default 0,
- passive_host_checks_enabled INTEGER default 0,
- event_handlers_enabled INTEGER default 0,
- flap_detection_enabled INTEGER default 0,
- failure_prediction_enabled INTEGER default 0,
- process_performance_data INTEGER default 0,
- obsess_over_hosts INTEGER default 0,
- obsess_over_services INTEGER default 0,
- modified_host_attributes INTEGER default 0,
- modified_service_attributes INTEGER default 0,
- global_host_event_handler TEXT default '',
- global_service_event_handler TEXT default '',
- CONSTRAINT PK_programstatus_id PRIMARY KEY (programstatus_id) ,
- CONSTRAINT UQ_programstatus UNIQUE (instance_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_runtimevariables
---
-
-CREATE TABLE icinga_runtimevariables (
- runtimevariable_id bigserial,
- instance_id bigint default 0,
- varname TEXT default '',
- varvalue TEXT default '',
- CONSTRAINT PK_runtimevariable_id PRIMARY KEY (runtimevariable_id) ,
- CONSTRAINT UQ_runtimevariables UNIQUE (instance_id,varname)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_scheduleddowntime
---
-
-CREATE TABLE icinga_scheduleddowntime (
- scheduleddowntime_id bigserial,
- instance_id bigint default 0,
- downtime_type INTEGER default 0,
- object_id bigint default 0,
- entry_time timestamp default '1970-01-01 00:00:00',
- author_name TEXT default '',
- comment_data TEXT default '',
- internal_downtime_id bigint default 0,
- triggered_by_id bigint default 0,
- is_fixed INTEGER default 0,
- duration INTEGER default 0,
- scheduled_start_time timestamp default '1970-01-01 00:00:00',
- scheduled_end_time timestamp default '1970-01-01 00:00:00',
- was_started INTEGER default 0,
- actual_start_time timestamp default '1970-01-01 00:00:00',
- actual_start_time_usec INTEGER default 0,
- CONSTRAINT PK_scheduleddowntime_id PRIMARY KEY (scheduleddowntime_id) ,
- CONSTRAINT UQ_scheduleddowntime UNIQUE (instance_id,object_id,entry_time,internal_downtime_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_servicechecks
---
-
-CREATE TABLE icinga_servicechecks (
- servicecheck_id bigserial,
- instance_id bigint default 0,
- service_object_id bigint default 0,
- check_type INTEGER default 0,
- current_check_attempt INTEGER default 0,
- max_check_attempts INTEGER default 0,
- state INTEGER default 0,
- state_type INTEGER default 0,
- start_time timestamp default '1970-01-01 00:00:00',
- start_time_usec INTEGER default 0,
- end_time timestamp default '1970-01-01 00:00:00',
- end_time_usec INTEGER default 0,
- command_object_id bigint default 0,
- command_args TEXT default '',
- command_line TEXT default '',
- timeout INTEGER default 0,
- early_timeout INTEGER default 0,
- execution_time double precision default 0,
- latency double precision default 0,
- return_code INTEGER default 0,
- output TEXT default '',
- long_output TEXT default '',
- perfdata TEXT default '',
- CONSTRAINT PK_servicecheck_id PRIMARY KEY (servicecheck_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_servicedependencies
---
-
-CREATE TABLE icinga_servicedependencies (
- servicedependency_id bigserial,
- instance_id bigint default 0,
- config_type INTEGER default 0,
- service_object_id bigint default 0,
- dependent_service_object_id bigint default 0,
- dependency_type INTEGER default 0,
- inherits_parent INTEGER default 0,
- timeperiod_object_id bigint default 0,
- fail_on_ok INTEGER default 0,
- fail_on_warning INTEGER default 0,
- fail_on_unknown INTEGER default 0,
- fail_on_critical INTEGER default 0,
- CONSTRAINT PK_servicedependency_id PRIMARY KEY (servicedependency_id) ,
- CONSTRAINT UQ_servicedependencies UNIQUE (instance_id,config_type,service_object_id,dependent_service_object_id,dependency_type,inherits_parent,fail_on_ok,fail_on_warning,fail_on_unknown,fail_on_critical)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_serviceescalations
---
-
-CREATE TABLE icinga_serviceescalations (
- serviceescalation_id bigserial,
- instance_id bigint default 0,
- config_type INTEGER default 0,
- service_object_id bigint default 0,
- timeperiod_object_id bigint default 0,
- first_notification INTEGER default 0,
- last_notification INTEGER default 0,
- notification_interval double precision default 0,
- escalate_on_recovery INTEGER default 0,
- escalate_on_warning INTEGER default 0,
- escalate_on_unknown INTEGER default 0,
- escalate_on_critical INTEGER default 0,
- CONSTRAINT PK_serviceescalation_id PRIMARY KEY (serviceescalation_id) ,
- CONSTRAINT UQ_serviceescalations UNIQUE (instance_id,config_type,service_object_id,timeperiod_object_id,first_notification,last_notification)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_serviceescalation_contactgroups
---
-
-CREATE TABLE icinga_serviceescalation_contactgroups (
- serviceescalation_contactgroup_id bigserial,
- instance_id bigint default 0,
- serviceescalation_id bigint default 0,
- contactgroup_object_id bigint default 0,
- CONSTRAINT PK_serviceescalation_contactgroup_id PRIMARY KEY (serviceescalation_contactgroup_id) ,
- CONSTRAINT UQ_serviceescalation_contactgro UNIQUE (serviceescalation_id,contactgroup_object_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_serviceescalation_contacts
---
-
-CREATE TABLE icinga_serviceescalation_contacts (
- serviceescalation_contact_id bigserial,
- instance_id bigint default 0,
- serviceescalation_id bigint default 0,
- contact_object_id bigint default 0,
- CONSTRAINT PK_serviceescalation_contact_id PRIMARY KEY (serviceescalation_contact_id) ,
- CONSTRAINT UQ_serviceescalation_contacts UNIQUE (instance_id,serviceescalation_id,contact_object_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_servicegroups
---
-
-CREATE TABLE icinga_servicegroups (
- servicegroup_id bigserial,
- instance_id bigint default 0,
- config_type INTEGER default 0,
- servicegroup_object_id bigint default 0,
- alias TEXT default '',
- CONSTRAINT PK_servicegroup_id PRIMARY KEY (servicegroup_id) ,
- CONSTRAINT UQ_servicegroups UNIQUE (instance_id,config_type,servicegroup_object_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_servicegroup_members
---
-
-CREATE TABLE icinga_servicegroup_members (
- servicegroup_member_id bigserial,
- instance_id bigint default 0,
- servicegroup_id bigint default 0,
- service_object_id bigint default 0,
- CONSTRAINT PK_servicegroup_member_id PRIMARY KEY (servicegroup_member_id) ,
- CONSTRAINT UQ_servicegroup_members UNIQUE (servicegroup_id,service_object_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_services
---
-
-CREATE TABLE icinga_services (
- service_id bigserial,
- instance_id bigint default 0,
- config_type INTEGER default 0,
- host_object_id bigint default 0,
- service_object_id bigint default 0,
- display_name TEXT default '',
- check_command_object_id bigint default 0,
- check_command_args TEXT default '',
- eventhandler_command_object_id bigint default 0,
- eventhandler_command_args TEXT default '',
- notification_timeperiod_object_id bigint default 0,
- check_timeperiod_object_id bigint default 0,
- failure_prediction_options TEXT default '',
- check_interval double precision default 0,
- retry_interval double precision default 0,
- max_check_attempts INTEGER default 0,
- first_notification_delay double precision default 0,
- notification_interval double precision default 0,
- notify_on_warning INTEGER default 0,
- notify_on_unknown INTEGER default 0,
- notify_on_critical INTEGER default 0,
- notify_on_recovery INTEGER default 0,
- notify_on_flapping INTEGER default 0,
- notify_on_downtime INTEGER default 0,
- stalk_on_ok INTEGER default 0,
- stalk_on_warning INTEGER default 0,
- stalk_on_unknown INTEGER default 0,
- stalk_on_critical INTEGER default 0,
- is_volatile INTEGER default 0,
- flap_detection_enabled INTEGER default 0,
- flap_detection_on_ok INTEGER default 0,
- flap_detection_on_warning INTEGER default 0,
- flap_detection_on_unknown INTEGER default 0,
- flap_detection_on_critical INTEGER default 0,
- low_flap_threshold double precision default 0,
- high_flap_threshold double precision default 0,
- process_performance_data INTEGER default 0,
- freshness_checks_enabled INTEGER default 0,
- freshness_threshold INTEGER default 0,
- passive_checks_enabled INTEGER default 0,
- event_handler_enabled INTEGER default 0,
- active_checks_enabled INTEGER default 0,
- retain_status_information INTEGER default 0,
- retain_nonstatus_information INTEGER default 0,
- notifications_enabled INTEGER default 0,
- obsess_over_service INTEGER default 0,
- failure_prediction_enabled INTEGER default 0,
- notes TEXT default '',
- notes_url TEXT default '',
- action_url TEXT default '',
- icon_image TEXT default '',
- icon_image_alt TEXT default '',
- CONSTRAINT PK_service_id PRIMARY KEY (service_id) ,
- CONSTRAINT UQ_services UNIQUE (instance_id,config_type,service_object_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_servicestatus
---
-
-CREATE TABLE icinga_servicestatus (
- servicestatus_id bigserial,
- instance_id bigint default 0,
- service_object_id bigint default 0,
- status_update_time timestamp default '1970-01-01 00:00:00',
- output TEXT default '',
- long_output TEXT default '',
- perfdata TEXT default '',
- current_state INTEGER default 0,
- has_been_checked INTEGER default 0,
- should_be_scheduled INTEGER default 0,
- current_check_attempt INTEGER default 0,
- max_check_attempts INTEGER default 0,
- last_check timestamp default '1970-01-01 00:00:00',
- next_check timestamp default '1970-01-01 00:00:00',
- check_type INTEGER default 0,
- last_state_change timestamp default '1970-01-01 00:00:00',
- last_hard_state_change timestamp default '1970-01-01 00:00:00',
- last_hard_state INTEGER default 0,
- last_time_ok timestamp default '1970-01-01 00:00:00',
- last_time_warning timestamp default '1970-01-01 00:00:00',
- last_time_unknown timestamp default '1970-01-01 00:00:00',
- last_time_critical timestamp default '1970-01-01 00:00:00',
- state_type INTEGER default 0,
- last_notification timestamp default '1970-01-01 00:00:00',
- next_notification timestamp default '1970-01-01 00:00:00',
- no_more_notifications INTEGER default 0,
- notifications_enabled INTEGER default 0,
- problem_has_been_acknowledged INTEGER default 0,
- acknowledgement_type INTEGER default 0,
- current_notification_number INTEGER default 0,
- passive_checks_enabled INTEGER default 0,
- active_checks_enabled INTEGER default 0,
- event_handler_enabled INTEGER default 0,
- flap_detection_enabled INTEGER default 0,
- is_flapping INTEGER default 0,
- percent_state_change double precision default 0,
- latency double precision default 0,
- execution_time double precision default 0,
- scheduled_downtime_depth INTEGER default 0,
- failure_prediction_enabled INTEGER default 0,
- process_performance_data INTEGER default 0,
- obsess_over_service INTEGER default 0,
- modified_service_attributes INTEGER default 0,
- event_handler TEXT default '',
- check_command TEXT default '',
- normal_check_interval double precision default 0,
- retry_check_interval double precision default 0,
- check_timeperiod_object_id bigint default 0,
- CONSTRAINT PK_servicestatus_id PRIMARY KEY (servicestatus_id) ,
- CONSTRAINT UQ_servicestatus UNIQUE (service_object_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_service_contactgroups
---
-
-CREATE TABLE icinga_service_contactgroups (
- service_contactgroup_id bigserial,
- instance_id bigint default 0,
- service_id bigint default 0,
- contactgroup_object_id bigint default 0,
- CONSTRAINT PK_service_contactgroup_id PRIMARY KEY (service_contactgroup_id) ,
- CONSTRAINT UQ_service_contactgroups UNIQUE (service_id,contactgroup_object_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_service_contacts
---
-
-CREATE TABLE icinga_service_contacts (
- service_contact_id bigserial,
- instance_id bigint default 0,
- service_id bigint default 0,
- contact_object_id bigint default 0,
- CONSTRAINT PK_service_contact_id PRIMARY KEY (service_contact_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_statehistory
---
-
-CREATE TABLE icinga_statehistory (
- statehistory_id bigserial,
- instance_id bigint default 0,
- state_time timestamp default '1970-01-01 00:00:00',
- state_time_usec INTEGER default 0,
- object_id bigint default 0,
- state_change INTEGER default 0,
- state INTEGER default 0,
- state_type INTEGER default 0,
- current_check_attempt INTEGER default 0,
- max_check_attempts INTEGER default 0,
- last_state INTEGER default '-1',
- last_hard_state INTEGER default '-1',
- output TEXT default '',
- long_output TEXT default '',
- CONSTRAINT PK_statehistory_id PRIMARY KEY (statehistory_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_systemcommands
---
-
-CREATE TABLE icinga_systemcommands (
- systemcommand_id bigserial,
- instance_id bigint default 0,
- start_time timestamp default '1970-01-01 00:00:00',
- start_time_usec INTEGER default 0,
- end_time timestamp default '1970-01-01 00:00:00',
- end_time_usec INTEGER default 0,
- command_line TEXT default '',
- timeout INTEGER default 0,
- early_timeout INTEGER default 0,
- execution_time double precision default 0,
- return_code INTEGER default 0,
- output TEXT default '',
- long_output TEXT default '',
- CONSTRAINT PK_systemcommand_id PRIMARY KEY (systemcommand_id) ,
- CONSTRAINT UQ_systemcommands UNIQUE (instance_id,start_time,start_time_usec)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_timedeventqueue
---
-
-CREATE TABLE icinga_timedeventqueue (
- timedeventqueue_id bigserial,
- instance_id bigint default 0,
- event_type INTEGER default 0,
- queued_time timestamp default '1970-01-01 00:00:00',
- queued_time_usec INTEGER default 0,
- scheduled_time timestamp default '1970-01-01 00:00:00',
- recurring_event INTEGER default 0,
- object_id bigint default 0,
- CONSTRAINT PK_timedeventqueue_id PRIMARY KEY (timedeventqueue_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_timedevents
---
-
-CREATE TABLE icinga_timedevents (
- timedevent_id bigserial,
- instance_id bigint default 0,
- event_type INTEGER default 0,
- queued_time timestamp default '1970-01-01 00:00:00',
- queued_time_usec INTEGER default 0,
- event_time timestamp default '1970-01-01 00:00:00',
- event_time_usec INTEGER default 0,
- scheduled_time timestamp default '1970-01-01 00:00:00',
- recurring_event INTEGER default 0,
- object_id bigint default 0,
- deletion_time timestamp default '1970-01-01 00:00:00',
- deletion_time_usec INTEGER default 0,
- CONSTRAINT PK_timedevent_id PRIMARY KEY (timedevent_id) ,
- CONSTRAINT UQ_timedevents UNIQUE (instance_id,event_type,scheduled_time,object_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_timeperiods
---
-
-CREATE TABLE icinga_timeperiods (
- timeperiod_id bigserial,
- instance_id bigint default 0,
- config_type INTEGER default 0,
- timeperiod_object_id bigint default 0,
- alias TEXT default '',
- CONSTRAINT PK_timeperiod_id PRIMARY KEY (timeperiod_id) ,
- CONSTRAINT UQ_timeperiods UNIQUE (instance_id,config_type,timeperiod_object_id)
-) ;
-
--- --------------------------------------------------------
-
---
--- Table structure for table icinga_timeperiod_timeranges
---
-
-CREATE TABLE icinga_timeperiod_timeranges (
- timeperiod_timerange_id bigserial,
- instance_id bigint default 0,
- timeperiod_id bigint default 0,
- day INTEGER default 0,
- start_sec INTEGER default 0,
- end_sec INTEGER default 0,
- CONSTRAINT PK_timeperiod_timerange_id PRIMARY KEY (timeperiod_timerange_id) ,
- CONSTRAINT UQ_timeperiod_timeranges UNIQUE (timeperiod_id,day,start_sec,end_sec)
-) ;
-
-
--- -----------------------------------------
--- add index (delete)
--- -----------------------------------------
-
--- for periodic delete
--- instance_id and
--- TIMEDEVENTS => scheduled_time
--- SYSTEMCOMMANDS, SERVICECHECKS, HOSTCHECKS, EVENTHANDLERS => start_time
--- EXTERNALCOMMANDS => entry_time
-
--- instance_id
-CREATE INDEX timedevents_i_id_idx on icinga_timedevents(instance_id);
-CREATE INDEX timedeventq_i_id_idx on icinga_timedeventqueue(instance_id);
-CREATE INDEX systemcommands_i_id_idx on icinga_systemcommands(instance_id);
-CREATE INDEX servicechecks_i_id_idx on icinga_servicechecks(instance_id);
-CREATE INDEX hostchecks_i_id_idx on icinga_hostchecks(instance_id);
-CREATE INDEX eventhandlers_i_id_idx on icinga_eventhandlers(instance_id);
-CREATE INDEX externalcommands_i_id_idx on icinga_externalcommands(instance_id);
-
--- time
-CREATE INDEX timedevents_time_id_idx on icinga_timedevents(scheduled_time);
-CREATE INDEX timedeventq_time_id_idx on icinga_timedeventqueue(scheduled_time);
-CREATE INDEX systemcommands_time_id_idx on icinga_systemcommands(start_time);
-CREATE INDEX servicechecks_time_id_idx on icinga_servicechecks(start_time);
-CREATE INDEX hostchecks_time_id_idx on icinga_hostchecks(start_time);
-CREATE INDEX eventhandlers_time_id_idx on icinga_eventhandlers(start_time);
-CREATE INDEX externalcommands_time_id_idx on icinga_externalcommands(entry_time);
-
-
--- for starting cleanup - referenced in dbhandler.c:882
--- instance_id only
-
--- realtime data
-CREATE INDEX programstatus_i_id_idx on icinga_programstatus(instance_id);
-CREATE INDEX hoststatus_i_id_idx on icinga_hoststatus(instance_id);
-CREATE INDEX servicestatus_i_id_idx on icinga_servicestatus(instance_id);
-CREATE INDEX contactstatus_i_id_idx on icinga_contactstatus(instance_id);
-CREATE INDEX timedeventqueue_i_id_idx on icinga_timedeventqueue(instance_id);
-CREATE INDEX comments_i_id_idx on icinga_comments(instance_id);
-CREATE INDEX scheduleddowntime_i_id_idx on icinga_scheduleddowntime(instance_id);
-CREATE INDEX runtimevariables_i_id_idx on icinga_runtimevariables(instance_id);
-CREATE INDEX customvariablestatus_i_id_idx on icinga_customvariablestatus(instance_id);
-
--- config data
-CREATE INDEX configfiles_i_id_idx on icinga_configfiles(instance_id);
-CREATE INDEX configfilevariables_i_id_idx on icinga_configfilevariables(instance_id);
-CREATE INDEX customvariables_i_id_idx on icinga_customvariables(instance_id);
-CREATE INDEX commands_i_id_idx on icinga_commands(instance_id);
-CREATE INDEX timeperiods_i_id_idx on icinga_timeperiods(instance_id);
-CREATE INDEX timeperiod_timeranges_i_id_idx on icinga_timeperiod_timeranges(instance_id);
-CREATE INDEX contactgroups_i_id_idx on icinga_contactgroups(instance_id);
-CREATE INDEX contactgroup_members_i_id_idx on icinga_contactgroup_members(instance_id);
-CREATE INDEX hostgroups_i_id_idx on icinga_hostgroups(instance_id);
-CREATE INDEX hostgroup_members_i_id_idx on icinga_hostgroup_members(instance_id);
-CREATE INDEX servicegroups_i_id_idx on icinga_servicegroups(instance_id);
-CREATE INDEX servicegroup_members_i_id_idx on icinga_servicegroup_members(instance_id);
-CREATE INDEX hostesc_i_id_idx on icinga_hostescalations(instance_id);
-CREATE INDEX hostesc_contacts_i_id_idx on icinga_hostescalation_contacts(instance_id);
-CREATE INDEX serviceesc_i_id_idx on icinga_serviceescalations(instance_id);
-CREATE INDEX serviceesc_contacts_i_id_idx on icinga_serviceescalation_contacts(instance_id);
-CREATE INDEX hostdependencies_i_id_idx on icinga_hostdependencies(instance_id);
-CREATE INDEX contacts_i_id_idx on icinga_contacts(instance_id);
-CREATE INDEX contact_addresses_i_id_idx on icinga_contact_addresses(instance_id);
-CREATE INDEX contact_notifcommands_i_id_idx on icinga_contact_notificationcommands(instance_id);
-CREATE INDEX hosts_i_id_idx on icinga_hosts(instance_id);
-CREATE INDEX host_parenthosts_i_id_idx on icinga_host_parenthosts(instance_id);
-CREATE INDEX host_contacts_i_id_idx on icinga_host_contacts(instance_id);
-CREATE INDEX services_i_id_idx on icinga_services(instance_id);
-CREATE INDEX service_contacts_i_id_idx on icinga_service_contacts(instance_id);
-CREATE INDEX service_contactgroups_i_id_idx on icinga_service_contactgroups(instance_id);
-CREATE INDEX host_contactgroups_i_id_idx on icinga_host_contactgroups(instance_id);
-CREATE INDEX hostesc_cgroups_i_id_idx on icinga_hostescalation_contactgroups(instance_id);
-CREATE INDEX serviceesc_cgroups_i_id_idx on icinga_serviceescalation_contactgroups(instance_id);
-
--- -----------------------------------------
--- more index stuff (WHERE clauses)
--- -----------------------------------------
-
--- hosts
-CREATE INDEX hosts_host_object_id_idx on icinga_hosts(host_object_id);
-
--- hoststatus
-CREATE INDEX hoststatus_stat_upd_time_idx on icinga_hoststatus(status_update_time);
-CREATE INDEX hoststatus_current_state_idx on icinga_hoststatus(current_state);
-CREATE INDEX hoststatus_check_type_idx on icinga_hoststatus(check_type);
-CREATE INDEX hoststatus_state_type_idx on icinga_hoststatus(state_type);
-CREATE INDEX hoststatus_last_state_chg_idx on icinga_hoststatus(last_state_change);
-CREATE INDEX hoststatus_notif_enabled_idx on icinga_hoststatus(notifications_enabled);
-CREATE INDEX hoststatus_problem_ack_idx on icinga_hoststatus(problem_has_been_acknowledged);
-CREATE INDEX hoststatus_act_chks_en_idx on icinga_hoststatus(active_checks_enabled);
-CREATE INDEX hoststatus_pas_chks_en_idx on icinga_hoststatus(passive_checks_enabled);
-CREATE INDEX hoststatus_event_hdl_en_idx on icinga_hoststatus(event_handler_enabled);
-CREATE INDEX hoststatus_flap_det_en_idx on icinga_hoststatus(flap_detection_enabled);
-CREATE INDEX hoststatus_is_flapping_idx on icinga_hoststatus(is_flapping);
-CREATE INDEX hoststatus_p_state_chg_idx on icinga_hoststatus(percent_state_change);
-CREATE INDEX hoststatus_latency_idx on icinga_hoststatus(latency);
-CREATE INDEX hoststatus_ex_time_idx on icinga_hoststatus(execution_time);
-CREATE INDEX hoststatus_sch_downt_d_idx on icinga_hoststatus(scheduled_downtime_depth);
-
--- services
-CREATE INDEX services_host_object_id_idx on icinga_services(host_object_id);
-
---servicestatus
-CREATE INDEX srvcstatus_stat_upd_time_idx on icinga_servicestatus(status_update_time);
-CREATE INDEX srvcstatus_current_state_idx on icinga_servicestatus(current_state);
-CREATE INDEX srvcstatus_check_type_idx on icinga_servicestatus(check_type);
-CREATE INDEX srvcstatus_state_type_idx on icinga_servicestatus(state_type);
-CREATE INDEX srvcstatus_last_state_chg_idx on icinga_servicestatus(last_state_change);
-CREATE INDEX srvcstatus_notif_enabled_idx on icinga_servicestatus(notifications_enabled);
-CREATE INDEX srvcstatus_problem_ack_idx on icinga_servicestatus(problem_has_been_acknowledged);
-CREATE INDEX srvcstatus_act_chks_en_idx on icinga_servicestatus(active_checks_enabled);
-CREATE INDEX srvcstatus_pas_chks_en_idx on icinga_servicestatus(passive_checks_enabled);
-CREATE INDEX srvcstatus_event_hdl_en_idx on icinga_servicestatus(event_handler_enabled);
-CREATE INDEX srvcstatus_flap_det_en_idx on icinga_servicestatus(flap_detection_enabled);
-CREATE INDEX srvcstatus_is_flapping_idx on icinga_servicestatus(is_flapping);
-CREATE INDEX srvcstatus_p_state_chg_idx on icinga_servicestatus(percent_state_change);
-CREATE INDEX srvcstatus_latency_idx on icinga_servicestatus(latency);
-CREATE INDEX srvcstatus_ex_time_idx on icinga_servicestatus(execution_time);
-CREATE INDEX srvcstatus_sch_downt_d_idx on icinga_servicestatus(scheduled_downtime_depth);
-
--- timedeventqueue
-CREATE INDEX timed_e_q_event_type_idx on icinga_timedeventqueue(event_type);
-CREATE INDEX timed_e_q_sched_time_idx on icinga_timedeventqueue(scheduled_time);
-CREATE INDEX timed_e_q_object_id_idx on icinga_timedeventqueue(object_id);
-CREATE INDEX timed_e_q_rec_ev_id_idx on icinga_timedeventqueue(recurring_event);
-
--- timedevents
-CREATE INDEX timed_e_event_type_idx on icinga_timedevents(event_type);
---CREATE INDEX timed_e_sched_time_idx on icinga_timedevents(scheduled_time); --already set for delete
-CREATE INDEX timed_e_object_id_idx on icinga_timedevents(object_id);
-CREATE INDEX timed_e_rec_ev_idx on icinga_timedevents(recurring_event);
-
--- hostchecks
-CREATE INDEX hostchks_h_obj_id_idx on icinga_hostchecks(host_object_id);
-
--- servicechecks
-CREATE INDEX servicechks_s_obj_id_idx on icinga_servicechecks(service_object_id);
-
--- objects
-CREATE INDEX objects_objtype_id_idx ON icinga_objects(objecttype_id);
-CREATE INDEX objects_name1_idx ON icinga_objects(name1);
-CREATE INDEX objects_name2_idx ON icinga_objects(name2);
-CREATE INDEX objects_inst_id_idx ON icinga_objects(instance_id);
-
--- instances
--- CREATE INDEX instances_name_idx on icinga_instances(instance_name);
-
--- logentries
--- CREATE INDEX loge_instance_id_idx on icinga_logentries(instance_id);
--- #236
-CREATE INDEX loge_time_idx on icinga_logentries(logentry_time);
--- CREATE INDEX loge_data_idx on icinga_logentries(logentry_data);
-CREATE INDEX loge_inst_id_time_idx on icinga_logentries (instance_id, logentry_time);
-
-
--- commenthistory
--- CREATE INDEX c_hist_instance_id_idx on icinga_logentries(instance_id);
--- CREATE INDEX c_hist_c_time_idx on icinga_logentries(comment_time);
--- CREATE INDEX c_hist_i_c_id_idx on icinga_logentries(internal_comment_id);
-
--- downtimehistory
--- CREATE INDEX d_t_hist_nstance_id_idx on icinga_downtimehistory(instance_id);
--- CREATE INDEX d_t_hist_type_idx on icinga_downtimehistory(downtime_type);
--- CREATE INDEX d_t_hist_object_id_idx on icinga_downtimehistory(object_id);
--- CREATE INDEX d_t_hist_entry_time_idx on icinga_downtimehistory(entry_time);
--- CREATE INDEX d_t_hist_sched_start_idx on icinga_downtimehistory(scheduled_start_time);
--- CREATE INDEX d_t_hist_sched_end_idx on icinga_downtimehistory(scheduled_end_time);
-
--- scheduleddowntime
--- CREATE INDEX sched_d_t_downtime_type_idx on icinga_scheduleddowntime(downtime_type);
--- CREATE INDEX sched_d_t_object_id_idx on icinga_scheduleddowntime(object_id);
--- CREATE INDEX sched_d_t_entry_time_idx on icinga_scheduleddowntime(entry_time);
--- CREATE INDEX sched_d_t_start_time_idx on icinga_scheduleddowntime(scheduled_start_time);
--- CREATE INDEX sched_d_t_end_time_idx on icinga_scheduleddowntime(scheduled_end_time);
-
--- statehistory
-CREATE INDEX statehist_i_id_o_id_s_ty_s_ti on icinga_statehistory(instance_id, object_id, state_type, state_time);
-
-
--- -----------------------------------------
--- set dbversion
--- -----------------------------------------
-
-SELECT updatedbversion('1.4.0');
-
+-- --------------------------------------------------------
+-- pgsql.sql
+-- DB definition for Postgresql
+--
+-- Copyright (c) 2009-2011 Icinga Development Team (http://www.icinga.org)
+--
+-- initial version: 2009-05-13 Markus Manzke
+-- current version: 2010-07-20 Michael Friedrich <michael.friedrich@univie.ac.at>
+--
+-- --------------------------------------------------------
+
+--
+-- Functions
+--
+
+CREATE OR REPLACE FUNCTION from_unixtime(integer) RETURNS timestamp AS '
+ SELECT to_timestamp($1)::timestamp AS result
+' LANGUAGE 'SQL';
+
+-- timestamp without time zone (i.e. 1973-11-29 21:33:09)
+CREATE OR REPLACE FUNCTION unix_timestamp(timestamp) RETURNS bigint AS '
+ SELECT EXTRACT(EPOCH FROM $1)::bigint AS result;
+' LANGUAGE 'SQL';
+
+
+-- -----------------------------------------
+-- set dbversion
+-- -----------------------------------------
+
+CREATE OR REPLACE FUNCTION updatedbversion(version_i TEXT) RETURNS void AS $$
+BEGIN
+ IF EXISTS( SELECT * FROM icinga_dbversion WHERE name='idoutils')
+ THEN
+ UPDATE icinga_dbversion
+ SET version=version_i WHERE name='idoutils';
+ ELSE
+ INSERT INTO icinga_dbversion (dbversion_id, name, version) VALUES ('1', 'idoutils', version_i);
+ END IF;
+
+ RETURN;
+END;
+$$ LANGUAGE plpgsql;
+-- HINT: su - postgres; createlang plpgsql icinga;
+
+
+
+--
+-- Database: icinga
+--
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_acknowledgements
+--
+
+CREATE TABLE icinga_acknowledgements (
+ acknowledgement_id bigserial,
+ instance_id bigint default 0,
+ entry_time timestamp default '1970-01-01 00:00:00',
+ entry_time_usec INTEGER default 0,
+ acknowledgement_type INTEGER default 0,
+ object_id bigint default 0,
+ state INTEGER default 0,
+ author_name TEXT default '',
+ comment_data TEXT default '',
+ is_sticky INTEGER default 0,
+ persistent_comment INTEGER default 0,
+ notify_contacts INTEGER default 0,
+ CONSTRAINT PK_acknowledgement_id PRIMARY KEY (acknowledgement_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_commands
+--
+
+CREATE TABLE icinga_commands (
+ command_id bigserial,
+ instance_id bigint default 0,
+ config_type INTEGER default 0,
+ object_id bigint default 0,
+ command_line TEXT default '',
+ CONSTRAINT PK_command_id PRIMARY KEY (command_id) ,
+ CONSTRAINT UQ_commands UNIQUE (instance_id,object_id,config_type)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_commenthistory
+--
+
+CREATE TABLE icinga_commenthistory (
+ commenthistory_id bigserial,
+ instance_id bigint default 0,
+ entry_time timestamp default '1970-01-01 00:00:00',
+ entry_time_usec INTEGER default 0,
+ comment_type INTEGER default 0,
+ entry_type INTEGER default 0,
+ object_id bigint default 0,
+ comment_time timestamp default '1970-01-01 00:00:00',
+ internal_comment_id bigint default 0,
+ author_name TEXT default '',
+ comment_data TEXT default '',
+ is_persistent INTEGER default 0,
+ comment_source INTEGER default 0,
+ expires INTEGER default 0,
+ expiration_time timestamp default '1970-01-01 00:00:00',
+ deletion_time timestamp default '1970-01-01 00:00:00',
+ deletion_time_usec INTEGER default 0,
+ CONSTRAINT PK_commenthistory_id PRIMARY KEY (commenthistory_id) ,
+ CONSTRAINT UQ_commenthistory UNIQUE (instance_id,comment_time,internal_comment_id)
+);
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_comments
+--
+
+CREATE TABLE icinga_comments (
+ comment_id bigserial,
+ instance_id bigint default 0,
+ entry_time timestamp default '1970-01-01 00:00:00',
+ entry_time_usec INTEGER default 0,
+ comment_type INTEGER default 0,
+ entry_type INTEGER default 0,
+ object_id bigint default 0,
+ comment_time timestamp default '1970-01-01 00:00:00',
+ internal_comment_id bigint default 0,
+ author_name TEXT default '',
+ comment_data TEXT default '',
+ is_persistent INTEGER default 0,
+ comment_source INTEGER default 0,
+ expires INTEGER default 0,
+ expiration_time timestamp default '1970-01-01 00:00:00',
+ CONSTRAINT PK_comment_id PRIMARY KEY (comment_id) ,
+ CONSTRAINT UQ_comments UNIQUE (instance_id,comment_time,internal_comment_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_configfiles
+--
+
+CREATE TABLE icinga_configfiles (
+ configfile_id bigserial,
+ instance_id bigint default 0,
+ configfile_type INTEGER default 0,
+ configfile_path TEXT default '',
+ CONSTRAINT PK_configfile_id PRIMARY KEY (configfile_id) ,
+ CONSTRAINT UQ_configfiles UNIQUE (instance_id,configfile_type,configfile_path)
+);
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_configfilevariables
+--
+
+CREATE TABLE icinga_configfilevariables (
+ configfilevariable_id bigserial,
+ instance_id bigint default 0,
+ configfile_id bigint default 0,
+ varname TEXT default '',
+ varvalue TEXT default '',
+ CONSTRAINT PK_configfilevariable_id PRIMARY KEY (configfilevariable_id)
+ --UNIQUE (instance_id,configfile_id)
+ -- varname/varvalue are not unique!
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_conninfo
+--
+
+CREATE TABLE icinga_conninfo (
+ conninfo_id bigserial,
+ instance_id bigint default 0,
+ agent_name TEXT default '',
+ agent_version TEXT default '',
+ disposition TEXT default '',
+ connect_source TEXT default '',
+ connect_type TEXT default '',
+ connect_time timestamp default '1970-01-01 00:00:00',
+ disconnect_time timestamp default '1970-01-01 00:00:00',
+ last_checkin_time timestamp default '1970-01-01 00:00:00',
+ data_start_time timestamp default '1970-01-01 00:00:00',
+ data_end_time timestamp default '1970-01-01 00:00:00',
+ bytes_processed bigint default 0,
+ lines_processed bigint default 0,
+ entries_processed bigint default 0,
+ CONSTRAINT PK_conninfo_id PRIMARY KEY (conninfo_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_contactgroups
+--
+
+CREATE TABLE icinga_contactgroups (
+ contactgroup_id bigserial,
+ instance_id bigint default 0,
+ config_type INTEGER default 0,
+ contactgroup_object_id bigint default 0,
+ alias TEXT default '',
+ CONSTRAINT PK_contactgroup_id PRIMARY KEY (contactgroup_id) ,
+ CONSTRAINT UQ_contactgroups UNIQUE (instance_id,config_type,contactgroup_object_id)
+);
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_contactgroup_members
+--
+
+CREATE TABLE icinga_contactgroup_members (
+ contactgroup_member_id bigserial,
+ instance_id bigint default 0,
+ contactgroup_id bigint default 0,
+ contact_object_id bigint default 0,
+ CONSTRAINT PK_contactgroup_member_id PRIMARY KEY (contactgroup_member_id) ,
+ CONSTRAINT UQ_contactgroup_members UNIQUE (contactgroup_id,contact_object_id)
+);
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_contactnotificationmethods
+--
+
+CREATE TABLE icinga_contactnotificationmethods (
+ contactnotificationmethod_id bigserial,
+ instance_id bigint default 0,
+ contactnotification_id bigint default 0,
+ start_time timestamp default '1970-01-01 00:00:00',
+ start_time_usec INTEGER default 0,
+ end_time timestamp default '1970-01-01 00:00:00',
+ end_time_usec INTEGER default 0,
+ command_object_id bigint default 0,
+ command_args TEXT default '',
+ CONSTRAINT PK_contactnotificationmethod_id PRIMARY KEY (contactnotificationmethod_id) ,
+ CONSTRAINT UQ_contactnotificationmethods UNIQUE (instance_id,contactnotification_id,start_time,start_time_usec)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_contactnotifications
+--
+
+CREATE TABLE icinga_contactnotifications (
+ contactnotification_id bigserial,
+ instance_id bigint default 0,
+ notification_id bigint default 0,
+ contact_object_id bigint default 0,
+ start_time timestamp default '1970-01-01 00:00:00',
+ start_time_usec INTEGER default 0,
+ end_time timestamp default '1970-01-01 00:00:00',
+ end_time_usec INTEGER default 0,
+ CONSTRAINT PK_contactnotification_id PRIMARY KEY (contactnotification_id) ,
+ CONSTRAINT UQ_contactnotifications UNIQUE (instance_id,contact_object_id,start_time,start_time_usec)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_contacts
+--
+
+CREATE TABLE icinga_contacts (
+ contact_id bigserial,
+ instance_id bigint default 0,
+ config_type INTEGER default 0,
+ contact_object_id bigint default 0,
+ alias TEXT default '',
+ email_address TEXT default '',
+ pager_address TEXT default '',
+ host_timeperiod_object_id bigint default 0,
+ service_timeperiod_object_id bigint default 0,
+ host_notifications_enabled INTEGER default 0,
+ service_notifications_enabled INTEGER default 0,
+ can_submit_commands INTEGER default 0,
+ notify_service_recovery INTEGER default 0,
+ notify_service_warning INTEGER default 0,
+ notify_service_unknown INTEGER default 0,
+ notify_service_critical INTEGER default 0,
+ notify_service_flapping INTEGER default 0,
+ notify_service_downtime INTEGER default 0,
+ notify_host_recovery INTEGER default 0,
+ notify_host_down INTEGER default 0,
+ notify_host_unreachable INTEGER default 0,
+ notify_host_flapping INTEGER default 0,
+ notify_host_downtime INTEGER default 0,
+ CONSTRAINT PK_contact_id PRIMARY KEY (contact_id) ,
+ CONSTRAINT UQ_contacts UNIQUE (instance_id,config_type,contact_object_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_contactstatus
+--
+
+CREATE TABLE icinga_contactstatus (
+ contactstatus_id bigserial,
+ instance_id bigint default 0,
+ contact_object_id bigint default 0,
+ status_update_time timestamp default '1970-01-01 00:00:00',
+ host_notifications_enabled INTEGER default 0,
+ service_notifications_enabled INTEGER default 0,
+ last_host_notification timestamp default '1970-01-01 00:00:00',
+ last_service_notification timestamp default '1970-01-01 00:00:00',
+ modified_attributes INTEGER default 0,
+ modified_host_attributes INTEGER default 0,
+ modified_service_attributes INTEGER default 0,
+ CONSTRAINT PK_contactstatus_id PRIMARY KEY (contactstatus_id) ,
+ CONSTRAINT UQ_contactstatus UNIQUE (contact_object_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_contact_addresses
+--
+
+CREATE TABLE icinga_contact_addresses (
+ contact_address_id bigserial,
+ instance_id bigint default 0,
+ contact_id bigint default 0,
+ address_number INTEGER default 0,
+ address TEXT default '',
+ CONSTRAINT PK_contact_address_id PRIMARY KEY (contact_address_id) ,
+ CONSTRAINT UQ_contact_addresses UNIQUE (contact_id,address_number)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_contact_notificationcommands
+--
+
+CREATE TABLE icinga_contact_notificationcommands (
+ contact_notificationcommand_id bigserial,
+ instance_id bigint default 0,
+ contact_id bigint default 0,
+ notification_type INTEGER default 0,
+ command_object_id bigint default 0,
+ command_args TEXT default '',
+ CONSTRAINT PK_contact_notificationcommand_id PRIMARY KEY (contact_notificationcommand_id) ,
+ CONSTRAINT UQ_contact_notificationcommands UNIQUE (contact_id,notification_type,command_object_id,command_args)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_customvariables
+--
+
+CREATE TABLE icinga_customvariables (
+ customvariable_id bigserial,
+ instance_id bigint default 0,
+ object_id bigint default 0,
+ config_type INTEGER default 0,
+ has_been_modified INTEGER default 0,
+ varname TEXT default '',
+ varvalue TEXT default '',
+ CONSTRAINT PK_customvariable_id PRIMARY KEY (customvariable_id) ,
+ CONSTRAINT UQ_customvariables UNIQUE (object_id,config_type,varname)
+) ;
+CREATE INDEX icinga_customvariables_i ON icinga_customvariables(varname);
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_customvariablestatus
+--
+
+CREATE TABLE icinga_customvariablestatus (
+ customvariablestatus_id bigserial,
+ instance_id bigint default 0,
+ object_id bigint default 0,
+ status_update_time timestamp default '1970-01-01 00:00:00',
+ has_been_modified INTEGER default 0,
+ varname TEXT default '',
+ varvalue TEXT default '',
+ CONSTRAINT PK_customvariablestatus_id PRIMARY KEY (customvariablestatus_id) ,
+ CONSTRAINT UQ_customvariablestatus UNIQUE (object_id,varname)
+) ;
+CREATE INDEX icinga_customvariablestatus_i ON icinga_customvariablestatus(varname);
+
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_dbversion
+--
+
+CREATE TABLE icinga_dbversion (
+ dbversion_id bigserial,
+ name TEXT default '',
+ version TEXT default '',
+ CONSTRAINT PK_dbversion_id PRIMARY KEY (dbversion_id) ,
+ CONSTRAINT UQ_dbversion UNIQUE (name)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_downtimehistory
+--
+
+CREATE TABLE icinga_downtimehistory (
+ downtimehistory_id bigserial,
+ instance_id bigint default 0,
+ downtime_type INTEGER default 0,
+ object_id bigint default 0,
+ entry_time timestamp default '1970-01-01 00:00:00',
+ author_name TEXT default '',
+ comment_data TEXT default '',
+ internal_downtime_id bigint default 0,
+ triggered_by_id bigint default 0,
+ is_fixed INTEGER default 0,
+ duration INTEGER default 0,
+ scheduled_start_time timestamp default '1970-01-01 00:00:00',
+ scheduled_end_time timestamp default '1970-01-01 00:00:00',
+ was_started INTEGER default 0,
+ actual_start_time timestamp default '1970-01-01 00:00:00',
+ actual_start_time_usec INTEGER default 0,
+ actual_end_time timestamp default '1970-01-01 00:00:00',
+ actual_end_time_usec INTEGER default 0,
+ was_cancelled INTEGER default 0,
+ CONSTRAINT PK_downtimehistory_id PRIMARY KEY (downtimehistory_id) ,
+ CONSTRAINT UQ_downtimehistory UNIQUE (instance_id,object_id,entry_time,internal_downtime_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_eventhandlers
+--
+
+CREATE TABLE icinga_eventhandlers (
+ eventhandler_id bigserial,
+ instance_id bigint default 0,
+ eventhandler_type INTEGER default 0,
+ object_id bigint default 0,
+ state INTEGER default 0,
+ state_type INTEGER default 0,
+ start_time timestamp default '1970-01-01 00:00:00',
+ start_time_usec INTEGER default 0,
+ end_time timestamp default '1970-01-01 00:00:00',
+ end_time_usec INTEGER default 0,
+ command_object_id bigint default 0,
+ command_args TEXT default '',
+ command_line TEXT default '',
+ timeout INTEGER default 0,
+ early_timeout INTEGER default 0,
+ execution_time double precision default 0,
+ return_code INTEGER default 0,
+ output TEXT default '',
+ long_output TEXT default '',
+ CONSTRAINT PK_eventhandler_id PRIMARY KEY (eventhandler_id) ,
+ CONSTRAINT UQ_eventhandlers UNIQUE (instance_id,object_id,start_time,start_time_usec)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_externalcommands
+--
+
+CREATE TABLE icinga_externalcommands (
+ externalcommand_id bigserial,
+ instance_id bigint default 0,
+ entry_time timestamp default '1970-01-01 00:00:00',
+ command_type INTEGER default 0,
+ command_name TEXT default '',
+ command_args TEXT default '',
+ CONSTRAINT PK_externalcommand_id PRIMARY KEY (externalcommand_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_flappinghistory
+--
+
+CREATE TABLE icinga_flappinghistory (
+ flappinghistory_id bigserial,
+ instance_id bigint default 0,
+ event_time timestamp default '1970-01-01 00:00:00',
+ event_time_usec INTEGER default 0,
+ event_type INTEGER default 0,
+ reason_type INTEGER default 0,
+ flapping_type INTEGER default 0,
+ object_id bigint default 0,
+ percent_state_change double precision default 0,
+ low_threshold double precision default 0,
+ high_threshold double precision default 0,
+ comment_time timestamp default '1970-01-01 00:00:00',
+ internal_comment_id bigint default 0,
+ CONSTRAINT PK_flappinghistory_id PRIMARY KEY (flappinghistory_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_hostchecks
+--
+
+CREATE TABLE icinga_hostchecks (
+ hostcheck_id bigserial,
+ instance_id bigint default 0,
+ host_object_id bigint default 0,
+ check_type INTEGER default 0,
+ is_raw_check INTEGER default 0,
+ current_check_attempt INTEGER default 0,
+ max_check_attempts INTEGER default 0,
+ state INTEGER default 0,
+ state_type INTEGER default 0,
+ start_time timestamp default '1970-01-01 00:00:00',
+ start_time_usec INTEGER default 0,
+ end_time timestamp default '1970-01-01 00:00:00',
+ end_time_usec INTEGER default 0,
+ command_object_id bigint default 0,
+ command_args TEXT default '',
+ command_line TEXT default '',
+ timeout INTEGER default 0,
+ early_timeout INTEGER default 0,
+ execution_time double precision default 0,
+ latency double precision default 0,
+ return_code INTEGER default 0,
+ output TEXT default '',
+ long_output TEXT default '',
+ perfdata TEXT default '',
+ CONSTRAINT PK_hostcheck_id PRIMARY KEY (hostcheck_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_hostdependencies
+--
+
+CREATE TABLE icinga_hostdependencies (
+ hostdependency_id bigserial,
+ instance_id bigint default 0,
+ config_type INTEGER default 0,
+ host_object_id bigint default 0,
+ dependent_host_object_id bigint default 0,
+ dependency_type INTEGER default 0,
+ inherits_parent INTEGER default 0,
+ timeperiod_object_id bigint default 0,
+ fail_on_up INTEGER default 0,
+ fail_on_down INTEGER default 0,
+ fail_on_unreachable INTEGER default 0,
+ CONSTRAINT PK_hostdependency_id PRIMARY KEY (hostdependency_id) ,
+ CONSTRAINT UQ_hostdependencies UNIQUE (instance_id,config_type,host_object_id,dependent_host_object_id,dependency_type,inherits_parent,fail_on_up,fail_on_down,fail_on_unreachable)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_hostescalations
+--
+
+CREATE TABLE icinga_hostescalations (
+ hostescalation_id bigserial,
+ instance_id bigint default 0,
+ config_type INTEGER default 0,
+ host_object_id bigint default 0,
+ timeperiod_object_id bigint default 0,
+ first_notification INTEGER default 0,
+ last_notification INTEGER default 0,
+ notification_interval double precision default 0,
+ escalate_on_recovery INTEGER default 0,
+ escalate_on_down INTEGER default 0,
+ escalate_on_unreachable INTEGER default 0,
+ CONSTRAINT PK_hostescalation_id PRIMARY KEY (hostescalation_id) ,
+ CONSTRAINT UQ_hostescalations UNIQUE (instance_id,config_type,host_object_id,timeperiod_object_id,first_notification,last_notification)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_hostescalation_contactgroups
+--
+
+CREATE TABLE icinga_hostescalation_contactgroups (
+ hostescalation_contactgroup_id bigserial,
+ instance_id bigint default 0,
+ hostescalation_id bigint default 0,
+ contactgroup_object_id bigint default 0,
+ CONSTRAINT PK_hostescalation_contactgroup_id PRIMARY KEY (hostescalation_contactgroup_id) ,
+ CONSTRAINT UQ_hostescalation_contactgroups UNIQUE (hostescalation_id,contactgroup_object_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_hostescalation_contacts
+--
+
+CREATE TABLE icinga_hostescalation_contacts (
+ hostescalation_contact_id bigserial,
+ instance_id bigint default 0,
+ hostescalation_id bigint default 0,
+ contact_object_id bigint default 0,
+ CONSTRAINT PK_hostescalation_contact_id PRIMARY KEY (hostescalation_contact_id) ,
+ CONSTRAINT UQ_hostescalation_contacts UNIQUE (instance_id,hostescalation_id,contact_object_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_hostgroups
+--
+
+CREATE TABLE icinga_hostgroups (
+ hostgroup_id bigserial,
+ instance_id bigint default 0,
+ config_type INTEGER default 0,
+ hostgroup_object_id bigint default 0,
+ alias TEXT default '',
+ CONSTRAINT PK_hostgroup_id PRIMARY KEY (hostgroup_id) ,
+ CONSTRAINT UQ_hostgroups UNIQUE (instance_id,hostgroup_object_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_hostgroup_members
+--
+
+CREATE TABLE icinga_hostgroup_members (
+ hostgroup_member_id bigserial,
+ instance_id bigint default 0,
+ hostgroup_id bigint default 0,
+ host_object_id bigint default 0,
+ CONSTRAINT PK_hostgroup_member_id PRIMARY KEY (hostgroup_member_id) ,
+ CONSTRAINT UQ_hostgroup_members UNIQUE (hostgroup_id,host_object_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_hosts
+--
+
+CREATE TABLE icinga_hosts (
+ host_id bigserial,
+ instance_id bigint default 0,
+ config_type INTEGER default 0,
+ host_object_id bigint default 0,
+ alias TEXT default '',
+ display_name TEXT default '',
+ address TEXT default '',
+ address6 TEXT default '',
+ check_command_object_id bigint default 0,
+ check_command_args TEXT default '',
+ eventhandler_command_object_id bigint default 0,
+ eventhandler_command_args TEXT default '',
+ notification_timeperiod_object_id bigint default 0,
+ check_timeperiod_object_id bigint default 0,
+ failure_prediction_options TEXT default '',
+ check_interval double precision default 0,
+ retry_interval double precision default 0,
+ max_check_attempts INTEGER default 0,
+ first_notification_delay double precision default 0,
+ notification_interval double precision default 0,
+ notify_on_down INTEGER default 0,
+ notify_on_unreachable INTEGER default 0,
+ notify_on_recovery INTEGER default 0,
+ notify_on_flapping INTEGER default 0,
+ notify_on_downtime INTEGER default 0,
+ stalk_on_up INTEGER default 0,
+ stalk_on_down INTEGER default 0,
+ stalk_on_unreachable INTEGER default 0,
+ flap_detection_enabled INTEGER default 0,
+ flap_detection_on_up INTEGER default 0,
+ flap_detection_on_down INTEGER default 0,
+ flap_detection_on_unreachable INTEGER default 0,
+ low_flap_threshold double precision default 0,
+ high_flap_threshold double precision default 0,
+ process_performance_data INTEGER default 0,
+ freshness_checks_enabled INTEGER default 0,
+ freshness_threshold INTEGER default 0,
+ passive_checks_enabled INTEGER default 0,
+ event_handler_enabled INTEGER default 0,
+ active_checks_enabled INTEGER default 0,
+ retain_status_information INTEGER default 0,
+ retain_nonstatus_information INTEGER default 0,
+ notifications_enabled INTEGER default 0,
+ obsess_over_host INTEGER default 0,
+ failure_prediction_enabled INTEGER default 0,
+ notes TEXT default '',
+ notes_url TEXT default '',
+ action_url TEXT default '',
+ icon_image TEXT default '',
+ icon_image_alt TEXT default '',
+ vrml_image TEXT default '',
+ statusmap_image TEXT default '',
+ have_2d_coords INTEGER default 0,
+ x_2d INTEGER default 0,
+ y_2d INTEGER default 0,
+ have_3d_coords INTEGER default 0,
+ x_3d double precision default 0,
+ y_3d double precision default 0,
+ z_3d double precision default 0,
+ CONSTRAINT PK_host_id PRIMARY KEY (host_id) ,
+ CONSTRAINT UQ_hosts UNIQUE (instance_id,config_type,host_object_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_hoststatus
+--
+
+CREATE TABLE icinga_hoststatus (
+ hoststatus_id bigserial,
+ instance_id bigint default 0,
+ host_object_id bigint default 0,
+ status_update_time timestamp default '1970-01-01 00:00:00',
+ output TEXT default '',
+ long_output TEXT default '',
+ perfdata TEXT default '',
+ current_state INTEGER default 0,
+ has_been_checked INTEGER default 0,
+ should_be_scheduled INTEGER default 0,
+ current_check_attempt INTEGER default 0,
+ max_check_attempts INTEGER default 0,
+ last_check timestamp default '1970-01-01 00:00:00',
+ next_check timestamp default '1970-01-01 00:00:00',
+ check_type INTEGER default 0,
+ last_state_change timestamp default '1970-01-01 00:00:00',
+ last_hard_state_change timestamp default '1970-01-01 00:00:00',
+ last_hard_state INTEGER default 0,
+ last_time_up timestamp default '1970-01-01 00:00:00',
+ last_time_down timestamp default '1970-01-01 00:00:00',
+ last_time_unreachable timestamp default '1970-01-01 00:00:00',
+ state_type INTEGER default 0,
+ last_notification timestamp default '1970-01-01 00:00:00',
+ next_notification timestamp default '1970-01-01 00:00:00',
+ no_more_notifications INTEGER default 0,
+ notifications_enabled INTEGER default 0,
+ problem_has_been_acknowledged INTEGER default 0,
+ acknowledgement_type INTEGER default 0,
+ current_notification_number INTEGER default 0,
+ passive_checks_enabled INTEGER default 0,
+ active_checks_enabled INTEGER default 0,
+ event_handler_enabled INTEGER default 0,
+ flap_detection_enabled INTEGER default 0,
+ is_flapping INTEGER default 0,
+ percent_state_change double precision default 0,
+ latency double precision default 0,
+ execution_time double precision default 0,
+ scheduled_downtime_depth INTEGER default 0,
+ failure_prediction_enabled INTEGER default 0,
+ process_performance_data INTEGER default 0,
+ obsess_over_host INTEGER default 0,
+ modified_host_attributes INTEGER default 0,
+ event_handler TEXT default '',
+ check_command TEXT default '',
+ normal_check_interval double precision default 0,
+ retry_check_interval double precision default 0,
+ check_timeperiod_object_id bigint default 0,
+ CONSTRAINT PK_hoststatus_id PRIMARY KEY (hoststatus_id) ,
+ CONSTRAINT UQ_hoststatus UNIQUE (host_object_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_host_contactgroups
+--
+
+CREATE TABLE icinga_host_contactgroups (
+ host_contactgroup_id bigserial,
+ instance_id bigint default 0,
+ host_id bigint default 0,
+ contactgroup_object_id bigint default 0,
+ CONSTRAINT PK_host_contactgroup_id PRIMARY KEY (host_contactgroup_id) ,
+ CONSTRAINT UQ_host_contactgroups UNIQUE (host_id,contactgroup_object_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_host_contacts
+--
+
+CREATE TABLE icinga_host_contacts (
+ host_contact_id bigserial,
+ instance_id bigint default 0,
+ host_id bigint default 0,
+ contact_object_id bigint default 0,
+ CONSTRAINT PK_host_contact_id PRIMARY KEY (host_contact_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_host_parenthosts
+--
+
+CREATE TABLE icinga_host_parenthosts (
+ host_parenthost_id bigserial,
+ instance_id bigint default 0,
+ host_id bigint default 0,
+ parent_host_object_id bigint default 0,
+ CONSTRAINT PK_host_parenthost_id PRIMARY KEY (host_parenthost_id) ,
+ CONSTRAINT UQ_host_parenthosts UNIQUE (host_id,parent_host_object_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_instances
+--
+
+CREATE TABLE icinga_instances (
+ instance_id bigserial,
+ instance_name TEXT default '',
+ instance_description TEXT default '',
+ CONSTRAINT PK_instance_id PRIMARY KEY (instance_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_logentries
+--
+
+CREATE TABLE icinga_logentries (
+ logentry_id bigserial,
+ instance_id bigint default 0,
+ logentry_time timestamp default '1970-01-01 00:00:00',
+ entry_time timestamp default '1970-01-01 00:00:00',
+ entry_time_usec INTEGER default 0,
+ logentry_type INTEGER default 0,
+ logentry_data TEXT default '',
+ realtime_data INTEGER default 0,
+ inferred_data_extracted INTEGER default 0,
+ CONSTRAINT PK_logentry_id PRIMARY KEY (logentry_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_notifications
+--
+
+CREATE TABLE icinga_notifications (
+ notification_id bigserial,
+ instance_id bigint default 0,
+ notification_type INTEGER default 0,
+ notification_reason INTEGER default 0,
+ object_id bigint default 0,
+ start_time timestamp default '1970-01-01 00:00:00',
+ start_time_usec INTEGER default 0,
+ end_time timestamp default '1970-01-01 00:00:00',
+ end_time_usec INTEGER default 0,
+ state INTEGER default 0,
+ output TEXT default '',
+ long_output TEXT default '',
+ escalated INTEGER default 0,
+ contacts_notified INTEGER default 0,
+ CONSTRAINT PK_notification_id PRIMARY KEY (notification_id) ,
+ CONSTRAINT UQ_notifications UNIQUE (instance_id,object_id,start_time,start_time_usec)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_objects
+--
+
+CREATE TABLE icinga_objects (
+ object_id bigserial,
+ instance_id bigint default 0,
+ objecttype_id bigint default 0,
+ name1 TEXT,
+ name2 TEXT,
+ is_active INTEGER default 0,
+ CONSTRAINT PK_object_id PRIMARY KEY (object_id)
+-- UNIQUE (objecttype_id,name1,name2)
+) ;
+CREATE INDEX icinga_objects_i ON icinga_objects(objecttype_id,name1,name2);
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_processevents
+--
+
+CREATE TABLE icinga_processevents (
+ processevent_id bigserial,
+ instance_id bigint default 0,
+ event_type INTEGER default 0,
+ event_time timestamp default '1970-01-01 00:00:00',
+ event_time_usec INTEGER default 0,
+ process_id bigint default 0,
+ program_name TEXT default '',
+ program_version TEXT default '',
+ program_date TEXT default '',
+ CONSTRAINT PK_processevent_id PRIMARY KEY (processevent_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_programstatus
+--
+
+CREATE TABLE icinga_programstatus (
+ programstatus_id bigserial,
+ instance_id bigint default 0,
+ status_update_time timestamp default '1970-01-01 00:00:00',
+ program_start_time timestamp default '1970-01-01 00:00:00',
+ program_end_time timestamp default '1970-01-01 00:00:00',
+ is_currently_running INTEGER default 0,
+ process_id bigint default 0,
+ daemon_mode INTEGER default 0,
+ last_command_check timestamp default '1970-01-01 00:00:00',
+ last_log_rotation timestamp default '1970-01-01 00:00:00',
+ notifications_enabled INTEGER default 0,
+ active_service_checks_enabled INTEGER default 0,
+ passive_service_checks_enabled INTEGER default 0,
+ active_host_checks_enabled INTEGER default 0,
+ passive_host_checks_enabled INTEGER default 0,
+ event_handlers_enabled INTEGER default 0,
+ flap_detection_enabled INTEGER default 0,
+ failure_prediction_enabled INTEGER default 0,
+ process_performance_data INTEGER default 0,
+ obsess_over_hosts INTEGER default 0,
+ obsess_over_services INTEGER default 0,
+ modified_host_attributes INTEGER default 0,
+ modified_service_attributes INTEGER default 0,
+ global_host_event_handler TEXT default '',
+ global_service_event_handler TEXT default '',
+ CONSTRAINT PK_programstatus_id PRIMARY KEY (programstatus_id) ,
+ CONSTRAINT UQ_programstatus UNIQUE (instance_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_runtimevariables
+--
+
+CREATE TABLE icinga_runtimevariables (
+ runtimevariable_id bigserial,
+ instance_id bigint default 0,
+ varname TEXT default '',
+ varvalue TEXT default '',
+ CONSTRAINT PK_runtimevariable_id PRIMARY KEY (runtimevariable_id) ,
+ CONSTRAINT UQ_runtimevariables UNIQUE (instance_id,varname)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_scheduleddowntime
+--
+
+CREATE TABLE icinga_scheduleddowntime (
+ scheduleddowntime_id bigserial,
+ instance_id bigint default 0,
+ downtime_type INTEGER default 0,
+ object_id bigint default 0,
+ entry_time timestamp default '1970-01-01 00:00:00',
+ author_name TEXT default '',
+ comment_data TEXT default '',
+ internal_downtime_id bigint default 0,
+ triggered_by_id bigint default 0,
+ is_fixed INTEGER default 0,
+ duration INTEGER default 0,
+ scheduled_start_time timestamp default '1970-01-01 00:00:00',
+ scheduled_end_time timestamp default '1970-01-01 00:00:00',
+ was_started INTEGER default 0,
+ actual_start_time timestamp default '1970-01-01 00:00:00',
+ actual_start_time_usec INTEGER default 0,
+ CONSTRAINT PK_scheduleddowntime_id PRIMARY KEY (scheduleddowntime_id) ,
+ CONSTRAINT UQ_scheduleddowntime UNIQUE (instance_id,object_id,entry_time,internal_downtime_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_servicechecks
+--
+
+CREATE TABLE icinga_servicechecks (
+ servicecheck_id bigserial,
+ instance_id bigint default 0,
+ service_object_id bigint default 0,
+ check_type INTEGER default 0,
+ current_check_attempt INTEGER default 0,
+ max_check_attempts INTEGER default 0,
+ state INTEGER default 0,
+ state_type INTEGER default 0,
+ start_time timestamp default '1970-01-01 00:00:00',
+ start_time_usec INTEGER default 0,
+ end_time timestamp default '1970-01-01 00:00:00',
+ end_time_usec INTEGER default 0,
+ command_object_id bigint default 0,
+ command_args TEXT default '',
+ command_line TEXT default '',
+ timeout INTEGER default 0,
+ early_timeout INTEGER default 0,
+ execution_time double precision default 0,
+ latency double precision default 0,
+ return_code INTEGER default 0,
+ output TEXT default '',
+ long_output TEXT default '',
+ perfdata TEXT default '',
+ CONSTRAINT PK_servicecheck_id PRIMARY KEY (servicecheck_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_servicedependencies
+--
+
+CREATE TABLE icinga_servicedependencies (
+ servicedependency_id bigserial,
+ instance_id bigint default 0,
+ config_type INTEGER default 0,
+ service_object_id bigint default 0,
+ dependent_service_object_id bigint default 0,
+ dependency_type INTEGER default 0,
+ inherits_parent INTEGER default 0,
+ timeperiod_object_id bigint default 0,
+ fail_on_ok INTEGER default 0,
+ fail_on_warning INTEGER default 0,
+ fail_on_unknown INTEGER default 0,
+ fail_on_critical INTEGER default 0,
+ CONSTRAINT PK_servicedependency_id PRIMARY KEY (servicedependency_id) ,
+ CONSTRAINT UQ_servicedependencies UNIQUE (instance_id,config_type,service_object_id,dependent_service_object_id,dependency_type,inherits_parent,fail_on_ok,fail_on_warning,fail_on_unknown,fail_on_critical)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_serviceescalations
+--
+
+CREATE TABLE icinga_serviceescalations (
+ serviceescalation_id bigserial,
+ instance_id bigint default 0,
+ config_type INTEGER default 0,
+ service_object_id bigint default 0,
+ timeperiod_object_id bigint default 0,
+ first_notification INTEGER default 0,
+ last_notification INTEGER default 0,
+ notification_interval double precision default 0,
+ escalate_on_recovery INTEGER default 0,
+ escalate_on_warning INTEGER default 0,
+ escalate_on_unknown INTEGER default 0,
+ escalate_on_critical INTEGER default 0,
+ CONSTRAINT PK_serviceescalation_id PRIMARY KEY (serviceescalation_id) ,
+ CONSTRAINT UQ_serviceescalations UNIQUE (instance_id,config_type,service_object_id,timeperiod_object_id,first_notification,last_notification)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_serviceescalation_contactgroups
+--
+
+CREATE TABLE icinga_serviceescalation_contactgroups (
+ serviceescalation_contactgroup_id bigserial,
+ instance_id bigint default 0,
+ serviceescalation_id bigint default 0,
+ contactgroup_object_id bigint default 0,
+ CONSTRAINT PK_serviceescalation_contactgroup_id PRIMARY KEY (serviceescalation_contactgroup_id) ,
+ CONSTRAINT UQ_serviceescalation_contactgro UNIQUE (serviceescalation_id,contactgroup_object_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_serviceescalation_contacts
+--
+
+CREATE TABLE icinga_serviceescalation_contacts (
+ serviceescalation_contact_id bigserial,
+ instance_id bigint default 0,
+ serviceescalation_id bigint default 0,
+ contact_object_id bigint default 0,
+ CONSTRAINT PK_serviceescalation_contact_id PRIMARY KEY (serviceescalation_contact_id) ,
+ CONSTRAINT UQ_serviceescalation_contacts UNIQUE (instance_id,serviceescalation_id,contact_object_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_servicegroups
+--
+
+CREATE TABLE icinga_servicegroups (
+ servicegroup_id bigserial,
+ instance_id bigint default 0,
+ config_type INTEGER default 0,
+ servicegroup_object_id bigint default 0,
+ alias TEXT default '',
+ CONSTRAINT PK_servicegroup_id PRIMARY KEY (servicegroup_id) ,
+ CONSTRAINT UQ_servicegroups UNIQUE (instance_id,config_type,servicegroup_object_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_servicegroup_members
+--
+
+CREATE TABLE icinga_servicegroup_members (
+ servicegroup_member_id bigserial,
+ instance_id bigint default 0,
+ servicegroup_id bigint default 0,
+ service_object_id bigint default 0,
+ CONSTRAINT PK_servicegroup_member_id PRIMARY KEY (servicegroup_member_id) ,
+ CONSTRAINT UQ_servicegroup_members UNIQUE (servicegroup_id,service_object_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_services
+--
+
+CREATE TABLE icinga_services (
+ service_id bigserial,
+ instance_id bigint default 0,
+ config_type INTEGER default 0,
+ host_object_id bigint default 0,
+ service_object_id bigint default 0,
+ display_name TEXT default '',
+ check_command_object_id bigint default 0,
+ check_command_args TEXT default '',
+ eventhandler_command_object_id bigint default 0,
+ eventhandler_command_args TEXT default '',
+ notification_timeperiod_object_id bigint default 0,
+ check_timeperiod_object_id bigint default 0,
+ failure_prediction_options TEXT default '',
+ check_interval double precision default 0,
+ retry_interval double precision default 0,
+ max_check_attempts INTEGER default 0,
+ first_notification_delay double precision default 0,
+ notification_interval double precision default 0,
+ notify_on_warning INTEGER default 0,
+ notify_on_unknown INTEGER default 0,
+ notify_on_critical INTEGER default 0,
+ notify_on_recovery INTEGER default 0,
+ notify_on_flapping INTEGER default 0,
+ notify_on_downtime INTEGER default 0,
+ stalk_on_ok INTEGER default 0,
+ stalk_on_warning INTEGER default 0,
+ stalk_on_unknown INTEGER default 0,
+ stalk_on_critical INTEGER default 0,
+ is_volatile INTEGER default 0,
+ flap_detection_enabled INTEGER default 0,
+ flap_detection_on_ok INTEGER default 0,
+ flap_detection_on_warning INTEGER default 0,
+ flap_detection_on_unknown INTEGER default 0,
+ flap_detection_on_critical INTEGER default 0,
+ low_flap_threshold double precision default 0,
+ high_flap_threshold double precision default 0,
+ process_performance_data INTEGER default 0,
+ freshness_checks_enabled INTEGER default 0,
+ freshness_threshold INTEGER default 0,
+ passive_checks_enabled INTEGER default 0,
+ event_handler_enabled INTEGER default 0,
+ active_checks_enabled INTEGER default 0,
+ retain_status_information INTEGER default 0,
+ retain_nonstatus_information INTEGER default 0,
+ notifications_enabled INTEGER default 0,
+ obsess_over_service INTEGER default 0,
+ failure_prediction_enabled INTEGER default 0,
+ notes TEXT default '',
+ notes_url TEXT default '',
+ action_url TEXT default '',
+ icon_image TEXT default '',
+ icon_image_alt TEXT default '',
+ CONSTRAINT PK_service_id PRIMARY KEY (service_id) ,
+ CONSTRAINT UQ_services UNIQUE (instance_id,config_type,service_object_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_servicestatus
+--
+
+CREATE TABLE icinga_servicestatus (
+ servicestatus_id bigserial,
+ instance_id bigint default 0,
+ service_object_id bigint default 0,
+ status_update_time timestamp default '1970-01-01 00:00:00',
+ output TEXT default '',
+ long_output TEXT default '',
+ perfdata TEXT default '',
+ current_state INTEGER default 0,
+ has_been_checked INTEGER default 0,
+ should_be_scheduled INTEGER default 0,
+ current_check_attempt INTEGER default 0,
+ max_check_attempts INTEGER default 0,
+ last_check timestamp default '1970-01-01 00:00:00',
+ next_check timestamp default '1970-01-01 00:00:00',
+ check_type INTEGER default 0,
+ last_state_change timestamp default '1970-01-01 00:00:00',
+ last_hard_state_change timestamp default '1970-01-01 00:00:00',
+ last_hard_state INTEGER default 0,
+ last_time_ok timestamp default '1970-01-01 00:00:00',
+ last_time_warning timestamp default '1970-01-01 00:00:00',
+ last_time_unknown timestamp default '1970-01-01 00:00:00',
+ last_time_critical timestamp default '1970-01-01 00:00:00',
+ state_type INTEGER default 0,
+ last_notification timestamp default '1970-01-01 00:00:00',
+ next_notification timestamp default '1970-01-01 00:00:00',
+ no_more_notifications INTEGER default 0,
+ notifications_enabled INTEGER default 0,
+ problem_has_been_acknowledged INTEGER default 0,
+ acknowledgement_type INTEGER default 0,
+ current_notification_number INTEGER default 0,
+ passive_checks_enabled INTEGER default 0,
+ active_checks_enabled INTEGER default 0,
+ event_handler_enabled INTEGER default 0,
+ flap_detection_enabled INTEGER default 0,
+ is_flapping INTEGER default 0,
+ percent_state_change double precision default 0,
+ latency double precision default 0,
+ execution_time double precision default 0,
+ scheduled_downtime_depth INTEGER default 0,
+ failure_prediction_enabled INTEGER default 0,
+ process_performance_data INTEGER default 0,
+ obsess_over_service INTEGER default 0,
+ modified_service_attributes INTEGER default 0,
+ event_handler TEXT default '',
+ check_command TEXT default '',
+ normal_check_interval double precision default 0,
+ retry_check_interval double precision default 0,
+ check_timeperiod_object_id bigint default 0,
+ CONSTRAINT PK_servicestatus_id PRIMARY KEY (servicestatus_id) ,
+ CONSTRAINT UQ_servicestatus UNIQUE (service_object_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_service_contactgroups
+--
+
+CREATE TABLE icinga_service_contactgroups (
+ service_contactgroup_id bigserial,
+ instance_id bigint default 0,
+ service_id bigint default 0,
+ contactgroup_object_id bigint default 0,
+ CONSTRAINT PK_service_contactgroup_id PRIMARY KEY (service_contactgroup_id) ,
+ CONSTRAINT UQ_service_contactgroups UNIQUE (service_id,contactgroup_object_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_service_contacts
+--
+
+CREATE TABLE icinga_service_contacts (
+ service_contact_id bigserial,
+ instance_id bigint default 0,
+ service_id bigint default 0,
+ contact_object_id bigint default 0,
+ CONSTRAINT PK_service_contact_id PRIMARY KEY (service_contact_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_statehistory
+--
+
+CREATE TABLE icinga_statehistory (
+ statehistory_id bigserial,
+ instance_id bigint default 0,
+ state_time timestamp default '1970-01-01 00:00:00',
+ state_time_usec INTEGER default 0,
+ object_id bigint default 0,
+ state_change INTEGER default 0,
+ state INTEGER default 0,
+ state_type INTEGER default 0,
+ current_check_attempt INTEGER default 0,
+ max_check_attempts INTEGER default 0,
+ last_state INTEGER default '-1',
+ last_hard_state INTEGER default '-1',
+ output TEXT default '',
+ long_output TEXT default '',
+ CONSTRAINT PK_statehistory_id PRIMARY KEY (statehistory_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_systemcommands
+--
+
+CREATE TABLE icinga_systemcommands (
+ systemcommand_id bigserial,
+ instance_id bigint default 0,
+ start_time timestamp default '1970-01-01 00:00:00',
+ start_time_usec INTEGER default 0,
+ end_time timestamp default '1970-01-01 00:00:00',
+ end_time_usec INTEGER default 0,
+ command_line TEXT default '',
+ timeout INTEGER default 0,
+ early_timeout INTEGER default 0,
+ execution_time double precision default 0,
+ return_code INTEGER default 0,
+ output TEXT default '',
+ long_output TEXT default '',
+ CONSTRAINT PK_systemcommand_id PRIMARY KEY (systemcommand_id) ,
+ CONSTRAINT UQ_systemcommands UNIQUE (instance_id,start_time,start_time_usec)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_timedeventqueue
+--
+
+CREATE TABLE icinga_timedeventqueue (
+ timedeventqueue_id bigserial,
+ instance_id bigint default 0,
+ event_type INTEGER default 0,
+ queued_time timestamp default '1970-01-01 00:00:00',
+ queued_time_usec INTEGER default 0,
+ scheduled_time timestamp default '1970-01-01 00:00:00',
+ recurring_event INTEGER default 0,
+ object_id bigint default 0,
+ CONSTRAINT PK_timedeventqueue_id PRIMARY KEY (timedeventqueue_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_timedevents
+--
+
+CREATE TABLE icinga_timedevents (
+ timedevent_id bigserial,
+ instance_id bigint default 0,
+ event_type INTEGER default 0,
+ queued_time timestamp default '1970-01-01 00:00:00',
+ queued_time_usec INTEGER default 0,
+ event_time timestamp default '1970-01-01 00:00:00',
+ event_time_usec INTEGER default 0,
+ scheduled_time timestamp default '1970-01-01 00:00:00',
+ recurring_event INTEGER default 0,
+ object_id bigint default 0,
+ deletion_time timestamp default '1970-01-01 00:00:00',
+ deletion_time_usec INTEGER default 0,
+ CONSTRAINT PK_timedevent_id PRIMARY KEY (timedevent_id) ,
+ CONSTRAINT UQ_timedevents UNIQUE (instance_id,event_type,scheduled_time,object_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_timeperiods
+--
+
+CREATE TABLE icinga_timeperiods (
+ timeperiod_id bigserial,
+ instance_id bigint default 0,
+ config_type INTEGER default 0,
+ timeperiod_object_id bigint default 0,
+ alias TEXT default '',
+ CONSTRAINT PK_timeperiod_id PRIMARY KEY (timeperiod_id) ,
+ CONSTRAINT UQ_timeperiods UNIQUE (instance_id,config_type,timeperiod_object_id)
+) ;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table icinga_timeperiod_timeranges
+--
+
+CREATE TABLE icinga_timeperiod_timeranges (
+ timeperiod_timerange_id bigserial,
+ instance_id bigint default 0,
+ timeperiod_id bigint default 0,
+ day INTEGER default 0,
+ start_sec INTEGER default 0,
+ end_sec INTEGER default 0,
+ CONSTRAINT PK_timeperiod_timerange_id PRIMARY KEY (timeperiod_timerange_id) ,
+ CONSTRAINT UQ_timeperiod_timeranges UNIQUE (timeperiod_id,day,start_sec,end_sec)
+) ;
+
+
+-- -----------------------------------------
+-- add index (delete)
+-- -----------------------------------------
+
+-- for periodic delete
+-- instance_id and
+-- TIMEDEVENTS => scheduled_time
+-- SYSTEMCOMMANDS, SERVICECHECKS, HOSTCHECKS, EVENTHANDLERS => start_time
+-- EXTERNALCOMMANDS => entry_time
+
+-- instance_id
+CREATE INDEX timedevents_i_id_idx on icinga_timedevents(instance_id);
+CREATE INDEX timedeventq_i_id_idx on icinga_timedeventqueue(instance_id);
+CREATE INDEX systemcommands_i_id_idx on icinga_systemcommands(instance_id);
+CREATE INDEX servicechecks_i_id_idx on icinga_servicechecks(instance_id);
+CREATE INDEX hostchecks_i_id_idx on icinga_hostchecks(instance_id);
+CREATE INDEX eventhandlers_i_id_idx on icinga_eventhandlers(instance_id);
+CREATE INDEX externalcommands_i_id_idx on icinga_externalcommands(instance_id);
+
+-- time
+CREATE INDEX timedevents_time_id_idx on icinga_timedevents(scheduled_time);
+CREATE INDEX timedeventq_time_id_idx on icinga_timedeventqueue(scheduled_time);
+CREATE INDEX systemcommands_time_id_idx on icinga_systemcommands(start_time);
+CREATE INDEX servicechecks_time_id_idx on icinga_servicechecks(start_time);
+CREATE INDEX hostchecks_time_id_idx on icinga_hostchecks(start_time);
+CREATE INDEX eventhandlers_time_id_idx on icinga_eventhandlers(start_time);
+CREATE INDEX externalcommands_time_id_idx on icinga_externalcommands(entry_time);
+
+
+-- for starting cleanup - referenced in dbhandler.c:882
+-- instance_id only
+
+-- realtime data
+CREATE INDEX programstatus_i_id_idx on icinga_programstatus(instance_id);
+CREATE INDEX hoststatus_i_id_idx on icinga_hoststatus(instance_id);
+CREATE INDEX servicestatus_i_id_idx on icinga_servicestatus(instance_id);
+CREATE INDEX contactstatus_i_id_idx on icinga_contactstatus(instance_id);
+CREATE INDEX timedeventqueue_i_id_idx on icinga_timedeventqueue(instance_id);
+CREATE INDEX comments_i_id_idx on icinga_comments(instance_id);
+CREATE INDEX scheduleddowntime_i_id_idx on icinga_scheduleddowntime(instance_id);
+CREATE INDEX runtimevariables_i_id_idx on icinga_runtimevariables(instance_id);
+CREATE INDEX customvariablestatus_i_id_idx on icinga_customvariablestatus(instance_id);
+
+-- config data
+CREATE INDEX configfiles_i_id_idx on icinga_configfiles(instance_id);
+CREATE INDEX configfilevariables_i_id_idx on icinga_configfilevariables(instance_id);
+CREATE INDEX customvariables_i_id_idx on icinga_customvariables(instance_id);
+CREATE INDEX commands_i_id_idx on icinga_commands(instance_id);
+CREATE INDEX timeperiods_i_id_idx on icinga_timeperiods(instance_id);
+CREATE INDEX timeperiod_timeranges_i_id_idx on icinga_timeperiod_timeranges(instance_id);
+CREATE INDEX contactgroups_i_id_idx on icinga_contactgroups(instance_id);
+CREATE INDEX contactgroup_members_i_id_idx on icinga_contactgroup_members(instance_id);
+CREATE INDEX hostgroups_i_id_idx on icinga_hostgroups(instance_id);
+CREATE INDEX hostgroup_members_i_id_idx on icinga_hostgroup_members(instance_id);
+CREATE INDEX servicegroups_i_id_idx on icinga_servicegroups(instance_id);
+CREATE INDEX servicegroup_members_i_id_idx on icinga_servicegroup_members(instance_id);
+CREATE INDEX hostesc_i_id_idx on icinga_hostescalations(instance_id);
+CREATE INDEX hostesc_contacts_i_id_idx on icinga_hostescalation_contacts(instance_id);
+CREATE INDEX serviceesc_i_id_idx on icinga_serviceescalations(instance_id);
+CREATE INDEX serviceesc_contacts_i_id_idx on icinga_serviceescalation_contacts(instance_id);
+CREATE INDEX hostdependencies_i_id_idx on icinga_hostdependencies(instance_id);
+CREATE INDEX contacts_i_id_idx on icinga_contacts(instance_id);
+CREATE INDEX contact_addresses_i_id_idx on icinga_contact_addresses(instance_id);
+CREATE INDEX contact_notifcommands_i_id_idx on icinga_contact_notificationcommands(instance_id);
+CREATE INDEX hosts_i_id_idx on icinga_hosts(instance_id);
+CREATE INDEX host_parenthosts_i_id_idx on icinga_host_parenthosts(instance_id);
+CREATE INDEX host_contacts_i_id_idx on icinga_host_contacts(instance_id);
+CREATE INDEX services_i_id_idx on icinga_services(instance_id);
+CREATE INDEX service_contacts_i_id_idx on icinga_service_contacts(instance_id);
+CREATE INDEX service_contactgroups_i_id_idx on icinga_service_contactgroups(instance_id);
+CREATE INDEX host_contactgroups_i_id_idx on icinga_host_contactgroups(instance_id);
+CREATE INDEX hostesc_cgroups_i_id_idx on icinga_hostescalation_contactgroups(instance_id);
+CREATE INDEX serviceesc_cgroups_i_id_idx on icinga_serviceescalation_contactgroups(instance_id);
+
+-- -----------------------------------------
+-- more index stuff (WHERE clauses)
+-- -----------------------------------------
+
+-- hosts
+CREATE INDEX hosts_host_object_id_idx on icinga_hosts(host_object_id);
+
+-- hoststatus
+CREATE INDEX hoststatus_stat_upd_time_idx on icinga_hoststatus(status_update_time);
+CREATE INDEX hoststatus_current_state_idx on icinga_hoststatus(current_state);
+CREATE INDEX hoststatus_check_type_idx on icinga_hoststatus(check_type);
+CREATE INDEX hoststatus_state_type_idx on icinga_hoststatus(state_type);
+CREATE INDEX hoststatus_last_state_chg_idx on icinga_hoststatus(last_state_change);
+CREATE INDEX hoststatus_notif_enabled_idx on icinga_hoststatus(notifications_enabled);
+CREATE INDEX hoststatus_problem_ack_idx on icinga_hoststatus(problem_has_been_acknowledged);
+CREATE INDEX hoststatus_act_chks_en_idx on icinga_hoststatus(active_checks_enabled);
+CREATE INDEX hoststatus_pas_chks_en_idx on icinga_hoststatus(passive_checks_enabled);
+CREATE INDEX hoststatus_event_hdl_en_idx on icinga_hoststatus(event_handler_enabled);
+CREATE INDEX hoststatus_flap_det_en_idx on icinga_hoststatus(flap_detection_enabled);
+CREATE INDEX hoststatus_is_flapping_idx on icinga_hoststatus(is_flapping);
+CREATE INDEX hoststatus_p_state_chg_idx on icinga_hoststatus(percent_state_change);
+CREATE INDEX hoststatus_latency_idx on icinga_hoststatus(latency);
+CREATE INDEX hoststatus_ex_time_idx on icinga_hoststatus(execution_time);
+CREATE INDEX hoststatus_sch_downt_d_idx on icinga_hoststatus(scheduled_downtime_depth);
+
+-- services
+CREATE INDEX services_host_object_id_idx on icinga_services(host_object_id);
+
+--servicestatus
+CREATE INDEX srvcstatus_stat_upd_time_idx on icinga_servicestatus(status_update_time);
+CREATE INDEX srvcstatus_current_state_idx on icinga_servicestatus(current_state);
+CREATE INDEX srvcstatus_check_type_idx on icinga_servicestatus(check_type);
+CREATE INDEX srvcstatus_state_type_idx on icinga_servicestatus(state_type);
+CREATE INDEX srvcstatus_last_state_chg_idx on icinga_servicestatus(last_state_change);
+CREATE INDEX srvcstatus_notif_enabled_idx on icinga_servicestatus(notifications_enabled);
+CREATE INDEX srvcstatus_problem_ack_idx on icinga_servicestatus(problem_has_been_acknowledged);
+CREATE INDEX srvcstatus_act_chks_en_idx on icinga_servicestatus(active_checks_enabled);
+CREATE INDEX srvcstatus_pas_chks_en_idx on icinga_servicestatus(passive_checks_enabled);
+CREATE INDEX srvcstatus_event_hdl_en_idx on icinga_servicestatus(event_handler_enabled);
+CREATE INDEX srvcstatus_flap_det_en_idx on icinga_servicestatus(flap_detection_enabled);
+CREATE INDEX srvcstatus_is_flapping_idx on icinga_servicestatus(is_flapping);
+CREATE INDEX srvcstatus_p_state_chg_idx on icinga_servicestatus(percent_state_change);
+CREATE INDEX srvcstatus_latency_idx on icinga_servicestatus(latency);
+CREATE INDEX srvcstatus_ex_time_idx on icinga_servicestatus(execution_time);
+CREATE INDEX srvcstatus_sch_downt_d_idx on icinga_servicestatus(scheduled_downtime_depth);
+
+-- timedeventqueue
+CREATE INDEX timed_e_q_event_type_idx on icinga_timedeventqueue(event_type);
+CREATE INDEX timed_e_q_sched_time_idx on icinga_timedeventqueue(scheduled_time);
+CREATE INDEX timed_e_q_object_id_idx on icinga_timedeventqueue(object_id);
+CREATE INDEX timed_e_q_rec_ev_id_idx on icinga_timedeventqueue(recurring_event);
+
+-- timedevents
+CREATE INDEX timed_e_event_type_idx on icinga_timedevents(event_type);
+--CREATE INDEX timed_e_sched_time_idx on icinga_timedevents(scheduled_time); --already set for delete
+CREATE INDEX timed_e_object_id_idx on icinga_timedevents(object_id);
+CREATE INDEX timed_e_rec_ev_idx on icinga_timedevents(recurring_event);
+
+-- hostchecks
+CREATE INDEX hostchks_h_obj_id_idx on icinga_hostchecks(host_object_id);
+
+-- servicechecks
+CREATE INDEX servicechks_s_obj_id_idx on icinga_servicechecks(service_object_id);
+
+-- objects
+CREATE INDEX objects_objtype_id_idx ON icinga_objects(objecttype_id);
+CREATE INDEX objects_name1_idx ON icinga_objects(name1);
+CREATE INDEX objects_name2_idx ON icinga_objects(name2);
+CREATE INDEX objects_inst_id_idx ON icinga_objects(instance_id);
+
+-- instances
+-- CREATE INDEX instances_name_idx on icinga_instances(instance_name);
+
+-- logentries
+-- CREATE INDEX loge_instance_id_idx on icinga_logentries(instance_id);
+-- #236
+CREATE INDEX loge_time_idx on icinga_logentries(logentry_time);
+-- CREATE INDEX loge_data_idx on icinga_logentries(logentry_data);
+CREATE INDEX loge_inst_id_time_idx on icinga_logentries (instance_id, logentry_time);
+
+
+-- commenthistory
+-- CREATE INDEX c_hist_instance_id_idx on icinga_logentries(instance_id);
+-- CREATE INDEX c_hist_c_time_idx on icinga_logentries(comment_time);
+-- CREATE INDEX c_hist_i_c_id_idx on icinga_logentries(internal_comment_id);
+
+-- downtimehistory
+-- CREATE INDEX d_t_hist_nstance_id_idx on icinga_downtimehistory(instance_id);
+-- CREATE INDEX d_t_hist_type_idx on icinga_downtimehistory(downtime_type);
+-- CREATE INDEX d_t_hist_object_id_idx on icinga_downtimehistory(object_id);
+-- CREATE INDEX d_t_hist_entry_time_idx on icinga_downtimehistory(entry_time);
+-- CREATE INDEX d_t_hist_sched_start_idx on icinga_downtimehistory(scheduled_start_time);
+-- CREATE INDEX d_t_hist_sched_end_idx on icinga_downtimehistory(scheduled_end_time);
+
+-- scheduleddowntime
+-- CREATE INDEX sched_d_t_downtime_type_idx on icinga_scheduleddowntime(downtime_type);
+-- CREATE INDEX sched_d_t_object_id_idx on icinga_scheduleddowntime(object_id);
+-- CREATE INDEX sched_d_t_entry_time_idx on icinga_scheduleddowntime(entry_time);
+-- CREATE INDEX sched_d_t_start_time_idx on icinga_scheduleddowntime(scheduled_start_time);
+-- CREATE INDEX sched_d_t_end_time_idx on icinga_scheduleddowntime(scheduled_end_time);
+
+-- statehistory
+CREATE INDEX statehist_i_id_o_id_s_ty_s_ti on icinga_statehistory(instance_id, object_id, state_type, state_time);
+
+
+-- -----------------------------------------
+-- set dbversion
+-- -----------------------------------------
+
+SELECT updatedbversion('1.4.0');
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/module/idoutils/db/scripts/installdb.in
^
|
@@ -45,7 +45,7 @@
or die "Cannot connect to database";
# Current database version
-my $thisversion="1.4.0";
+my $thisversion="1.4.1";
# Create version table if it doesn't exist
eval { $dbh->do("SELECT * FROM icinga_dbversion LIMIT 1") };
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/module/idoutils/db/scripts/upgradedb.in
^
|
@@ -53,9 +53,9 @@
# Get current database version
my $version;
-my $thisversion="1.4.0";
-my $lastversion="1.4.0";
-my $legacyversion="1.4.0";
+my $thisversion="1.4.1";
+my $lastversion="1.4.1";
+my $legacyversion="1.4.1";
$version = $dbh->selectrow_array("SELECT version FROM icinga_dbversion WHERE name='idoutils'");
if ($version eq "") {
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/module/idoutils/include/ido2db.h
^
|
@@ -14,7 +14,7 @@
#define IDO2DB_NAME "IDO2DB"
#define IDO2DB_DATE "05-11-2011"
-#define IDO2DB_VERSION "1.4.0"
+#define IDO2DB_VERSION "1.4.1"
#define IDO2DB_SCHEMA_VERSION "1.4.0"
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/module/idoutils/include/idomod.h
^
|
@@ -9,7 +9,7 @@
#ifndef _NDBXT_IDOMOD_H
#define _NDBXT_IDOMOD_H
-#define IDOMOD_VERSION "1.4.0"
+#define IDOMOD_VERSION "1.4.1"
#define IDOMOD_NAME "IDOMOD"
#define IDOMOD_DATE "05-11-2011"
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/module/idoutils/src/file2sock.c
^
|
@@ -12,7 +12,7 @@
#include "../include/common.h"
#include "../include/io.h"
-#define FILE2SOCK_VERSION "1.4.0"
+#define FILE2SOCK_VERSION "1.4.1"
#define FILE2SOCK_NAME "FILE2SOCK"
#define FILE2SOCK_DATE "05-11-2011"
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/module/idoutils/src/log2ido.c
^
|
@@ -11,7 +11,7 @@
#include "../include/io.h"
#include "../include/protoapi.h"
-#define LOG2IDO_VERSION "1.4.0"
+#define LOG2IDO_VERSION "1.4.1"
#define LOG2IDO_NAME "LOG2IDO"
#define LOG2IDO_DATE "05-11-2011"
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/module/idoutils/src/sockdebug.c
^
|
@@ -9,7 +9,7 @@
#include "../../../include/config.h"
#include "../include/io.h"
-#define SOCKDEBUG_VERSION "1.4.0"
+#define SOCKDEBUG_VERSION "1.4.1"
#define SOCKDEBUG_NAME "SOCKDEBUG"
#define SOCKDEBUG_DATE "05-11-2011"
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/sample-config/cgi.cfg.in
^
|
@@ -450,6 +450,16 @@
show_tac_header=1
+# SHOW PENDING IN TAC HEADER
+# This options enables the display of pending counts in
+# the tac header. If your display is less than 1024x768
+# and this is enabled, the tactical information may not
+# fit well in the top frame.
+# By default it is enabled.
+
+show_tac_header_pending=1
+
+
# SHOW INITIAL STATES IN SHOWLOG OPTION
# This options allows you to specify if initial states
|
[-]
[+]
|
Changed |
icinga-1.4.1.tar.bz2/update-version
^
|
@@ -10,7 +10,7 @@
fi
# Current version number
-CURRENTVERSION=1.4.0
+CURRENTVERSION=1.4.1
# Last date
LASTDATE=05-11-2011
@@ -45,7 +45,7 @@
perl -i -p -e "s/Version: .*/Version: $newversion/;" icinga.spec
# Update version number Doxyfile
-perl -i -p -e "s/PROJECT_NUMBER = .*/PROJECT_NUMBER = $newversion/;" Doxyfile
+#perl -i -p -e "s/PROJECT_NUMBER = .*/PROJECT_NUMBER = $newversion/;" Doxyfile
# Update version number in Makefile.in
perl -i -p -e "s/ICINGA_VERSION=.*/ICINGA_VERSION=$newversion/;" Makefile.in
|