icinga2/doc/04-configuration.md

738 lines
28 KiB
Markdown
Raw Normal View History

# Configuration <a id="configuration"></a>
2015-01-23 14:15:57 +01:00
The Icinga [configuration](https://icinga.com/products/configuration/)
can be easily managed with either the [Icinga Director](https://icinga.com/docs/director/latest/),
config management tools or plain text within the [Icinga DSL](04-configuration.md#configuration).
Before looking into web based configuration or any sort of automation,
we recommend to start with the configuration files and fully understand
the possibilities of the Icinga DSL (Domain Specific Language).
The package installation provides example configuration which already
monitors the local Icinga server. You can view the monitoring details
in Icinga Web.
![Icinga Web Local Server](images/configuration/icinga_web_local_server.png)
2015-01-23 15:32:41 +01:00
The [Language Reference](17-language-reference.md#language-reference) chapter explains details
on value types (string, number, dictionaries, etc.) and the general configuration syntax.
2015-01-23 15:32:41 +01:00
## Configuration Best Practice <a id="configuration-best-practice"></a>
If you are ready to configure additional hosts, services, notifications,
dependencies, etc., you should think about the requirements first and then
decide for a possible strategy.
There are many ways of creating Icinga 2 configuration objects:
* The [Icinga Director](https://icinga.com/docs/director/latest/) as web based and/or automation configuration interface
* [Monitoring Automation with Icinga - The Director](https://icinga.com/2019/04/23/monitoring-automation-with-icinga-the-director/)
* Manually with your preferred editor, for example vi(m), nano, notepad, etc.
* Generated by a [configuration management tool](13-addons.md#configuration-tools) such as Puppet, Chef, Ansible, etc.
* A custom exporter script from your CMDB or inventory tool
* etc.
Find the best strategy for your own configuration and ask yourself the following questions:
* Do your hosts share a common group of services (for example linux hosts with disk, load, etc. checks)?
* Only a small set of users receives notifications and escalations for all hosts/services?
If you can at least answer one of these questions with yes, look for the
[apply rules](03-monitoring-basics.md#using-apply) logic instead of defining objects on a per
host and service basis.
* You are required to define specific configuration for each host/service?
* Does your configuration generation tool already know about the host-service-relationship?
Then you should look for the object specific configuration setting `host_name` etc. accordingly.
You decide on the "best" layout for configuration files and directories. Ensure that
2019-07-18 16:34:36 +02:00
the [icinga2.conf](04-configuration.md#icinga2-conf) configuration file includes them.
Consider these ideas:
* tree-based on locations, host groups, specific host attributes with sub levels of directories.
* flat `hosts.conf`, `services.conf`, etc. files for rule based configuration.
* generated configuration with one file per host and a global configuration for groups, users, etc.
* one big file generated from an external application (probably a bad idea for maintaining changes).
* your own.
In either way of choosing the right strategy you should additionally check the following:
* Are there any specific attributes describing the host/service you could set as `vars` custom variables?
You can later use them for applying assign/ignore rules, or export them into external interfaces.
* Put hosts into hostgroups, services into servicegroups and use these attributes for your apply rules.
* Use templates to store generic attributes for your objects and apply rules making your configuration more readable.
Details can be found in the [using templates](03-monitoring-basics.md#object-inheritance-using-templates) chapter.
2019-07-18 16:34:36 +02:00
* Apply rules may overlap. Keep a central place (for example, [services.conf](04-configuration.md#services-conf) or [notifications.conf](04-configuration.md#notifications-conf)) storing
the configuration instead of defining apply rules deep in your configuration tree.
* Every plugin used as check, notification or event command requires a `Command` definition.
Further details can be looked up in the [check commands](03-monitoring-basics.md#check-commands) chapter.
If you are planning to use a distributed monitoring setup with master, satellite and client installations
take the configuration location into account too. Everything configured on the master, synced to all other
nodes? Or any specific local configuration (e.g. health checks)?
There is a detailed chapter on [distributed monitoring scenarios](06-distributed-monitoring.md#distributed-monitoring-scenarios).
Please ensure to have read the [introduction](06-distributed-monitoring.md#distributed-monitoring) at first glance.
If you happen to have further questions, do not hesitate to join the
[community forum](https://community.icinga.com)
and ask community members for their experience and best practices.
## Your Configuration <a id="your-configuration"></a>
If you prefer to organize your own local object tree, you can also remove
`include_recursive "conf.d"` from your icinga2.conf file.
Create a new configuration directory, e.g. `objects.d` and include it
in your icinga2.conf file.
```
[root@icinga2-master1.localdomain /]# mkdir -p /etc/icinga2/objects.d
[root@icinga2-master1.localdomain /]# vim /etc/icinga2/icinga2.conf
/* Local object configuration on our master instance. */
include_recursive "objects.d"
```
This approach is used by the [Icinga 2 Puppet module](https://icinga.com/products/integrations/puppet/).
If you plan to setup a distributed setup with HA clusters and clients, please refer to [this chapter](#06-distributed-monitoring.md#distributed-monitoring-top-down)
for examples with `zones.d` as configuration directory.
## Configuration Overview <a id="configuring-icinga2-overview"></a>
### icinga2.conf <a id="icinga2-conf"></a>
2015-01-23 14:15:57 +01:00
An example configuration file is installed for you in `/etc/icinga2/icinga2.conf`.
Here's a brief description of the example configuration:
```
/**
* Icinga 2 configuration file
* -- this is where you define settings for the Icinga application including
* which hosts/services to check.
*
* For an overview of all available configuration options please refer
* to the documentation that is distributed as part of Icinga 2.
*/
```
2015-01-23 14:15:57 +01:00
Icinga 2 supports [C/C++-style comments](17-language-reference.md#comments).
2015-01-23 14:15:57 +01:00
/**
* The constants.conf defines global constants.
*/
include "constants.conf"
2015-01-23 14:15:57 +01:00
The `include` directive can be used to include other files.
```
/**
* The zones.conf defines zones for a cluster setup.
* Not required for single instance setups.
*/
include "zones.conf"
```
2015-01-23 14:15:57 +01:00
The [Icinga Template Library](10-icinga-template-library.md#icinga-template-library) provides a set of common templates
and [CheckCommand](03-monitoring-basics.md#check-commands) definitions.
```
/**
* The Icinga Template Library (ITL) provides a number of useful templates
* and command definitions.
* Common monitoring plugin command definitions are included separately.
*/
include <itl>
include <plugins>
include <plugins-contrib>
include <manubulon>
/**
* This includes the Icinga 2 Windows plugins. These command definitions
* are required on a master node when a client is used as command endpoint.
*/
include <windows-plugins>
/**
* This includes the NSClient++ check commands. These command definitions
* are required on a master node when a client is used as command endpoint.
*/
include <nscp>
/**
* The features-available directory contains a number of configuration
* files for features which can be enabled and disabled using the
* icinga2 feature enable / icinga2 feature disable CLI commands.
* These commands work by creating and removing symbolic links in
* the features-enabled directory.
*/
include "features-enabled/*.conf"
```
2015-01-23 14:15:57 +01:00
This `include` directive takes care of including the configuration files for all
the features which have been enabled with `icinga2 feature enable`. See
[Enabling/Disabling Features](11-cli-commands.md#enable-features) for more details.
2015-01-23 14:15:57 +01:00
```
/**
* Although in theory you could define all your objects in this file
* the preferred way is to create separate directories and files in the conf.d
* directory. Each of these files must have the file extension ".conf".
*/
include_recursive "conf.d"
```
2015-01-23 14:15:57 +01:00
2019-07-18 16:34:36 +02:00
You can put your own configuration files in the [conf.d](04-configuration.md#conf-d) directory. This
2015-01-23 14:15:57 +01:00
directive makes sure that all of your own configuration files are included.
### constants.conf <a id="constants-conf"></a>
2015-01-23 14:15:57 +01:00
The `constants.conf` configuration file can be used to define global constants.
By default, you need to make sure to set these constants:
* The `PluginDir` constant must be set to the path where the [Monitoring Project](https://www.monitoring-plugins.org/) plugins are installed.
This constant is used by a number of
[built-in check command definitions](10-icinga-template-library.md#icinga-template-library).
2015-01-23 14:15:57 +01:00
* The `NodeName` constant defines your local node name. Should be set to FQDN which is the default
if not set. This constant is required for local host configuration, monitoring remote clients and
cluster setup.
Example:
```
/* The directory which contains the plugins from the Monitoring Plugins project. */
const PluginDir = "/usr/lib64/nagios/plugins"
2015-01-23 14:15:57 +01:00
/* The directory which contains the Manubulon plugins.
* Check the documentation, chapter "SNMP Manubulon Plugin Check Commands", for details.
*/
const ManubulonPluginDir = "/usr/lib64/nagios/plugins"
2015-01-23 14:15:57 +01:00
/* Our local instance name. By default this is the server's hostname as returned by `hostname --fqdn`.
* This should be the common name from the API certificate.
*/
//const NodeName = "localhost"
2015-01-23 14:15:57 +01:00
/* Our local zone name. */
const ZoneName = NodeName
2015-01-23 14:15:57 +01:00
/* Secret key for remote node tickets */
const TicketSalt = ""
```
2015-01-23 14:15:57 +01:00
The `ZoneName` and `TicketSalt` constants are required for remote client
and distributed setups. The `node setup/wizard` CLI tools take care of
populating these values.
2015-01-23 14:15:57 +01:00
### zones.conf <a id="zones-conf"></a>
This file can be used to specify the required [Zone](09-object-types.md#objecttype-zone)
and [Endpoint](09-object-types.md#objecttype-endpoint) configuration object for
[distributed monitoring](06-distributed-monitoring.md#distributed-monitoring).
2019-07-18 16:34:36 +02:00
By default the `NodeName` and `ZoneName` [constants](04-configuration.md#constants-conf) will be used.
It also contains several [global zones](06-distributed-monitoring.md#distributed-monitoring-global-zone-config-sync)
for distributed monitoring environments.
Please ensure to modify this configuration with real names i.e. use the FQDN
mentioned in [this chapter](06-distributed-monitoring.md#distributed-monitoring-conventions)
for your `Zone` and `Endpoint` object names.
### The conf.d Directory <a id="conf-d"></a>
2015-01-23 14:15:57 +01:00
This directory contains **example configuration** which should help you get started
2015-01-23 14:15:57 +01:00
with monitoring the local host and its services. It is included in the
2019-07-18 16:34:36 +02:00
[icinga2.conf](04-configuration.md#icinga2-conf) configuration file by default.
2015-01-23 14:15:57 +01:00
It can be used as reference example for your own configuration strategy.
Just keep in mind to include the main directories in the
2019-07-18 16:34:36 +02:00
[icinga2.conf](04-configuration.md#icinga2-conf) file.
2015-01-23 14:15:57 +01:00
> **Note**
>
2019-07-18 16:34:36 +02:00
> You can remove the include directive in [icinga2.conf](04-configuration.md#icinga2-conf)
> if you prefer your own way of deploying Icinga 2 configuration.
2015-01-23 14:15:57 +01:00
Further details on configuration best practice and how to build your
2019-07-18 16:34:36 +02:00
own strategy is described in [this chapter](04-configuration.md#configuration-best-practice).
2015-01-23 14:15:57 +01:00
2015-01-25 16:07:43 +01:00
Available configuration files which are installed by default:
2015-01-23 14:15:57 +01:00
2019-07-18 16:34:36 +02:00
* [hosts.conf](04-configuration.md#hosts-conf)
* [services.conf](04-configuration.md#services-conf)
* [users.conf](04-configuration.md#users-conf)
* [notifications.conf](04-configuration.md#notifications-conf)
* [commands.conf](04-configuration.md#commands-conf)
* [groups.conf](04-configuration.md#groups-conf)
* [templates.conf](04-configuration.md#templates-conf)
* [downtimes.conf](04-configuration.md#downtimes-conf)
* [timeperiods.conf](04-configuration.md#timeperiods-conf)
* [api-users.conf](04-configuration.md#api-users-conf)
* [app.conf](04-configuration.md#app-conf)
#### hosts.conf <a id="hosts-conf"></a>
2015-01-23 14:15:57 +01:00
The `hosts.conf` file contains an example host based on your
2019-07-18 16:34:36 +02:00
`NodeName` setting in [constants.conf](04-configuration.md#constants-conf). You
2015-01-23 14:15:57 +01:00
can use global constants for your object names instead of string
values.
The `import` keyword is used to import the `generic-host` template which
takes care of setting up the host check command to `hostalive`. If you
require a different check command, you can override it in the object definition.
The `vars` attribute can be used to define custom variables which are available
for check and notification commands. Most of the [Plugin Check Commands](10-icinga-template-library.md#icinga-template-library)
2015-01-23 14:15:57 +01:00
in the Icinga Template Library require an `address` attribute.
The custom variable `os` is evaluated by the `linux-servers` group in
2019-07-18 16:34:36 +02:00
[groups.conf](04-configuration.md#groups-conf) making the local host a member.
2015-01-23 14:15:57 +01:00
2017-10-30 17:02:42 +01:00
The example host will show you how to:
2015-01-23 14:15:57 +01:00
* define http vhost attributes for the `http` service apply rule defined
2019-07-18 16:34:36 +02:00
in [services.conf](04-configuration.md#services-conf).
2015-01-23 14:15:57 +01:00
* define disks (all, specific `/`) and their attributes for the `disk`
2019-07-18 16:34:36 +02:00
service apply rule defined in [services.conf](04-configuration.md#services-conf).
2015-01-23 14:15:57 +01:00
* define notification types (`mail`) and set the groups attribute. This
2019-07-18 16:34:36 +02:00
will be used by notification apply rules in [notifications.conf](04-configuration.md#notifications-conf).
2015-01-23 14:15:57 +01:00
If you've installed [Icinga Web 2](https://icinga.com/docs/icinga-web-2/latest/doc/02-Installation/), you can
uncomment the http vhost attributes and reload Icinga 2. The apply
2019-07-18 16:34:36 +02:00
rules in [services.conf](04-configuration.md#services-conf) will automatically
2015-01-23 14:15:57 +01:00
generate a new service checking the `/icingaweb2` URI using the `http`
check.
```
/*
* Host definitions with object attributes
* used for apply rules for Service, Notification,
* Dependency and ScheduledDowntime objects.
*
* Tip: Use `icinga2 object list --type Host` to
* list all host objects after running
* configuration validation (`icinga2 daemon -C`).
*/
/*
* This is an example host based on your
* local host's FQDN. Specify the NodeName
* constant in `constants.conf` or use your
* own description, e.g. "db-host-1".
*/
object Host NodeName {
/* Import the default host template defined in `templates.conf`. */
import "generic-host"
/* Specify the address attributes for checks e.g. `ssh` or `http`. */
address = "127.0.0.1"
address6 = "::1"
/* Set custom variable `os` for hostgroup assignment in `groups.conf`. */
vars.os = "Linux"
/* Define http vhost attributes for service apply rules in `services.conf`. */
vars.http_vhosts["http"] = {
http_uri = "/"
}
/* Uncomment if you've successfully installed Icinga Web 2. */
//vars.http_vhosts["Icinga Web 2"] = {
// http_uri = "/icingaweb2"
//}
/* Define disks and attributes for service apply rules in `services.conf`. */
vars.disks["disk"] = {
/* No parameters. */
}
vars.disks["disk /"] = {
disk_partitions = "/"
}
/* Define notification mail attributes for notification apply rules in `notifications.conf`. */
vars.notification["mail"] = {
/* The UserGroup `icingaadmins` is defined in `users.conf`. */
groups = [ "icingaadmins" ]
}
}
```
2015-01-23 14:15:57 +01:00
This is only the host object definition. Now we'll need to make sure that this
2019-07-18 16:34:36 +02:00
host and your additional hosts are getting [services](04-configuration.md#services-conf) applied.
2015-01-23 14:15:57 +01:00
> **Tip**
>
> If you don't understand all the attributes and how to use [apply rules](17-language-reference.md#apply),
> don't worry -- the [monitoring basics](03-monitoring-basics.md#monitoring-basics) chapter will explain
2015-01-23 14:15:57 +01:00
> that in detail.
#### services.conf <a id="services-conf"></a>
2015-01-23 14:15:57 +01:00
These service [apply rules](17-language-reference.md#apply) will show you how to monitor
2015-01-23 14:15:57 +01:00
the local host, but also allow you to re-use or modify them for
your own requirements.
You should define all your service apply rules in `services.conf`
or any other central location keeping them organized.
By default, the local host will be monitored by the following services
Service(s) | Applied on host(s)
--------------------------------------------|------------------------
2017-10-30 17:02:42 +01:00
`load`, `procs`, `swap`, `users`, `icinga` | The `NodeName` host only.
`ping4`, `ping6` | All hosts with `address` resp. `address6` attribute.
2015-01-23 14:15:57 +01:00
`ssh` | All hosts with `address` and `vars.os` set to `Linux`
`http`, optional: `Icinga Web 2` | All hosts with custom variable `http_vhosts` defined as dictionary.
`disk`, `disk /` | All hosts with custom variable `disks` defined as dictionary.
2015-01-23 14:15:57 +01:00
2015-01-25 16:07:43 +01:00
The Debian packages also include an additional `apt` service check applied to the local host.
2015-01-23 14:15:57 +01:00
The command object `icinga` for the embedded health check is provided by the
[Icinga Template Library (ITL)](10-icinga-template-library.md#icinga-template-library) while `http_ip`, `ssh`, `load`, `processes`,
`users` and `disk` are all provided by the [Plugin Check Commands](10-icinga-template-library.md#icinga-template-library)
2015-01-23 14:15:57 +01:00
which we enabled earlier by including the `itl` and `plugins` configuration file.
Example `load` service apply rule:
```
apply Service "load" {
import "generic-service"
2015-01-23 14:15:57 +01:00
check_command = "load"
2015-01-23 14:15:57 +01:00
/* Used by the ScheduledDowntime apply rule in `downtimes.conf`. */
vars.backup_downtime = "02:00-03:00"
2015-01-23 14:15:57 +01:00
assign where host.name == NodeName
}
```
2015-01-23 14:15:57 +01:00
The `apply` keyword can be used to create new objects which are associated with
another group of objects. You can `import` existing templates, define (custom)
attributes.
The custom variable `backup_downtime` is defined to a specific timerange string.
2015-01-23 14:15:57 +01:00
This variable value will be used for applying a `ScheduledDowntime` object to
2019-07-18 16:34:36 +02:00
these services in [downtimes.conf](04-configuration.md#downtimes-conf).
2015-01-23 14:15:57 +01:00
In this example the `assign where` condition is a boolean expression which is
evaluated for all objects of type `Host` and a new service with name "load"
is created for each matching host. [Expression operators](17-language-reference.md#expression-operators)
2015-01-23 14:15:57 +01:00
may be used in `assign where` conditions.
2020-11-05 13:02:47 +01:00
Multiple `assign where` conditions can be combined with `AND` using the `&&` operator
2015-01-23 14:15:57 +01:00
as shown in the `ssh` example:
```
apply Service "ssh" {
import "generic-service"
2015-01-23 14:15:57 +01:00
check_command = "ssh"
2015-01-23 14:15:57 +01:00
assign where host.address && host.vars.os == "Linux"
}
```
2015-01-23 14:15:57 +01:00
In this example, the service `ssh` is applied to all hosts having the `address`
attribute defined `AND` having the custom variable `os` set to the string
2015-01-23 14:15:57 +01:00
`Linux`.
2017-10-30 17:02:42 +01:00
You can modify this condition to match multiple expressions by combining `AND`
and `OR` using `&&` and `||` [operators](17-language-reference.md#expression-operators), for example
2015-01-23 14:15:57 +01:00
`assign where host.address && (vars.os == "Linux" || vars.os == "Windows")`.
A more advanced example is shown by the `http` and `disk` service apply
rules. While one `apply` rule for `ssh` will only create a service for matching
hosts, you can go one step further: Generate apply rules based on array items
or dictionary key-value pairs.
2019-07-18 16:34:36 +02:00
The idea is simple: Your host in [hosts.conf](04-configuration.md#hosts-conf) defines the
`disks` dictionary as custom variable in `vars`.
2015-01-23 14:15:57 +01:00
2019-07-18 16:34:36 +02:00
Remember the example from [hosts.conf](04-configuration.md#hosts-conf):
2015-01-23 14:15:57 +01:00
```
...
/* Define disks and attributes for service apply rules in `services.conf`. */
vars.disks["disk"] = {
/* No parameters. */
}
vars.disks["disk /"] = {
disk_partition = "/"
}
...
```
2015-01-23 14:15:57 +01:00
This dictionary contains multiple service names we want to monitor. `disk`
should just check all available disks, while `disk /` will pass an additional
parameter `disk_partition` to the check command.
You'll recognize that the naming is important -- that's the very same name
2015-01-23 14:15:57 +01:00
as it is passed from a service to a check command argument. Read about services
and passing check commands in [this chapter](03-monitoring-basics.md#command-passing-parameters).
2015-01-23 14:15:57 +01:00
Using `apply Service for` omits the service name, it will take the key stored in
the `disk` variable in `key => config` as new service object name.
The `for` keyword expects a loop definition, for example `key => value in dictionary`
as known from Perl and other scripting languages.
Once defined like this, the `apply` rule defined below will do the following:
* only match hosts with `host.vars.disks` defined through the `assign where` condition
* loop through all entries in the `host.vars.disks` dictionary. That's `disk` and `disk /` as keys.
* call `apply` on each, and set the service object name from the provided key
* inside apply, the `generic-service` template is imported
* defining the [disk](10-icinga-template-library.md#plugin-check-command-disk) check command requiring command arguments like `disk_partition`
2015-01-23 14:15:57 +01:00
* adding the `config` dictionary items to `vars`. Simply said, there's now `vars.disk_partition` defined for the
generated service
Configuration example:
```
apply Service for (disk => config in host.vars.disks) {
import "generic-service"
2015-01-23 14:15:57 +01:00
check_command = "disk"
2015-01-23 14:15:57 +01:00
vars += config
}
```
2015-01-23 14:15:57 +01:00
A similar example is used for the `http` services. That way you can make your
host the information provider for all apply rules. Define them once, and only
manage your hosts.
2019-07-18 16:34:36 +02:00
Look into [notifications.conf](04-configuration.md#notifications-conf) how this technique is used
2015-01-23 14:15:57 +01:00
for applying notifications to hosts and services using their type and user
attributes.
Don't forget to install the check plugins required by the hosts and services and their check commands.
2015-01-23 14:15:57 +01:00
Further details on the monitoring configuration can be found in the
[monitoring basics](03-monitoring-basics.md#monitoring-basics) chapter.
2015-01-23 14:15:57 +01:00
#### users.conf <a id="users-conf"></a>
2015-01-23 14:15:57 +01:00
Defines the `icingaadmin` User and the `icingaadmins` UserGroup. The latter is used in
2019-07-18 16:34:36 +02:00
[hosts.conf](04-configuration.md#hosts-conf) for defining a custom host attribute later used in
[notifications.conf](04-configuration.md#notifications-conf) for notification apply rules.
2015-01-23 14:15:57 +01:00
```
object User "icingaadmin" {
import "generic-user"
2015-01-23 14:15:57 +01:00
display_name = "Icinga 2 Admin"
groups = [ "icingaadmins" ]
2015-01-23 14:15:57 +01:00
email = "icinga@localhost"
}
2015-01-23 14:15:57 +01:00
object UserGroup "icingaadmins" {
display_name = "Icinga 2 Admin Group"
}
```
2015-01-23 14:15:57 +01:00
#### notifications.conf <a id="notifications-conf"></a>
2015-01-23 14:15:57 +01:00
Notifications for check alerts are an integral part or your
Icinga 2 monitoring stack.
2015-01-25 16:07:43 +01:00
The examples in this file define two notification apply rules for hosts and services.
2015-01-23 14:15:57 +01:00
Both `apply` rules match on the same condition: They are only applied if the
nested dictionary attribute `notification.mail` is set.
Please note that the `to` keyword is important in [notification apply rules](03-monitoring-basics.md#using-apply-notifications)
2015-01-23 14:15:57 +01:00
defining whether these notifications are applies to hosts or services.
2019-07-18 16:34:36 +02:00
The `import` keyword imports the specific mail templates defined in [templates.conf](04-configuration.md#templates-conf).
2015-01-23 14:15:57 +01:00
The `interval` attribute is not explicitly set -- it [defaults to 30 minutes](09-object-types.md#objecttype-notification).
2015-01-23 14:15:57 +01:00
By setting the `user_groups` to the value provided by the
2019-07-18 16:34:36 +02:00
respective [host.vars.notification.mail](04-configuration.md#hosts-conf) attribute we'll
implicitely use the `icingaadmins` UserGroup defined in [users.conf](04-configuration.md#users-conf).
2015-01-23 14:15:57 +01:00
```
apply Notification "mail-icingaadmin" to Host {
import "mail-host-notification"
2015-01-23 14:15:57 +01:00
user_groups = host.vars.notification.mail.groups
users = host.vars.notification.mail.users
2015-01-23 14:15:57 +01:00
assign where host.vars.notification.mail
}
2015-01-23 14:15:57 +01:00
apply Notification "mail-icingaadmin" to Service {
import "mail-service-notification"
2015-01-23 14:15:57 +01:00
user_groups = host.vars.notification.mail.groups
users = host.vars.notification.mail.users
2015-01-23 14:15:57 +01:00
assign where host.vars.notification.mail
}
```
2015-01-23 14:15:57 +01:00
More details on defining notifications and their additional attributes such as
filters can be read in [this chapter](03-monitoring-basics.md#alert-notifications).
2015-01-23 14:15:57 +01:00
#### commands.conf <a id="commands-conf"></a>
2015-01-23 14:15:57 +01:00
This is the place where your own command configuration can be defined. By default
2019-07-18 16:34:36 +02:00
only the notification commands used by the notification templates defined in [templates.conf](04-configuration.md#templates-conf).
2015-01-23 14:15:57 +01:00
You can freely customize these notification commands, and adapt them for your needs.
Read more on that topic [here](03-monitoring-basics.md#notification-commands).
2015-01-23 14:15:57 +01:00
#### groups.conf <a id="groups-conf"></a>
2015-01-23 14:15:57 +01:00
The example host defined in [hosts.conf](hosts-conf) already has the
custom variable `os` set to `Linux` and is therefore automatically
2015-01-23 14:15:57 +01:00
a member of the host group `linux-servers`.
This is done by using the [group assign](17-language-reference.md#group-assign) expressions similar
to previously seen [apply rules](03-monitoring-basics.md#using-apply).
2015-01-23 14:15:57 +01:00
```
object HostGroup "linux-servers" {
display_name = "Linux Servers"
2015-01-23 14:15:57 +01:00
assign where host.vars.os == "Linux"
}
2015-01-23 14:15:57 +01:00
object HostGroup "windows-servers" {
display_name = "Windows Servers"
2015-01-23 14:15:57 +01:00
assign where host.vars.os == "Windows"
}
```
2015-01-23 14:15:57 +01:00
Service groups can be grouped together by similar pattern matches.
The [match function](18-library-reference.md#global-functions-match) expects a wildcard match string
2015-01-23 14:15:57 +01:00
and the attribute string to match with.
```
object ServiceGroup "ping" {
display_name = "Ping Checks"
2015-01-23 14:15:57 +01:00
assign where match("ping*", service.name)
}
2015-01-23 14:15:57 +01:00
object ServiceGroup "http" {
display_name = "HTTP Checks"
2015-01-23 14:15:57 +01:00
assign where match("http*", service.check_command)
}
2015-01-23 14:15:57 +01:00
object ServiceGroup "disk" {
display_name = "Disk Checks"
2015-01-23 14:15:57 +01:00
assign where match("disk*", service.check_command)
}
```
2015-01-23 14:15:57 +01:00
#### templates.conf <a id="templates-conf"></a>
2015-01-23 14:15:57 +01:00
2015-01-25 16:07:43 +01:00
Most of the example configuration objects use generic global templates by
default:
2015-01-23 14:15:57 +01:00
```
template Host "generic-host" {
max_check_attempts = 5
check_interval = 1m
retry_interval = 30s
2015-01-23 14:15:57 +01:00
check_command = "hostalive"
}
2015-01-23 14:15:57 +01:00
template Service "generic-service" {
max_check_attempts = 3
check_interval = 1m
retry_interval = 30s
}
```
2015-01-23 14:15:57 +01:00
2015-01-25 16:07:43 +01:00
The `hostalive` check command is part of the
[Plugin Check Commands](10-icinga-template-library.md#icinga-template-library).
2015-01-23 14:15:57 +01:00
```
template Notification "mail-host-notification" {
command = "mail-host-notification"
2015-01-23 14:15:57 +01:00
states = [ Up, Down ]
types = [ Problem, Acknowledgement, Recovery, Custom,
FlappingStart, FlappingEnd,
DowntimeStart, DowntimeEnd, DowntimeRemoved ]
2015-01-23 14:15:57 +01:00
period = "24x7"
}
2015-01-23 14:15:57 +01:00
template Notification "mail-service-notification" {
command = "mail-service-notification"
2015-01-23 14:15:57 +01:00
states = [ OK, Warning, Critical, Unknown ]
types = [ Problem, Acknowledgement, Recovery, Custom,
FlappingStart, FlappingEnd,
DowntimeStart, DowntimeEnd, DowntimeRemoved ]
2015-01-23 14:15:57 +01:00
period = "24x7"
}
```
2015-01-23 14:15:57 +01:00
More details on `Notification` object attributes can be found [here](09-object-types.md#objecttype-notification).
2015-01-23 14:15:57 +01:00
#### downtimes.conf <a id="downtimes-conf"></a>
2015-01-23 14:15:57 +01:00
2019-07-18 16:34:36 +02:00
The `load` service apply rule defined in [services.conf](04-configuration.md#services-conf) defines
the `backup_downtime` custom variable.
2015-01-23 14:15:57 +01:00
The ScheduledDowntime apply rule uses this attribute to define the default value
for the time ranges required for recurring downtime slots.
Learn more about downtimes in [this chapter](08-advanced-topics.md#downtimes).
2015-01-23 14:15:57 +01:00
```
apply ScheduledDowntime "backup-downtime" to Service {
author = "icingaadmin"
comment = "Scheduled downtime for backup"
ranges = {
monday = service.vars.backup_downtime
tuesday = service.vars.backup_downtime
wednesday = service.vars.backup_downtime
thursday = service.vars.backup_downtime
friday = service.vars.backup_downtime
saturday = service.vars.backup_downtime
sunday = service.vars.backup_downtime
}
assign where service.vars.backup_downtime != ""
}
```
2015-01-23 14:15:57 +01:00
#### timeperiods.conf <a id="timeperiods-conf"></a>
2015-01-23 14:15:57 +01:00
2015-01-25 16:07:43 +01:00
This file contains the default timeperiod definitions for `24x7`, `9to5`
2015-11-11 15:46:11 +01:00
and `never`. TimePeriod objects are referenced by `*period`
2015-01-23 14:15:57 +01:00
objects such as hosts, services or notifications.
#### api-users.conf <a id="api-users-conf"></a>
Provides the default [ApiUser](09-object-types.md#objecttype-apiuser) object
named "root" for the [API authentication](12-icinga2-api.md#icinga2-api-authentication).
#### app.conf <a id="app-conf"></a>
Provides the default [IcingaApplication](09-object-types.md#objecttype-icingaapplication)
object named "app" for additional settings such as disabling notifications
globally, etc.