2014-05-23 01:01:06 +02:00
# <a id="troubleshooting"></a> Icinga 2 Troubleshooting
## <a id="troubleshooting-information-required"></a> Which information is required
* Which distribution and version
* How was Icinga 2 installed (and which repository in case)
* Run `icinga2 --version`
* Provide complete configuration snippets explaining your problem in detail
* Provide complete logs targetting your problem
* If the check command failed - what's the output of your manual plugin tests?
2015-01-23 14:46:33 +01:00
* In case of [debugging ](12-troubleshooting.md#debug ) Icinga 2, the full back traces and outputs
2014-05-23 01:01:06 +02:00
2014-05-23 11:56:30 +02:00
## <a id="troubleshooting-enable-debug-output"></a> Enable Debug Output
2014-05-29 11:58:25 +02:00
Run Icinga 2 in the foreground with debugging enabled. Specify the console
log severity as an additional parameter argument to `-x` .
2014-05-23 11:56:30 +02:00
2015-01-21 08:01:49 +01:00
# /usr/sbin/icinga2 daemon -x notice
The log level can be one of `critical` , `warning` , `information` , `notice`
and `debug` .
2014-05-23 11:56:30 +02:00
2015-01-21 08:01:49 +01:00
Alternatively you can enable the debug log:
2014-05-23 11:56:30 +02:00
2014-10-14 18:32:15 +02:00
# icinga2 feature enable debuglog
2014-05-23 11:56:30 +02:00
# service icinga2 restart
2015-01-22 16:09:28 +01:00
You can find the debug log file in `/var/log/icinga2/debug.log` .
2014-05-23 11:56:30 +02:00
2014-08-27 14:32:40 +02:00
## <a id="list-configuration-objects"></a> List Configuration Objects
2015-01-21 08:01:49 +01:00
The `icinga2 object list` CLI command can be used to list all configuration objects and their
2014-11-01 21:35:48 +01:00
attributes. The tool also shows where each of the attributes was modified.
2015-01-23 14:46:33 +01:00
That way you can also identify which objects have been created from your [apply rules ](15-language-reference.md#apply ).
2014-08-27 14:32:40 +02:00
2014-10-15 14:29:29 +02:00
# icinga2 object list
Object 'localhost!ssh' of type 'Service':
* __name = 'localhost!ssh'
* check_command = 'ssh'
% = modified in '/etc/icinga2/conf.d/hosts/localhost/ssh.conf', lines 5:3-5:23
* check_interval = 60
% = modified in '/etc/icinga2/conf.d/templates.conf', lines 24:3-24:21
* host_name = 'localhost'
% = modified in '/etc/icinga2/conf.d/hosts/localhost/ssh.conf', lines 4:3-4:25
* max_check_attempts = 3
% = modified in '/etc/icinga2/conf.d/templates.conf', lines 23:3-23:24
* name = 'ssh'
* retry_interval = 30
% = modified in '/etc/icinga2/conf.d/templates.conf', lines 25:3-25:22
* templates = [ 'ssh', 'generic-service' ]
% += modified in '/etc/icinga2/conf.d/hosts/localhost/ssh.conf', lines 1:0-7:1
% += modified in '/etc/icinga2/conf.d/templates.conf', lines 22:1-26:1
* type = 'Service'
* vars
% += modified in '/etc/icinga2/conf.d/hosts/localhost/ssh.conf', lines 6:3-6:19
* sla = '24x7'
% = modified in '/etc/icinga2/conf.d/hosts/localhost/ssh.conf', lines 6:3-6:19
2014-08-27 14:32:40 +02:00
[...]
2015-01-21 08:01:49 +01:00
You can also filter by name and type:
2014-10-15 14:29:29 +02:00
# icinga2 object list --name *ssh* --type Service
Object 'localhost!ssh' of type 'Service':
* __name = 'localhost!ssh'
* check_command = 'ssh'
% = modified in '/etc/icinga2/conf.d/hosts/localhost/ssh.conf', lines 5:3-5:23
* check_interval = 60
% = modified in '/etc/icinga2/conf.d/templates.conf', lines 24:3-24:21
* host_name = 'localhost'
% = modified in '/etc/icinga2/conf.d/hosts/localhost/ssh.conf', lines 4:3-4:25
* max_check_attempts = 3
% = modified in '/etc/icinga2/conf.d/templates.conf', lines 23:3-23:24
* name = 'ssh'
* retry_interval = 30
% = modified in '/etc/icinga2/conf.d/templates.conf', lines 25:3-25:22
* templates = [ 'ssh', 'generic-service' ]
% += modified in '/etc/icinga2/conf.d/hosts/localhost/ssh.conf', lines 1:0-7:1
% += modified in '/etc/icinga2/conf.d/templates.conf', lines 22:1-26:1
* type = 'Service'
* vars
% += modified in '/etc/icinga2/conf.d/hosts/localhost/ssh.conf', lines 6:3-6:19
* sla = '24x7'
% = modified in '/etc/icinga2/conf.d/hosts/localhost/ssh.conf', lines 6:3-6:19
2014-11-01 21:35:48 +01:00
2014-10-15 14:29:29 +02:00
Found 1 Service objects.
2014-11-01 21:35:48 +01:00
2014-10-15 14:29:29 +02:00
[2014-10-15 14:27:19 +0200] information/cli: Parsed 175 objects.
2015-01-22 16:09:28 +01:00
## <a id="check-command-definitions"></a> Where are the check command definitions?
2014-11-01 21:35:48 +01:00
2015-01-25 16:07:43 +01:00
Icinga 2 features a number of built-in [check command definitions ](6-icinga-template-library.md#plugin-check-commands ) which are
2014-11-01 21:35:48 +01:00
included using
include < itl >
include < plugins >
2015-01-25 16:07:43 +01:00
in the [icinga2.conf ](4-configuring-icinga-2.md#icinga2-conf ) configuration file. These files are not considered configuration files and will be overridden
2015-01-21 08:01:49 +01:00
on upgrade, so please send modifications as proposed patches upstream. The default include path is set to
2014-11-01 21:35:48 +01:00
`LocalStateDir + "/share/icinga2/includes"` .
2014-10-15 14:29:29 +02:00
2014-11-01 21:35:48 +01:00
You should add your own command definitions to a new file in `conf.d/` called `commands.conf`
or similar.
2014-08-27 14:32:40 +02:00
2014-05-23 01:01:06 +02:00
## <a id="checks-not-executed"></a> Checks are not executed
2014-05-29 11:58:25 +02:00
* Check the debug log to see if the check command gets executed
* Verify that failed depedencies do not prevent command execution
2014-05-23 01:01:06 +02:00
* Make sure that the plugin is executable by the Icinga 2 user (run a manual test)
2015-01-23 15:32:41 +01:00
* Make sure the [checker ](7-cli-commands.md#features ) feature is enabled.
2014-05-23 01:01:06 +02:00
2014-08-22 15:42:01 +02:00
Examples:
2014-05-23 01:01:06 +02:00
2014-08-22 15:42:01 +02:00
# sudo -u icinga /usr/lib/nagios/plugins/check_ping -4 -H 127.0.0.1 -c 5000,100% -w 3000,80%
2014-05-29 15:34:01 +02:00
2014-10-14 18:32:15 +02:00
# icinga2 feature enable checker
2014-05-29 15:34:01 +02:00
The feature 'checker' is already enabled.
2014-05-23 01:01:06 +02:00
## <a id="notifications-not-sent"></a> Notifications are not sent
2014-05-29 11:58:25 +02:00
* Check the debug log to see if a notification is triggered
2014-05-23 01:01:06 +02:00
* If yes, verify that all conditions are satisfied
2014-05-29 11:58:25 +02:00
* Are any errors on the notification command execution logged?
2014-05-23 01:01:06 +02:00
Verify the following configuration
2014-10-28 21:43:20 +01:00
* Is the host/service `enable_notifications` attribute set, and if, to which value?
2014-05-23 01:01:06 +02:00
* Do the notification attributes `states` , `types` , `period` match the notification conditions?
* Do the user attributes `states` , `types` , `period` match the notification conditions?
* Are there any notification `begin` and `end` times configured?
2015-01-23 15:32:41 +01:00
* Make sure the [notification ](7-cli-commands.md#features ) feature is enabled.
2014-08-22 15:42:01 +02:00
* Does the referenced NotificationCommand work when executed as Icinga user on the shell?
2014-10-28 21:43:20 +01:00
If notifications are to be sent via mail make sure that the mail program specified exists.
The name and location depends on the distribution so the preconfigured setting might have to be
changed on your system.
2014-08-22 15:42:01 +02:00
Examples:
2014-05-29 15:34:01 +02:00
2014-10-14 18:32:15 +02:00
# icinga2 feature enable notification
2014-05-29 15:34:01 +02:00
The feature 'notification' is already enabled.
2014-05-23 01:01:06 +02:00
## <a id="feature-not-working"></a> Feature is not working
2014-05-29 11:58:25 +02:00
* Make sure that the feature configuration is enabled by symlinking from `features-available/`
2015-01-23 14:15:57 +01:00
to `features-enabled` and that the latter is included in [icinga2.conf ](4-configuring-icinga-2.md#icinga2-conf ).
2014-05-23 01:01:06 +02:00
* Are the feature attributes set correctly according to the documentation?
* Any errors on the logs?
2014-05-23 16:24:11 +02:00
## <a id="configuration-ignored"></a> Configuration is ignored
2015-01-23 14:46:33 +01:00
* Make sure that the line(s) are not [commented out ](15-language-reference.md#comments ) (starting with `//` or `#` , or
2014-05-29 16:54:57 +02:00
encapsulated by `/* ... */` ).
2015-01-23 14:15:57 +01:00
* Is the configuration file included in [icinga2.conf ](4-configuring-icinga-2.md#icinga2-conf )?
2014-05-23 16:24:11 +02:00
2014-05-23 01:01:06 +02:00
## <a id="configuration-attribute-inheritance"></a> Configuration attributes are inherited from
2015-01-23 14:46:33 +01:00
Icinga 2 allows you to import templates using the [import ](15-language-reference.md#template-imports ) keyword. If these templates
2014-05-29 11:58:25 +02:00
contain additional attributes, your objects will automatically inherit them. You can override
2014-05-23 01:01:06 +02:00
or modify these attributes in the current object.
2014-08-01 16:47:14 +02:00
## <a id="troubleshooting-cluster"></a> Cluster Troubleshooting
2015-01-23 15:32:41 +01:00
You should configure the [cluster health checks ](8-monitoring-remote-systems.md#cluster-health-check ) if you haven't
2014-08-01 16:47:14 +02:00
done so already.
> **Note**
>
> Some problems just exist due to wrong file permissions or packet filters applied. Make
> sure to check these in the first place.
### <a id="troubleshooting-cluster-connection-errors"></a> Cluster Troubleshooting Connection Errors
General connection errors normally lead you to one of the following problems:
* Wrong network configuration
* Packet loss on the connection
* Firewall rules preventing traffic
Use tools like `netstat` , `tcpdump` , `nmap` , etc to make sure that the cluster communication
happens (default port is `5665` ).
# tcpdump -n port 5665 -i any
2014-08-22 15:42:01 +02:00
2014-08-01 16:47:14 +02:00
# netstat -tulpen | grep icinga
# nmap yourclusternode.localdomain
### <a id="troubleshooting-cluster-ssl-errors"></a> Cluster Troubleshooting SSL Errors
If the cluster communication fails with cryptic SSL error messages, make sure to check
the following
* File permissions on the SSL certificate files
2014-08-22 15:42:01 +02:00
* Does the used CA match for all cluster endpoints?
2014-08-01 16:47:14 +02:00
2014-08-22 15:42:01 +02:00
Examples:
2014-08-01 16:47:14 +02:00
2014-08-22 15:42:01 +02:00
# ls -la /etc/icinga2/pki
2014-08-01 16:47:14 +02:00
### <a id="troubleshooting-cluster-message-errors"></a> Cluster Troubleshooting Message Errors
At some point, when the network connection is broken or gone, the Icinga 2 instances
will be disconnected. If the connection can't be re-established between zones and endpoints,
they remain in a Split-Brain-mode and history may differ.
Although the Icinga 2 cluster protocol stores historical events in a replay log for later synchronisation,
you should make sure to check why the network connection failed.
2014-08-24 11:21:54 +02:00
### <a id="troubleshooting-cluster-config-sync"></a> Cluster Troubleshooting Config Sync
If the cluster zones do not sync their configuration, make sure to check the following:
* Within a config master zone, only one configuration master is allowed to have its config in `/etc/icinga2/zones.d` .
** The master syncs the configuration to `/var/lib/icinga2/api/zones/` during startup and only syncs valid configuration to the other nodes
** The other nodes receive the configuration into `/var/lib/icinga2/api/zones/`
2015-01-23 15:32:41 +01:00
* The `icinga2.log` log file will indicate whether this ApiListener [accepts config ](8-monitoring-remote-systems.md#zone-config-sync-permissions ), or not
2014-08-01 16:47:14 +02:00
2014-05-23 01:01:06 +02:00
## <a id="debug"></a> Debug Icinga 2
2014-11-03 19:36:45 +01:00
> **Note**
>
> If you are planning to build your own development environment,
> please consult the `INSTALL.md` file from the source tree.
### <a id="debug-requirements"></a> Debug Requirements
2014-05-23 01:01:06 +02:00
Make sure that the debug symbols are available for Icinga 2.
The Icinga 2 packages provide a debug package which must be
installed separately for all involved binaries, like `icinga2-bin`
or `icinga2-ido-mysql` .
2015-01-21 08:01:49 +01:00
Debian/Ubuntu:
# apt-get install icinga2-dbg
RHEL/CentOS:
2014-06-12 13:10:37 +02:00
# yum install icinga2-debuginfo
2015-01-21 08:01:49 +01:00
SLES/openSUSE:
2014-06-12 13:10:37 +02:00
# zypper install icinga2-bin-debuginfo icinga2-ido-mysql-debuginfo
2015-01-21 08:01:49 +01:00
2014-06-12 13:10:37 +02:00
2015-01-21 08:01:49 +01:00
Furthermore, you may also have to install debug symbols for Boost and your C library.
2014-05-23 01:01:06 +02:00
2015-01-21 08:01:49 +01:00
If you're building your own binaries you should use the `-DCMAKE_BUILD_TYPE=Debug` cmake
build flag for debug builds.
2014-05-23 01:01:06 +02:00
2014-11-03 19:36:45 +01:00
2014-05-23 01:01:06 +02:00
### <a id="development-debug-gdb"></a> GDB
2014-11-03 19:36:45 +01:00
Install gdb:
2015-01-21 08:01:49 +01:00
Debian/Ubuntu:
# apt-get install gdb
RHEL/CentOS/Fedora:
2014-11-03 19:36:45 +01:00
# yum install gdb
2014-12-15 11:26:22 +01:00
2015-01-21 08:01:49 +01:00
SLES/openSUSE:
2014-11-03 19:36:45 +01:00
# zypper install gdb
2014-12-15 11:26:22 +01:00
2014-11-03 19:36:45 +01:00
Install the `boost` , `python` and `icinga2` pretty printers. Absolute paths are required,
so please make sure to update the installation paths accordingly (`pwd`).
2014-05-23 01:01:06 +02:00
2014-11-03 19:36:45 +01:00
Boost Pretty Printers:
2014-12-15 11:26:22 +01:00
$ mkdir -p ~/.gdb_printers & & cd ~/.gdb_printers
2014-11-03 19:36:45 +01:00
$ git clone https://github.com/ruediger/Boost-Pretty-Printer.git & & cd Boost-Pretty-Printer
$ pwd
/home/michi/.gdb_printers/Boost-Pretty-Printer
Python Pretty Printers:
$ cd ~/.gdb_printers
$ svn co svn://gcc.gnu.org/svn/gcc/trunk/libstdc++-v3/python
2014-12-15 11:26:22 +01:00
Icinga 2 Pretty Printers:
2014-11-03 19:36:45 +01:00
2014-12-15 11:26:22 +01:00
$ mkdir -p ~/.gdb_printers/icinga2 & & cd ~/.gdb_printers/icinga2
2014-11-03 19:36:45 +01:00
$ wget https://raw.githubusercontent.com/Icinga/icinga2/master/tools/debug/gdb/icingadbg.py
2014-12-15 11:26:22 +01:00
2014-11-03 19:36:45 +01:00
Now you'll need to modify/setup your `~/.gdbinit` configuration file.
You can download the one from Icinga 2 and modify all paths.
2015-01-23 14:15:57 +01:00
Example on Fedora:
2014-11-03 19:36:45 +01:00
$ wget https://raw.githubusercontent.com/Icinga/icinga2/master/tools/debug/gdb/gdbinit -O ~/.gdbinit
$ vim ~/.gdbinit
2014-12-15 11:26:22 +01:00
set print pretty on
2014-11-03 19:36:45 +01:00
python
import sys
sys.path.insert(0, '/home/michi/.gdb_printers/icinga2')
from icingadbg import register_icinga_printers
register_icinga_printers()
end
2014-12-15 11:26:22 +01:00
2014-11-03 19:36:45 +01:00
python
import sys
sys.path.insert(0, '/home/michi/.gdb_printers/python')
from libstdcxx.v6.printers import register_libstdcxx_printers
register_libstdcxx_printers(None)
end
2014-12-15 11:26:22 +01:00
2014-11-03 19:36:45 +01:00
python
import sys
sys.path.insert(0, '/home/michi/.gdb_printers/Boost-Pretty-Printer')
from boost.printers import register_printer_gen
register_printer_gen(None)
end
2014-12-15 11:26:22 +01:00
If you are getting the following error when running gdb, the `libstdcxx`
printers are already preloaded in your environment and you can remove
the duplicate import in your `~/.gdbinit` file.
RuntimeError: pretty-printer already registered: libstdc++-v6
2014-05-23 01:01:06 +02:00
### <a id="development-debug-gdb-run"></a> GDB Run
2014-11-03 19:36:45 +01:00
Call GDB with the binary and all arguments and run it in foreground.
# gdb --args /usr/sbin/icinga2 daemon -x debug
2014-12-15 11:26:22 +01:00
2014-11-03 19:36:45 +01:00
> **Note**
>
> If gdb tells you it's missing debug symbols, quit gdb and install
> them: `Missing separate debuginfos, use: debuginfo-install ...`
2014-05-23 01:01:06 +02:00
Run the application.
(gdb) r
Kill the running application.
(gdb) k
Continue after breakpoint.
(gdb) c
### <a id="development-debug-gdb-backtrace"></a> GDB Backtrace
If Icinga 2 aborted its operation abnormally, generate a backtrace.
(gdb) bt
(gdb) bt full
>**Tip**
>
> If you're opening an issue at [https://dev.icinga.org] make sure
2014-05-29 11:58:25 +02:00
> to attach as much detail as possible.
2014-05-23 01:01:06 +02:00
### <a id="development-debug-gdb-backtrace-stepping"></a> GDB Backtrace Stepping
2014-05-29 11:58:25 +02:00
Identifying the problem may require stepping into the backtrace, analysing
the current scope, attributes, and possible unmet requirements. `p` prints
2014-05-23 01:01:06 +02:00
the value of the selected variable or function call result.
(gdb) up
(gdb) down
(gdb) p checkable
(gdb) p checkable.px->m_Name
### <a id="development-debug-gdb-breakpoint"></a> GDB Breakpoints
2014-05-29 11:58:25 +02:00
To set a breakpoint to a specific function call, or file specific line.
2014-05-23 01:01:06 +02:00
(gdb) b checkable.cpp:125
(gdb) b icinga::Checkable::SetEnablePerfdata
GDB will ask about loading the required symbols later, select `yes` instead
of `no` .
Then run Icinga 2 until it reaches the first breakpoint. Continue with `c`
afterwards.
(gdb) run
(gdb) c
If you want to delete all breakpoints, use `d` and select `yes` .
(gdb) d
2014-11-03 19:36:45 +01:00
> **Tip**
>
> When debugging exceptions, set your breakpoint like this: `b __cxa_throw`.
Breakpoint Example:
(gdb) b __cxa_throw
(gdb) r
(gdb) up
....
(gdb) up
#11 0x00007ffff7cbf9ff in icinga::Utility::GlobRecursive(icinga::String const& , icinga::String const& , boost::function< void ( icinga::String const &) > const& , int) (path=..., pattern=..., callback=..., type=1)
at /home/michi/coding/icinga/icinga2/lib/base/utility.cpp:609
609 callback(cpath);
(gdb) l
604
605 #endif /* _WIN32 */
606
607 std::sort(files.begin(), files.end());
608 BOOST_FOREACH(const String& cpath, files) {
609 callback(cpath);
610 }
611
612 std::sort(dirs.begin(), dirs.end());
613 BOOST_FOREACH(const String& cpath, dirs) {
(gdb) p files
$3 = std::vector of length 11, capacity 16 = {{static NPos = 18446744073709551615, m_Data = "/etc/icinga2/conf.d/agent.conf"}, {static NPos = 18446744073709551615,
m_Data = "/etc/icinga2/conf.d/commands.conf"}, {static NPos = 18446744073709551615, m_Data = "/etc/icinga2/conf.d/downtimes.conf"}, {static NPos = 18446744073709551615,
m_Data = "/etc/icinga2/conf.d/groups.conf"}, {static NPos = 18446744073709551615, m_Data = "/etc/icinga2/conf.d/notifications.conf"}, {static NPos = 18446744073709551615,
m_Data = "/etc/icinga2/conf.d/satellite.conf"}, {static NPos = 18446744073709551615, m_Data = "/etc/icinga2/conf.d/services.conf"}, {static NPos = 18446744073709551615,
m_Data = "/etc/icinga2/conf.d/templates.conf"}, {static NPos = 18446744073709551615, m_Data = "/etc/icinga2/conf.d/test.conf"}, {static NPos = 18446744073709551615,
m_Data = "/etc/icinga2/conf.d/timeperiods.conf"}, {static NPos = 18446744073709551615, m_Data = "/etc/icinga2/conf.d/users.conf"}}