2014-05-04 11:25:12 +02:00
|
|
|
# <a id="migration"></a> Migration from Icinga 1.x
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
## <a id="configuration-migration"></a> Configuration Migration
|
|
|
|
|
2014-05-29 11:58:25 +02:00
|
|
|
The Icinga 2 configuration format introduces plenty of behavioural changes. In
|
2015-03-19 17:18:36 +01:00
|
|
|
order to ease migration from Icinga 1.x, this section provides hints and tips
|
|
|
|
on your migration requirements.
|
2014-05-04 11:25:12 +02:00
|
|
|
|
|
|
|
### <a id="manual-config-migration"></a> Manual Config Migration
|
|
|
|
|
|
|
|
For a long-term migration of your configuration you should consider re-creating
|
2014-05-29 11:58:25 +02:00
|
|
|
your configuration based on the proposed Icinga 2 configuration paradigm.
|
2014-05-04 11:25:12 +02:00
|
|
|
|
2015-11-10 14:45:27 +01:00
|
|
|
Please read the [next chapter](22-migrating-from-icinga-1x.md#differences-1x-2) to find out more about the differences
|
2014-05-29 11:58:25 +02:00
|
|
|
between 1.x and 2.
|
2014-05-04 11:25:12 +02:00
|
|
|
|
2014-06-02 16:57:59 +02:00
|
|
|
### <a id="manual-config-migration-hints"></a> Manual Config Migration Hints
|
|
|
|
|
2014-06-15 23:43:46 +02:00
|
|
|
These hints should provide you with enough details for manually migrating your configuration,
|
2014-06-02 16:57:59 +02:00
|
|
|
or to adapt your configuration export tool to dump Icinga 2 configuration instead of
|
|
|
|
Icinga 1.x configuration.
|
|
|
|
|
2014-06-02 18:01:14 +02:00
|
|
|
The examples are taken from Icinga 1.x test and production environments and converted
|
2015-03-19 17:18:36 +01:00
|
|
|
straight into a possible Icinga 2 format. If you found a different strategy, please
|
|
|
|
let us know!
|
2014-06-02 18:01:14 +02:00
|
|
|
|
2015-11-10 14:45:27 +01:00
|
|
|
If you require in-depth explanations, please check the [next chapter](22-migrating-from-icinga-1x.md#differences-1x-2).
|
2014-06-02 16:57:59 +02:00
|
|
|
|
2014-06-02 18:01:14 +02:00
|
|
|
#### <a id="manual-config-migration-hints-Intervals"></a> Manual Config Migration Hints for Intervals
|
|
|
|
|
|
|
|
By default all intervals without any duration literal are interpreted as seconds. Therefore
|
|
|
|
all existing Icinga 1.x `*_interval` attributes require an additional `m` duration literal.
|
|
|
|
|
|
|
|
Icinga 1.x:
|
|
|
|
|
|
|
|
define service {
|
|
|
|
service_description service1
|
|
|
|
host_name localhost1
|
|
|
|
check_command test_customvar
|
|
|
|
use generic-service
|
|
|
|
check_interval 5
|
|
|
|
retry_interval 1
|
|
|
|
}
|
|
|
|
|
|
|
|
Icinga 2:
|
|
|
|
|
|
|
|
object Service "service1" {
|
2014-06-04 22:40:41 +02:00
|
|
|
import "generic-service"
|
2014-06-02 18:01:14 +02:00
|
|
|
host_name = "localhost1"
|
|
|
|
check_command = "test_customvar"
|
|
|
|
check_interval = 5m
|
|
|
|
retry_interval = 1m
|
|
|
|
}
|
|
|
|
|
2014-06-02 16:57:59 +02:00
|
|
|
#### <a id="manual-config-migration-hints-services"></a> Manual Config Migration Hints for Services
|
|
|
|
|
|
|
|
If you have used the `host_name` attribute in Icinga 1.x with one or more host names this service
|
2015-01-22 09:40:25 +01:00
|
|
|
belongs to, you can migrate this to the [apply rules](3-monitoring-basics.md#using-apply) syntax.
|
2014-06-02 16:57:59 +02:00
|
|
|
|
|
|
|
Icinga 1.x:
|
|
|
|
|
|
|
|
define service {
|
2014-06-02 18:01:14 +02:00
|
|
|
service_description service1
|
|
|
|
host_name localhost1,localhost2
|
|
|
|
check_command test_check
|
|
|
|
use generic-service
|
2014-06-02 16:57:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Icinga 2:
|
|
|
|
|
|
|
|
apply Service "service1" {
|
2014-06-02 18:01:14 +02:00
|
|
|
import "generic-service"
|
|
|
|
check_command = "test_check"
|
2014-06-02 16:57:59 +02:00
|
|
|
|
2014-06-04 22:40:41 +02:00
|
|
|
assign where host.name in [ "localhost1", "localhost2" ]
|
2014-06-02 16:57:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
In Icinga 1.x you would have organized your services with hostgroups using the `hostgroup_name` attribute
|
|
|
|
like the following example:
|
|
|
|
|
|
|
|
define service {
|
2014-06-02 18:01:14 +02:00
|
|
|
service_description servicewithhostgroups
|
|
|
|
hostgroup_name hostgroup1,hostgroup3
|
|
|
|
check_command test_check
|
|
|
|
use generic-service
|
2014-06-02 16:57:59 +02:00
|
|
|
}
|
|
|
|
|
2015-01-22 09:40:25 +01:00
|
|
|
Using Icinga 2 you can migrate this to the [apply rules](3-monitoring-basics.md#using-apply) syntax:
|
2014-06-02 16:57:59 +02:00
|
|
|
|
|
|
|
apply Service "servicewithhostgroups" {
|
2014-06-02 18:01:14 +02:00
|
|
|
import "generic-service"
|
|
|
|
check_command = "test_check"
|
|
|
|
|
|
|
|
assign where "hostgroup1" in host.groups
|
|
|
|
assign where "hostgroup3" in host.groups
|
|
|
|
}
|
|
|
|
|
2014-06-06 10:48:39 +02:00
|
|
|
#### <a id="manual-config-migration-hints-group-members"></a> Manual Config Migration Hints for Group Members
|
2014-06-02 18:01:14 +02:00
|
|
|
|
|
|
|
The Icinga 1.x hostgroup `hg1` has two members `host1` and `host2`. The hostgroup `hg2` has `host3` as
|
|
|
|
a member and includes all members of the `hg1` hostgroup.
|
|
|
|
|
|
|
|
define hostgroup {
|
|
|
|
hostgroup_name hg1
|
|
|
|
members host1,host2
|
|
|
|
}
|
|
|
|
|
|
|
|
define hostgroup {
|
|
|
|
hostgroup_name hg2
|
|
|
|
members host3
|
|
|
|
hostgroup_members hg1
|
|
|
|
}
|
|
|
|
|
2015-10-28 21:07:12 +01:00
|
|
|
This can be migrated to Icinga 2 and [using group assign](18-language-reference.md#group-assign). The additional nested hostgroup
|
2014-06-02 18:01:14 +02:00
|
|
|
`hg1` is included into `hg2` with the `groups` attribute.
|
|
|
|
|
|
|
|
|
|
|
|
object HostGroup "hg1" {
|
2014-06-06 10:48:39 +02:00
|
|
|
assign where host.name in [ "host1", "host2" ]
|
2014-06-02 18:01:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
object HostGroup "hg2" {
|
|
|
|
groups = [ "hg1" ]
|
|
|
|
assign where host.name == "host3"
|
|
|
|
}
|
|
|
|
|
|
|
|
These assign rules can be applied for all groups: `HostGroup`, `ServiceGroup` and `UserGroup`
|
|
|
|
(requires renaming from `contactgroup`).
|
|
|
|
|
|
|
|
> **Tip**
|
|
|
|
>
|
|
|
|
> Define custom attributes and assign/ignore members based on these attribute pattern matches.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#### <a id="manual-config-migration-hints-check-command-arguments"></a> Manual Config Migration Hints for Check Command Arguments
|
|
|
|
|
2014-06-15 23:43:46 +02:00
|
|
|
Host and service check command arguments are separated by a `!` in Icinga 1.x. Their order is important and they
|
2014-06-02 18:01:14 +02:00
|
|
|
are referenced as `$ARGn$` where `n` is the argument counter.
|
|
|
|
|
|
|
|
define command {
|
2014-06-06 10:48:39 +02:00
|
|
|
command_name my-ping
|
2014-06-02 18:01:14 +02:00
|
|
|
command_line $USER1$/check_ping -H $HOSTADDRESS$ -w $ARG1$ -c $ARG2$ -p 5
|
|
|
|
}
|
|
|
|
|
|
|
|
define service {
|
|
|
|
use generic-service
|
|
|
|
host_name my-server
|
2014-06-06 10:48:39 +02:00
|
|
|
service_description my-ping
|
|
|
|
check_command my-ping-check!100.0,20%!500.0,60%
|
2014-06-02 18:01:14 +02:00
|
|
|
}
|
|
|
|
|
2014-06-15 23:43:46 +02:00
|
|
|
While you could manually migrate this like (please note the new generic command arguments and default argument values!):
|
2014-06-02 18:01:14 +02:00
|
|
|
|
2014-06-06 10:48:39 +02:00
|
|
|
object CheckCommand "my-ping-check" {
|
|
|
|
import "plugin-check-command"
|
|
|
|
|
|
|
|
command = [
|
|
|
|
PluginDir + "/check_ping", "-4"
|
|
|
|
]
|
|
|
|
|
|
|
|
arguments = {
|
|
|
|
"-H" = "$ping_address$"
|
|
|
|
"-w" = "$ping_wrta$,$ping_wpl$%"
|
|
|
|
"-c" = "$ping_crta$,$ping_cpl$%"
|
|
|
|
"-p" = "$ping_packets$"
|
|
|
|
"-t" = "$ping_timeout$"
|
|
|
|
}
|
|
|
|
|
|
|
|
vars.ping_address = "$address$"
|
|
|
|
vars.ping_wrta = 100
|
|
|
|
vars.ping_wpl = 5
|
|
|
|
vars.ping_crta = 200
|
|
|
|
vars.ping_cpl = 15
|
|
|
|
}
|
2014-06-02 18:01:14 +02:00
|
|
|
|
2014-06-06 10:48:39 +02:00
|
|
|
object Service "my-ping" {
|
|
|
|
import "generic-service"
|
|
|
|
host_name = "my-server"
|
|
|
|
check_command = "my-ping-check"
|
2014-06-02 18:01:14 +02:00
|
|
|
|
|
|
|
vars.ping_wrta = 100
|
|
|
|
vars.ping_wpl = 20
|
|
|
|
vars.ping_crta = 500
|
|
|
|
vars.ping_cpl = 60
|
|
|
|
}
|
|
|
|
|
|
|
|
#### <a id="manual-config-migration-hints-runtime-macros"></a> Manual Config Migration Hints for Runtime Macros
|
|
|
|
|
2015-11-10 14:45:27 +01:00
|
|
|
Runtime macros have been renamed. A detailed comparison table can be found [here](22-migrating-from-icinga-1x.md#differences-1x-2-runtime-macros).
|
2014-06-02 18:01:14 +02:00
|
|
|
|
|
|
|
For example, accessing the service check output looks like the following in Icinga 1.x:
|
|
|
|
|
|
|
|
$SERVICEOUTPUT$
|
|
|
|
|
|
|
|
In Icinga 2 you will need to write:
|
|
|
|
|
|
|
|
$service.output$
|
|
|
|
|
2015-03-19 17:18:36 +01:00
|
|
|
Another example referencing the host's address attribute in Icinga 1.x:
|
|
|
|
|
|
|
|
$HOSTADDRESS$
|
|
|
|
|
|
|
|
In Icinga 2 you'd just use the following macro to access all `address` attributes (even overridden from the service objects):
|
|
|
|
|
|
|
|
$address$
|
|
|
|
|
2014-06-02 18:01:14 +02:00
|
|
|
|
|
|
|
#### <a id="manual-config-migration-hints-runtime-custom-attributes"></a> Manual Config Migration Hints for Runtime Custom Attributes
|
|
|
|
|
|
|
|
Custom variables from Icinga 1.x are available as Icinga 2 custom attributes.
|
|
|
|
|
|
|
|
define command {
|
|
|
|
command_name test_customvar
|
|
|
|
command_line echo "Host CV: $_HOSTCVTEST$ Service CV: $_SERVICECVTEST$\n"
|
|
|
|
}
|
|
|
|
|
|
|
|
define host {
|
|
|
|
host_name localhost1
|
|
|
|
check_command test_customvar
|
|
|
|
use generic-host
|
|
|
|
_CVTEST host cv value
|
|
|
|
}
|
|
|
|
|
|
|
|
define service {
|
|
|
|
service_description service1
|
|
|
|
host_name localhost1
|
|
|
|
check_command test_customvar
|
|
|
|
use generic-service
|
|
|
|
_CVTEST service cv value
|
|
|
|
}
|
|
|
|
|
|
|
|
Can be written as the following in Icinga 2:
|
|
|
|
|
|
|
|
object CheckCommand "test_customvar" {
|
|
|
|
import "plugin-check-command"
|
|
|
|
command = "echo "Host CV: $host.vars.CVTEST$ Service CV: $service.vars.CVTEST$\n""
|
|
|
|
}
|
|
|
|
|
|
|
|
object Host "localhost1" {
|
|
|
|
import "generic-host"
|
|
|
|
check_command = "test_customvar"
|
|
|
|
vars.CVTEST = "host cv value"
|
|
|
|
}
|
|
|
|
|
|
|
|
object Service "service1" {
|
|
|
|
host_name = "localhost1"
|
|
|
|
check_command = "test_customvar"
|
|
|
|
vars.CVTEST = "service cv value"
|
|
|
|
}
|
|
|
|
|
2016-05-23 14:14:59 +02:00
|
|
|
If you are just defining `$CVTEST$` in your command definition, its value depends on the
|
|
|
|
execution scope -- the host check command will fetch the host attribute value of `vars.CVTEST`
|
2014-06-02 18:01:14 +02:00
|
|
|
while the service check command resolves its value to the service attribute attribute `vars.CVTEST`.
|
|
|
|
|
2015-03-19 17:18:36 +01:00
|
|
|
> **Note**
|
|
|
|
>
|
|
|
|
> Custom attributes in Icinga 2 are case-sensitive. `vars.CVTEST` is not the same as `vars.CvTest`.
|
|
|
|
|
2014-06-02 18:01:14 +02:00
|
|
|
#### <a id="manual-config-migration-hints-contacts-users"></a> Manual Config Migration Hints for Contacts (Users)
|
|
|
|
|
2014-06-15 23:43:46 +02:00
|
|
|
Contacts in Icinga 1.x act as users in Icinga 2, but do not have any notification commands specified.
|
2015-11-10 14:45:27 +01:00
|
|
|
This migration part is explained in the [next chapter](22-migrating-from-icinga-1x.md#manual-config-migration-hints-notifications).
|
2014-06-02 18:01:14 +02:00
|
|
|
|
|
|
|
define contact{
|
|
|
|
contact_name testconfig-user
|
|
|
|
use generic-user
|
|
|
|
alias Icinga Test User
|
|
|
|
service_notification_options c,f,s,u
|
|
|
|
email icinga@localhost
|
|
|
|
}
|
|
|
|
|
2015-11-10 14:45:27 +01:00
|
|
|
The `service_notification_options` can be [mapped](22-migrating-from-icinga-1x.md#manual-config-migration-hints-notification-filters)
|
2016-05-23 14:14:59 +02:00
|
|
|
into generic `state` and `type` filters if additional notification filtering is required. `alias` gets
|
2014-06-02 18:01:14 +02:00
|
|
|
renamed to `display_name`.
|
|
|
|
|
|
|
|
object User "testconfig-user" {
|
|
|
|
import "generic-user"
|
|
|
|
display_name = "Icinga Test User"
|
|
|
|
email = "icinga@localhost"
|
|
|
|
}
|
|
|
|
|
|
|
|
This user can be put into usergroups (former contactgroups) or referenced in newly migration notification
|
|
|
|
objects.
|
|
|
|
|
|
|
|
#### <a id="manual-config-migration-hints-notifications"></a> Manual Config Migration Hints for Notifications
|
|
|
|
|
|
|
|
If you are migrating a host or service notification, you'll need to extract the following information from
|
|
|
|
your existing Icinga 1.x configuration objects
|
|
|
|
|
|
|
|
* host/service attribute `contacts` and `contact_groups`
|
|
|
|
* host/service attribute `notification_options`
|
|
|
|
* host/service attribute `notification_period`
|
|
|
|
* host/service attribute `notification_interval`
|
|
|
|
|
|
|
|
The clean approach is to refactor your current contacts and their notification command methods into a
|
|
|
|
generic strategy
|
|
|
|
|
|
|
|
* host or service has a notification type (for example mail)
|
|
|
|
* which contacts (users) are notified by mail?
|
|
|
|
* do the notification filters, periods, intervals still apply for them? (do a cleanup during migration)
|
|
|
|
* assign users and groups to these notifications
|
2015-01-22 09:40:25 +01:00
|
|
|
* Redesign the notifications into generic [apply rules](3-monitoring-basics.md#using-apply-notifications)
|
2014-06-02 18:01:14 +02:00
|
|
|
|
|
|
|
|
|
|
|
The ugly workaround solution could look like this:
|
|
|
|
|
|
|
|
Extract all contacts from the remaining groups, and create a unique list. This is required for determining
|
|
|
|
the host and service notification commands involved.
|
|
|
|
|
|
|
|
* contact attributes `host_notification_commands` and `service_notification_commands` (can be a comma separated list)
|
|
|
|
* get the command line for each notification command and store them for later
|
|
|
|
* create a new notification name and command name
|
|
|
|
|
|
|
|
Generate a new notification object based on these values. Import the generic template based on the type (`host` or `service`).
|
|
|
|
Assign it to the host or service and set the newly generated notification command name as `command` attribute.
|
2014-06-02 16:57:59 +02:00
|
|
|
|
2014-06-02 18:01:14 +02:00
|
|
|
object Notification "<notificationname>" {
|
|
|
|
import "mail-host-notification"
|
|
|
|
host_name = "<thishostname>"
|
|
|
|
command = "<notificationcommandname>"
|
|
|
|
|
|
|
|
|
|
|
|
Convert the `notification_options` attribute from Icinga 1.x to Icinga 2 `states` and `types`. Details
|
2015-11-10 14:45:27 +01:00
|
|
|
[here](22-migrating-from-icinga-1x.md#manual-config-migration-hints-notification-filters). Add the notification period.
|
2014-06-02 18:01:14 +02:00
|
|
|
|
|
|
|
states = [ OK, Warning, Critical ]
|
|
|
|
types = [ Recovery, Problem, Custom ]
|
|
|
|
period = "24x7"
|
|
|
|
|
|
|
|
The current contact acts as `users` attribute.
|
|
|
|
|
|
|
|
users = [ "<contactwithnotificationcommand>" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
Do this in a loop for all notification commands (depending if host or service contact). Once done, dump the
|
|
|
|
collected notification commands.
|
|
|
|
|
|
|
|
The result of this migration are lots of unnecessary notification objects and commands but it will unroll
|
|
|
|
the Icinga 1.x logic into the revamped Icinga 2 notification object schema. If you are looking for code
|
|
|
|
examples, try [LConf](https://www.netways.org).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#### <a id="manual-config-migration-hints-notification-filters"></a> Manual Config Migration Hints for Notification Filters
|
|
|
|
|
|
|
|
Icinga 1.x defines all notification filters in an attribute called `notification_options`. Using Icinga 2 you will
|
|
|
|
have to split these values into the `states` and `types` attributes.
|
|
|
|
|
|
|
|
> **Note**
|
|
|
|
>
|
|
|
|
> `Recovery` type requires the `Ok` state.
|
|
|
|
> `Custom` and `Problem` should always be set as `type` filter.
|
|
|
|
|
|
|
|
Icinga 1.x option | Icinga 2 state | Icinga 2 type
|
|
|
|
----------------------|-----------------------|-------------------
|
|
|
|
o | OK (Up for hosts) |
|
|
|
|
w | Warning | Problem
|
|
|
|
c | Critical | Problem
|
|
|
|
u | Unknown | Problem
|
|
|
|
d | Down | Problem
|
2014-06-15 23:43:46 +02:00
|
|
|
s | . | DowntimeStart / DowntimeEnd / DowntimeRemoved
|
2014-06-02 18:01:14 +02:00
|
|
|
r | Ok | Recovery
|
2014-06-15 23:43:46 +02:00
|
|
|
f | . | FlappingStart / FlappingEnd
|
2014-06-02 18:01:14 +02:00
|
|
|
n | 0 (none) | 0 (none)
|
|
|
|
. | . | Custom
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#### <a id="manual-config-migration-hints-escalations"></a> Manual Config Migration Hints for Escalations
|
|
|
|
|
|
|
|
Escalations in Icinga 1.x are a bit tricky. By default service escalations can be applied to hosts and
|
|
|
|
hostgroups and require a defined service object.
|
|
|
|
|
|
|
|
The following example applies a service escalation to the service `dep_svc01` and all hosts in the `hg_svcdep2`
|
2014-06-15 23:43:46 +02:00
|
|
|
hostgroup. The default `notification_interval` is set to `10` minutes notifying the `cg_admin` contact.
|
2014-06-02 18:01:14 +02:00
|
|
|
After 20 minutes (`10*2`, notification_interval * first_notification) the notification is escalated to the
|
2014-06-15 23:43:46 +02:00
|
|
|
`cg_ops` contactgroup until 60 minutes (`10*6`) have passed.
|
2014-06-02 18:01:14 +02:00
|
|
|
|
|
|
|
define service {
|
|
|
|
service_description dep_svc01
|
|
|
|
host_name dep_hostsvc01,dep_hostsvc03
|
|
|
|
check_command test2
|
|
|
|
use generic-service
|
|
|
|
notification_interval 10
|
|
|
|
contact_groups cg_admin
|
|
|
|
}
|
|
|
|
|
|
|
|
define hostgroup {
|
|
|
|
hostgroup_name hg_svcdep2
|
|
|
|
members dep_hostsvc03
|
|
|
|
}
|
|
|
|
|
|
|
|
# with hostgroup_name and service_description
|
|
|
|
define serviceescalation {
|
|
|
|
hostgroup_name hg_svcdep2
|
|
|
|
service_description dep_svc01
|
|
|
|
first_notification 2
|
|
|
|
last_notification 6
|
|
|
|
contact_groups cg_ops
|
|
|
|
}
|
|
|
|
|
|
|
|
In Icinga 2 the service and hostgroup definition will look quite the same. Save the `notification_interval`
|
|
|
|
and `contact_groups` attribute for an additional notification.
|
|
|
|
|
|
|
|
apply Service "dep_svc01" {
|
|
|
|
import "generic-service"
|
|
|
|
|
|
|
|
check_command = "test2"
|
|
|
|
|
|
|
|
assign where host.name == "dep_hostsvc01"
|
|
|
|
assign where host.name == "dep_hostsvc03"
|
|
|
|
}
|
|
|
|
|
|
|
|
object HostGroup "hg_svcdep2" {
|
|
|
|
assign where host.name == "dep_hostsvc03"
|
|
|
|
}
|
|
|
|
|
|
|
|
apply Notification "email" to Service {
|
|
|
|
import "service-mail-notification"
|
|
|
|
|
|
|
|
interval = 10m
|
|
|
|
user_groups = [ "cg_admin" ]
|
|
|
|
|
|
|
|
assign where service.name == "dep_svc01" && (host.name == "dep_hostsvc01" || host.name == "dep_hostsvc03")
|
|
|
|
}
|
|
|
|
|
|
|
|
Calculate the begin and end time for the newly created escalation notification:
|
|
|
|
|
|
|
|
* begin = first_notification * notification_interval = 2 * 10m = 20m
|
|
|
|
* end = last_notification * notification_interval = 6 * 10m = 60m = 1h
|
|
|
|
|
|
|
|
Assign the notification escalation to the service `dep_svc01` on all hosts in the hostgroup `hg_svcdep2`.
|
|
|
|
|
|
|
|
apply Notification "email-escalation" to Service {
|
|
|
|
import "service-mail-notification"
|
|
|
|
|
|
|
|
interval = 10m
|
|
|
|
user_groups = [ "cg_ops" ]
|
|
|
|
|
|
|
|
times = {
|
|
|
|
begin = 20m
|
|
|
|
end = 1h
|
|
|
|
}
|
|
|
|
|
|
|
|
assign where service.name == "dep_svc01" && "hg_svcdep2" in host.groups
|
|
|
|
}
|
|
|
|
|
2014-06-04 22:38:12 +02:00
|
|
|
The assign rule could be made more generic and the notification be applied to more than
|
|
|
|
just this service belonging to hosts in the matched hostgroup.
|
|
|
|
|
2014-06-02 18:01:14 +02:00
|
|
|
|
|
|
|
> **Note**
|
|
|
|
>
|
|
|
|
> When the notification is escalated, Icinga 1.x suppresses notifications to the default contacts.
|
|
|
|
> In Icinga 2 an escalation is an additional notification with a defined begin and end time. The
|
|
|
|
> `email` notification will continue as normal.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#### <a id="manual-config-migration-hints-dependencies"></a> Manual Config Migration Hints for Dependencies
|
|
|
|
|
2015-01-22 09:40:25 +01:00
|
|
|
There are some dependency examples already in the [basics chapter](3-monitoring-basics.md#dependencies). Dependencies in
|
2014-06-02 18:01:14 +02:00
|
|
|
Icinga 1.x can be confusing in terms of which host/service is the parent and which host/service acts
|
|
|
|
as the child.
|
|
|
|
|
|
|
|
While Icinga 1.x defines `notification_failure_criteria` and `execution_failure_criteria` as dependency
|
|
|
|
filters, this behaviour has changed in Icinga 2. There is no 1:1 migration but generally speaking
|
|
|
|
the state filter defined in the `execution_failure_criteria` defines the Icinga 2 `state` attribute.
|
|
|
|
If the state filter matches, you can define whether to disable checks and notifications or not.
|
|
|
|
|
2016-05-23 14:14:59 +02:00
|
|
|
The following example describes service dependencies. If you migrate from Icinga 1.x, you will only
|
2014-06-02 18:01:14 +02:00
|
|
|
want to use the classic `Host-to-Host` and `Service-to-Service` dependency relationships.
|
|
|
|
|
|
|
|
define service {
|
|
|
|
service_description dep_svc01
|
|
|
|
hostgroup_name hg_svcdep1
|
|
|
|
check_command test2
|
|
|
|
use generic-service
|
2014-06-02 16:57:59 +02:00
|
|
|
}
|
|
|
|
|
2014-06-02 18:01:14 +02:00
|
|
|
define service {
|
|
|
|
service_description dep_svc02
|
|
|
|
hostgroup_name hg_svcdep2
|
|
|
|
check_command test2
|
|
|
|
use generic-service
|
|
|
|
}
|
|
|
|
|
|
|
|
define hostgroup {
|
|
|
|
hostgroup_name hg_svcdep2
|
|
|
|
members host2
|
|
|
|
}
|
|
|
|
|
|
|
|
define host{
|
|
|
|
use linux-server-template
|
|
|
|
host_name host1
|
|
|
|
address 192.168.1.10
|
|
|
|
}
|
|
|
|
|
|
|
|
# with hostgroup_name and service_description
|
|
|
|
define servicedependency {
|
|
|
|
host_name host1
|
|
|
|
dependent_hostgroup_name hg_svcdep2
|
|
|
|
service_description dep_svc01
|
|
|
|
dependent_service_description *
|
|
|
|
execution_failure_criteria u,c
|
|
|
|
notification_failure_criteria w,u,c
|
|
|
|
inherits_parent 1
|
|
|
|
}
|
|
|
|
|
|
|
|
Map the dependency attributes accordingly.
|
|
|
|
|
|
|
|
Icinga 1.x | Icinga 2
|
|
|
|
----------------------|---------------------
|
|
|
|
host_name | parent_host_name
|
|
|
|
dependent_host_name | child_host_name (used in assign/ignore)
|
|
|
|
dependent_hostgroup_name | all child hosts in group (used in assign/ignore)
|
|
|
|
service_description | parent_service_name
|
|
|
|
dependent_service_description | child_service_name (used in assign/ignore)
|
|
|
|
|
|
|
|
And migrate the host and services.
|
|
|
|
|
2014-06-04 22:38:12 +02:00
|
|
|
object Host "host1" {
|
|
|
|
import "linux-server-template"
|
|
|
|
address = "192.168.1.10"
|
|
|
|
}
|
2014-06-02 18:01:14 +02:00
|
|
|
|
2014-06-04 22:38:12 +02:00
|
|
|
object HostGroup "hg_svcdep2" {
|
|
|
|
assign where host.name == "host2"
|
|
|
|
}
|
2014-06-02 18:01:14 +02:00
|
|
|
|
2014-06-04 22:38:12 +02:00
|
|
|
apply Service "dep_svc01" {
|
|
|
|
import "generic-service"
|
|
|
|
check_command = "test2"
|
2014-06-02 18:01:14 +02:00
|
|
|
|
2014-06-04 22:38:12 +02:00
|
|
|
assign where "hp_svcdep1" in host.groups
|
|
|
|
}
|
2014-06-02 18:01:14 +02:00
|
|
|
|
2014-06-04 22:38:12 +02:00
|
|
|
apply Service "dep_svc02" {
|
|
|
|
import "generic-service"
|
|
|
|
check_command = "test2"
|
2014-06-02 18:01:14 +02:00
|
|
|
|
2014-06-04 22:38:12 +02:00
|
|
|
assign where "hp_svcdep2" in host.groups
|
|
|
|
}
|
2014-06-02 18:01:14 +02:00
|
|
|
|
|
|
|
When it comes to the `execution_failure_criteria` and `notification_failure_criteria` attribute migration,
|
|
|
|
you will need to map the most common values, in this example `u,c` (`Unknown` and `Critical` will cause the
|
|
|
|
dependency to fail). Therefore the `Dependency` should be ok on Ok and Warning. `inherits_parents` is always
|
|
|
|
enabled.
|
|
|
|
|
|
|
|
apply Dependency "all-svc-for-hg-hg_svcdep2-on-host1-dep_svc01" to Service {
|
|
|
|
parent_host_name = "host1"
|
|
|
|
parent_service_name = "dep_svc01"
|
|
|
|
|
|
|
|
states = [ Ok, Warning ]
|
|
|
|
disable_checks = true
|
|
|
|
disable_notifications = true
|
|
|
|
|
|
|
|
assign where "hg_svcdep2" in host.groups
|
|
|
|
}
|
|
|
|
|
2015-11-10 14:45:27 +01:00
|
|
|
Host dependencies are explained in the [next chapter](22-migrating-from-icinga-1x.md#manual-config-migration-hints-host-parents).
|
2014-06-02 18:01:14 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#### <a id="manual-config-migration-hints-host-parents"></a> Manual Config Migration Hints for Host Parents
|
|
|
|
|
|
|
|
Host parents from Icinga 1.x are migrated into `Host-to-Host` dependencies in Icinga 2.
|
|
|
|
|
|
|
|
The following example defines the `vmware-master` host as parent host for the guest
|
|
|
|
virtual machines `vmware-vm1` and `vmware-vm2`.
|
|
|
|
|
|
|
|
By default all hosts in the hostgroup `vmware` should get the parent assigned. This isn't really
|
|
|
|
solvable with Icinga 1.x parents, but only with host dependencies.
|
|
|
|
|
|
|
|
define host{
|
|
|
|
use linux-server-template
|
|
|
|
host_name vmware-master
|
|
|
|
hostgroups vmware
|
|
|
|
address 192.168.1.10
|
|
|
|
}
|
|
|
|
|
|
|
|
define host{
|
|
|
|
use linux-server-template
|
|
|
|
host_name vmware-vm1
|
|
|
|
hostgroups vmware
|
|
|
|
address 192.168.27.1
|
|
|
|
parents vmware-master
|
|
|
|
}
|
|
|
|
|
|
|
|
define host{
|
|
|
|
use linux-server-template
|
|
|
|
host_name vmware-vm2
|
|
|
|
hostgroups vmware
|
|
|
|
address 192.168.28.1
|
|
|
|
parents vmware-master
|
|
|
|
}
|
|
|
|
|
|
|
|
By default all hosts in the hostgroup `vmware` should get the parent assigned (but not the `vmware-master`
|
|
|
|
host itself). This isn't really solvable with Icinga 1.x parents, but only with host dependencies as shown
|
|
|
|
below:
|
|
|
|
|
|
|
|
define hostdependency {
|
|
|
|
dependent_hostgroup_name vmware
|
|
|
|
dependent_host_name !vmware-master
|
|
|
|
host_name vmware-master
|
|
|
|
inherits_parent 1
|
|
|
|
notification_failure_criteria d,u
|
|
|
|
execution_failure_criteria d,u
|
|
|
|
dependency_period testconfig-24x7
|
|
|
|
}
|
|
|
|
|
|
|
|
When migrating to Icinga 2, the parents must be changed to a newly created host dependency.
|
|
|
|
|
|
|
|
|
|
|
|
Map the following attributes
|
|
|
|
|
|
|
|
Icinga 1.x | Icinga 2
|
|
|
|
----------------------|---------------------
|
|
|
|
host_name | parent_host_name
|
|
|
|
dependent_host_name | child_host_name (used in assign/ignore)
|
|
|
|
dependent_hostgroup_name | all child hosts in group (used in assign/ignore)
|
|
|
|
|
2014-06-04 22:38:12 +02:00
|
|
|
The Icinga 2 configuration looks like this:
|
|
|
|
|
2014-06-02 18:01:14 +02:00
|
|
|
|
|
|
|
object Host "vmware-master" {
|
|
|
|
import "linux-server-template"
|
|
|
|
groups += [ "vmware" ]
|
|
|
|
address = "192.168.1.10"
|
|
|
|
vars.is_vmware_master = true
|
|
|
|
}
|
|
|
|
|
|
|
|
object Host "vmware-vm1" {
|
|
|
|
import "linux-server-template"
|
|
|
|
groups += [ "vmware" ]
|
|
|
|
address = "192.168.27.1"
|
|
|
|
}
|
|
|
|
|
|
|
|
object Host "vmware-vm2" {
|
|
|
|
import "linux-server-template"
|
|
|
|
groups += [ "vmware" ]
|
|
|
|
address = "192.168.28.1"
|
|
|
|
}
|
|
|
|
|
|
|
|
apply Dependency "vmware-master" to Host {
|
|
|
|
parent_host_name = "vmware-master"
|
|
|
|
|
|
|
|
assign where "vmware" in host.groups
|
|
|
|
ignore where host.vars.is_vmware_master
|
|
|
|
ignore where host.name == "vmware-master"
|
|
|
|
}
|
|
|
|
|
|
|
|
For easier identification you could add the `vars.is_vmware_master` attribute to the `vmware-master`
|
2014-06-15 23:43:46 +02:00
|
|
|
host and let the dependency ignore that instead of the hardcoded host name. That's different
|
2014-06-02 18:01:14 +02:00
|
|
|
to the Icinga 1.x example and a best practice hint only.
|
|
|
|
|
2014-06-02 16:57:59 +02:00
|
|
|
|
2014-06-11 14:05:47 +02:00
|
|
|
#### <a id="manual-config-migration-hints-distributed-setup"></a> Manual Config Migration Hints for Distributed Setups
|
|
|
|
|
|
|
|
* Icinga 2 does not use active/passive instances calling OSCP commands and requiring the NSCA
|
|
|
|
daemon for passing check results between instances.
|
|
|
|
* Icinga 2 does not support any 1.x NEB addons for check load distribution
|
|
|
|
|
|
|
|
* If your current setup consists of instances distributing the check load, you should consider
|
2015-08-28 17:17:07 +02:00
|
|
|
building a [load distribution](13-distributed-monitoring-ha.md#cluster-scenarios-load-distribution) setup with Icinga 2.
|
2016-05-23 14:14:59 +02:00
|
|
|
* If your current setup includes active/passive clustering with external tools like Pacemaker/DRBD,
|
2015-08-28 17:17:07 +02:00
|
|
|
consider the [High Availability](13-distributed-monitoring-ha.md#cluster-scenarios-high-availability) setup.
|
2016-05-23 14:14:59 +02:00
|
|
|
* If you have build your own custom configuration deployment and check result collecting mechanism,
|
2014-06-11 14:05:47 +02:00
|
|
|
you should re-design your setup and re-evaluate your requirements, and how they may be fulfilled
|
|
|
|
using the Icinga 2 cluster capabilities.
|
2014-06-02 16:57:59 +02:00
|
|
|
|
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
## <a id="differences-1x-2"></a> Differences between Icinga 1.x and 2
|
|
|
|
|
|
|
|
### <a id="differences-1x-2-configuration-format"></a> Configuration Format
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2013-10-10 11:22:32 +02:00
|
|
|
Icinga 1.x supports two configuration formats: key-value-based settings in the
|
2013-10-18 00:27:04 +02:00
|
|
|
`icinga.cfg` configuration file and object-based in included files (`cfg_dir`,
|
2013-10-10 11:22:32 +02:00
|
|
|
`cfg_file`). The path to the `icinga.cfg` configuration file must be passed to
|
|
|
|
the Icinga daemon at startup.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2015-03-19 17:18:36 +01:00
|
|
|
icinga.cfg:
|
|
|
|
|
2013-10-10 08:52:58 +02:00
|
|
|
enable_notifications=1
|
|
|
|
|
2015-03-19 17:18:36 +01:00
|
|
|
objects.cfg:
|
|
|
|
|
2013-10-10 08:52:58 +02:00
|
|
|
define service {
|
2013-10-11 18:13:28 +02:00
|
|
|
notifications_enabled 0
|
2013-10-10 08:52:58 +02:00
|
|
|
}
|
|
|
|
|
2016-05-23 14:14:59 +02:00
|
|
|
Icinga 2 supports objects and (global) variables, but does not make a difference
|
|
|
|
between the main configuration file or any other included file.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2015-03-19 17:18:36 +01:00
|
|
|
icinga2.conf:
|
|
|
|
|
2014-04-07 21:30:27 +02:00
|
|
|
const EnableNotifications = true
|
2013-10-10 08:52:58 +02:00
|
|
|
|
|
|
|
object Service "test" {
|
2015-03-19 17:18:36 +01:00
|
|
|
enable_notifications = false
|
2013-10-10 08:52:58 +02:00
|
|
|
}
|
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
#### <a id="differences-1x-2-sample-configuration-itl"></a> Sample Configuration and ITL
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2013-10-10 14:24:19 +02:00
|
|
|
While Icinga 1.x ships sample configuration and templates spread in various
|
2014-05-29 11:58:25 +02:00
|
|
|
object files, Icinga 2 moves all templates into the Icinga Template Library (ITL)
|
|
|
|
and includes them in the sample configuration.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-05-22 19:19:09 +02:00
|
|
|
Additional plugin check commands are shipped with Icinga 2 as well.
|
|
|
|
|
2015-03-19 17:18:36 +01:00
|
|
|
The ITL will be updated on every release and must not be edited by the user.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-03-18 18:10:01 +01:00
|
|
|
There are still generic templates available for your convenience which may or may
|
|
|
|
not be re-used in your configuration. For instance, `generic-service` includes
|
2014-06-02 18:01:14 +02:00
|
|
|
all required attributes except `check_command` for a service.
|
2014-03-18 18:10:01 +01:00
|
|
|
|
2014-04-06 21:15:25 +02:00
|
|
|
Sample configuration files are located in the `conf.d/` directory which is
|
|
|
|
included in `icinga2.conf` by default.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2015-03-19 17:18:36 +01:00
|
|
|
> **Note**
|
|
|
|
>
|
2015-03-28 01:42:12 +01:00
|
|
|
> Add your own custom templates in the `conf.d/` directory as well, e.g. inside
|
2015-06-16 16:01:02 +02:00
|
|
|
> the [templates.conf](4-configuring-icinga-2.md#templates-conf) file.
|
2015-03-19 17:18:36 +01:00
|
|
|
|
2014-05-22 19:19:09 +02:00
|
|
|
### <a id="differences-1x-2-main-config"></a> Main Config File
|
|
|
|
|
|
|
|
In Icinga 1.x there are many global configuration settings available in `icinga.cfg`.
|
2015-10-28 21:07:12 +01:00
|
|
|
Icinga 2 only uses a small set of [global constants](18-language-reference.md#constants) allowing
|
2014-05-22 19:19:09 +02:00
|
|
|
you to specify certain different setting such as the `NodeName` in a cluster scenario.
|
|
|
|
|
2015-06-16 16:01:02 +02:00
|
|
|
Aside from that, the [icinga2.conf](4-configuring-icinga-2.md#icinga2-conf) should take care of including
|
2015-10-28 21:07:12 +01:00
|
|
|
global constants, enabled [features](8-cli-commands.md#enable-features) and the object configuration.
|
2014-05-22 19:19:09 +02:00
|
|
|
|
2014-02-05 15:53:22 +01:00
|
|
|
### <a id="differences-1x-2-include-files-dirs"></a> Include Files and Directories
|
2013-10-10 08:52:58 +02:00
|
|
|
|
|
|
|
In Icinga 1.x the `icinga.cfg` file contains `cfg_file` and `cfg_dir`
|
|
|
|
directives. The `cfg_dir` directive recursively includes all files with a `.cfg`
|
2013-10-10 11:22:32 +02:00
|
|
|
suffix in the given directory. Only absolute paths may be used. The `cfg_file`
|
|
|
|
and `cfg_dir` directives can include the same file twice which leads to
|
|
|
|
configuration errors in Icinga 1.x.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
|
|
|
cfg_file=/etc/icinga/objects/commands.cfg
|
|
|
|
cfg_dir=/etc/icinga/objects
|
|
|
|
|
|
|
|
Icinga 2 supports wildcard includes and relative paths, e.g. for including
|
2014-03-18 18:10:01 +01:00
|
|
|
`conf.d/*.conf` in the same directory.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
|
|
|
include "conf.d/*.conf"
|
2014-03-18 18:10:01 +01:00
|
|
|
|
|
|
|
If you want to include files and directories recursively, you need to define
|
2014-05-22 19:19:09 +02:00
|
|
|
a separate option and add the directory and an optional pattern.
|
2014-03-18 18:10:01 +01:00
|
|
|
|
2014-05-22 19:19:09 +02:00
|
|
|
include_recursive "conf.d"
|
2014-03-18 18:10:01 +01:00
|
|
|
|
|
|
|
A global search path for includes is available for advanced features like
|
2014-05-10 18:23:08 +02:00
|
|
|
the Icinga Template Library (ITL) or additional monitoring plugins check
|
|
|
|
command configuration.
|
2014-03-18 18:10:01 +01:00
|
|
|
|
2014-05-10 18:23:08 +02:00
|
|
|
include <itl>
|
|
|
|
include <plugins>
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-04-06 21:15:25 +02:00
|
|
|
By convention the `.conf` suffix is used for Icinga 2 configuration files.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
### <a id="differences-1x-2-resource-file-global-macros"></a> Resource File and Global Macros
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2013-10-10 09:40:50 +02:00
|
|
|
Global macros such as for the plugin directory, usernames and passwords can be
|
|
|
|
set in the `resource.cfg` configuration file in Icinga 1.x. By convention the
|
|
|
|
`USER1` macro is used to define the directory for the plugins.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-03-31 13:27:39 +02:00
|
|
|
Icinga 2 uses global constants instead. In the default config these are
|
|
|
|
set in the `constants.conf` configuration file:
|
2013-10-10 08:52:58 +02:00
|
|
|
|
|
|
|
/**
|
2014-03-31 13:27:39 +02:00
|
|
|
* This file defines global constants which can be used in
|
|
|
|
* the other configuration files. At a minimum the
|
|
|
|
* PluginDir constant should be defined.
|
|
|
|
*/
|
|
|
|
|
|
|
|
const PluginDir = "/usr/lib/nagios/plugins"
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2015-10-28 21:07:12 +01:00
|
|
|
[Global macros](18-language-reference.md#constants) can only be defined once. Trying to modify a
|
2014-04-06 21:15:25 +02:00
|
|
|
global constant will result in an error.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
### <a id="differences-1x-2-configuration-comments"></a> Configuration Comments
|
2013-10-10 08:52:58 +02:00
|
|
|
|
|
|
|
In Icinga 1.x comments are made using a leading hash (`#`) or a semi-colon (`;`)
|
|
|
|
for inline comments.
|
2013-10-10 09:40:50 +02:00
|
|
|
|
2013-10-10 08:52:58 +02:00
|
|
|
In Icinga 2 comments can either be encapsulated by `/*` and `*/` (allowing for
|
2014-05-22 19:19:09 +02:00
|
|
|
multi-line comments) or starting with two slashes (`//`). A leading hash (`#`)
|
|
|
|
could also be used.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2015-03-19 17:18:36 +01:00
|
|
|
### <a id="differences-1x-2-object-names"></a> Object Names
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-05-29 16:54:57 +02:00
|
|
|
Object names must not contain an exclamation mark (`!`). Use the `display_name` attribute
|
2013-10-10 08:52:58 +02:00
|
|
|
to specify user-friendly names which should be shown in UIs (supported by
|
2015-03-19 17:18:36 +01:00
|
|
|
Icinga Web 2 for example).
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2013-10-10 09:40:50 +02:00
|
|
|
Object names are not specified using attributes (e.g. `service_description` for
|
2013-10-10 19:05:49 +02:00
|
|
|
services) like in Icinga 1.x but directly after their type definition.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
|
|
|
define service {
|
|
|
|
host_name localhost
|
|
|
|
service_description ping4
|
|
|
|
}
|
|
|
|
|
2014-04-05 14:53:12 +02:00
|
|
|
object Service "ping4" {
|
|
|
|
host_name = "localhost"
|
|
|
|
}
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
### <a id="differences-1x-2-templates"></a> Templates
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2013-10-10 14:24:19 +02:00
|
|
|
In Icinga 1.x templates are identified using the `register 0` setting. Icinga 2
|
|
|
|
uses the `template` identifier:
|
2013-10-10 08:52:58 +02:00
|
|
|
|
|
|
|
template Service "ping4-template" { }
|
|
|
|
|
|
|
|
Icinga 1.x objects inherit from templates using the `use` attribute.
|
2014-03-27 12:30:24 +01:00
|
|
|
Icinga 2 uses the keyword `import` with template names in double quotes.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
|
|
|
define service {
|
|
|
|
service_description testservice
|
|
|
|
use tmpl1,tmpl2,tmpl3
|
|
|
|
}
|
|
|
|
|
2014-03-27 12:30:24 +01:00
|
|
|
object Service "testservice" {
|
2014-03-31 18:38:15 +02:00
|
|
|
import "tmpl1"
|
|
|
|
import "tmpl2"
|
2014-03-27 12:30:24 +01:00
|
|
|
import "tmpl3"
|
2013-10-10 08:52:58 +02:00
|
|
|
}
|
|
|
|
|
2014-05-22 19:19:09 +02:00
|
|
|
The last template overrides previously set values.
|
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
### <a id="differences-1x-2-object-attributes"></a> Object attributes
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-05-22 19:19:09 +02:00
|
|
|
Icinga 1.x separates attribute and value pairs with whitespaces/tabs. Icinga 2
|
2013-10-10 08:52:58 +02:00
|
|
|
requires an equal sign (=) between them.
|
|
|
|
|
|
|
|
define service {
|
|
|
|
check_interval 5
|
|
|
|
}
|
|
|
|
|
|
|
|
object Service "test" {
|
2014-03-31 18:38:15 +02:00
|
|
|
check_interval = 5m
|
2013-10-10 08:52:58 +02:00
|
|
|
}
|
|
|
|
|
2016-05-23 14:14:59 +02:00
|
|
|
Please note that the default time value is seconds if no duration literal
|
2014-04-06 21:15:25 +02:00
|
|
|
is given. `check_interval = 5` behaves the same as `check_interval = 5s`.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-05-29 16:54:57 +02:00
|
|
|
All strings require double quotes in Icinga 2. Therefore a double quote
|
|
|
|
must be escaped by a backslash (e.g. in command line).
|
|
|
|
If an attribute identifier starts with a number, it must be enclosed
|
|
|
|
in double quotes as well.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
#### <a id="differences-1x-2-alias-display-name"></a> Alias vs. Display Name
|
2013-10-10 19:05:49 +02:00
|
|
|
|
|
|
|
In Icinga 1.x a host can have an `alias` and a `display_name` attribute used
|
|
|
|
for a more descriptive name. A service only can have a `display_name` attribute.
|
|
|
|
The `alias` is used for group, timeperiod, etc. objects too.
|
|
|
|
Icinga 2 only supports the `display_name` attribute which is also taken into
|
2014-05-22 19:19:09 +02:00
|
|
|
account by Icinga web interfaces.
|
2013-10-10 19:05:49 +02:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
### <a id="differences-1x-2-custom-attributes"></a> Custom Attributes
|
2013-10-10 19:05:49 +02:00
|
|
|
|
2014-04-04 18:41:54 +02:00
|
|
|
Icinga 2 allows you to define custom attributes in the `vars` dictionary.
|
2013-10-10 19:05:49 +02:00
|
|
|
The `notes`, `notes_url`, `action_url`, `icon_image`, `icon_image_alt`
|
2014-04-16 16:47:25 +02:00
|
|
|
attributes for host and service objects are still available in Icinga 2.
|
|
|
|
|
2014-04-22 13:48:06 +02:00
|
|
|
`2d_coords` and `statusmap_image` are not supported in Icinga 2.
|
2014-04-22 12:09:24 +02:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
#### <a id="differences-1x-2-custom-variables"></a> Custom Variables
|
2013-10-10 19:05:49 +02:00
|
|
|
|
|
|
|
Icinga 1.x custom variable attributes must be prefixed using an underscore (`_`).
|
2014-04-04 18:41:54 +02:00
|
|
|
In Icinga 2 these attributes must be added to the `vars` dictionary as custom attributes.
|
2013-10-10 19:05:49 +02:00
|
|
|
|
2014-04-22 13:48:06 +02:00
|
|
|
vars.dn = "cn=icinga2-dev-host,ou=icinga,ou=main,ou=IcingaConfig,ou=LConf,dc=icinga,dc=org"
|
|
|
|
vars.cv = "my custom cmdb description"
|
2014-04-22 12:09:24 +02:00
|
|
|
|
2015-01-22 09:40:25 +01:00
|
|
|
These custom attributes are also used as [command parameters](3-monitoring-basics.md#command-passing-parameters).
|
2014-05-22 19:19:09 +02:00
|
|
|
|
2015-03-19 17:18:36 +01:00
|
|
|
While Icinga 1.x only supports numbers and strings as custom attribute values,
|
|
|
|
Icinga 2 extends that to arrays and (nested) dictionaries. For more details
|
|
|
|
look [here](3-monitoring-basics.md#custom-attributes).
|
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
### <a id="differences-1x-2-host-service-relation"></a> Host Service Relation
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2013-10-10 11:22:32 +02:00
|
|
|
In Icinga 1.x a service object is associated with a host by defining the
|
2013-10-10 19:05:49 +02:00
|
|
|
`host_name` attribute in the service definition. Alternate methods refer
|
2014-05-29 16:54:57 +02:00
|
|
|
to `hostgroup_name` or behaviour changing regular expression.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-03-29 01:13:28 +01:00
|
|
|
The preferred way of associating hosts with services in Icinga 2 is by
|
2015-01-22 09:40:25 +01:00
|
|
|
using the [apply](3-monitoring-basics.md#using-apply) keyword.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2015-03-19 17:18:36 +01:00
|
|
|
Direct object relations between a service and a host still allow you to use
|
|
|
|
the `host_name` [Service](6-object-types.md#objecttype-service) object attribute.
|
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
### <a id="differences-1x-2-users"></a> Users
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2015-03-19 17:18:36 +01:00
|
|
|
Contacts have been renamed to users (same for groups). A contact does not
|
|
|
|
only provide (custom) attributes and notification commands used for notifications,
|
|
|
|
but is also used for authorization checks in Icinga 1.x.
|
|
|
|
|
|
|
|
Icinga 2 changes that behavior and makes the user an attribute provider only.
|
|
|
|
These attributes can be accessed using [runtime macros](3-monitoring-basics.md#runtime-macros)
|
|
|
|
inside notification command definitions.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2013-10-10 14:24:19 +02:00
|
|
|
In Icinga 2 notification commands are not directly associated with users.
|
2015-03-19 17:18:36 +01:00
|
|
|
Instead the notification command is specified inside `Notification` objects next to
|
|
|
|
user and user group relations.
|
2013-10-10 09:40:50 +02:00
|
|
|
|
|
|
|
The `StatusDataWriter`, `IdoMySqlConnection` and `LivestatusListener` types will
|
|
|
|
provide the contact and contactgroups attributes for services for compatibility
|
2013-10-10 08:52:58 +02:00
|
|
|
reasons. These values are calculated from all services, their notifications,
|
|
|
|
and their users.
|
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
### <a id="differences-1x-2-macros"></a> Macros
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-04-04 18:41:54 +02:00
|
|
|
Various object attributes and runtime variables can be accessed as macros in
|
2016-05-23 14:14:59 +02:00
|
|
|
commands in Icinga 1.x -- Icinga 2 supports all required [custom attributes](3-monitoring-basics.md#custom-attributes).
|
2013-10-10 19:05:49 +02:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
#### <a id="differences-1x-2-command-arguments"></a> Command Arguments
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2016-05-23 14:14:59 +02:00
|
|
|
If you have previously used Icinga 1.x, you may already be familiar with
|
2014-04-04 18:41:54 +02:00
|
|
|
user and argument definitions (e.g., `USER1` or `ARG1`). Unlike in Icinga 1.x
|
|
|
|
the Icinga 2 custom attributes may have arbitrary names and arguments are no
|
|
|
|
longer specified in the `check_command` setting.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-04-04 18:41:54 +02:00
|
|
|
In Icinga 1.x arguments are specified in the `check_command` attribute and
|
2013-10-10 09:40:50 +02:00
|
|
|
are separated from the command name using an exclamation mark (`!`).
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2015-03-19 17:18:36 +01:00
|
|
|
Please check the migration hints for a detailed
|
2015-11-10 14:45:27 +01:00
|
|
|
[migration example](22-migrating-from-icinga-1x.md#manual-config-migration-hints-check-command-arguments).
|
2013-10-10 19:05:49 +02:00
|
|
|
|
2014-06-11 14:05:47 +02:00
|
|
|
> **Note**
|
|
|
|
>
|
|
|
|
> The Classic UI feature named `Command Expander` does not work with Icinga 2.
|
2014-05-19 09:59:52 +02:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
#### <a id="differences-1x-2-environment-macros"></a> Environment Macros
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2013-10-10 09:40:50 +02:00
|
|
|
The global configuration setting `enable_environment_macros` does not exist in
|
2013-10-10 08:52:58 +02:00
|
|
|
Icinga 2.
|
2013-10-10 09:40:50 +02:00
|
|
|
|
2015-03-19 17:18:36 +01:00
|
|
|
Macros exported into the [environment](3-monitoring-basics.md#command-environment-variables)
|
|
|
|
can be set using the `env` attribute in command objects.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
#### <a id="differences-1x-2-runtime-macros"></a> Runtime Macros
|
2014-04-04 19:35:47 +02:00
|
|
|
|
|
|
|
Icinga 2 requires an object specific namespace when accessing configuration
|
2014-05-29 16:54:57 +02:00
|
|
|
and stateful runtime macros. Custom attributes can be accessed directly.
|
2014-04-04 19:35:47 +02:00
|
|
|
|
2015-03-19 17:18:36 +01:00
|
|
|
If a runtime macro from Icinga 1.x is not listed here, it is not supported
|
|
|
|
by Icinga 2.
|
|
|
|
|
2014-05-11 15:10:40 +02:00
|
|
|
Changes to user (contact) runtime macros
|
2014-04-04 20:09:23 +02:00
|
|
|
|
2014-05-11 15:10:40 +02:00
|
|
|
Icinga 1.x | Icinga 2
|
|
|
|
-----------------------|----------------------
|
2014-05-30 11:27:18 +02:00
|
|
|
CONTACTNAME | user.name
|
|
|
|
CONTACTALIAS | user.display_name
|
|
|
|
CONTACTEMAIL | user.email
|
|
|
|
CONTACTPAGER | user.pager
|
2014-04-04 21:36:47 +02:00
|
|
|
|
2014-05-30 11:27:18 +02:00
|
|
|
`CONTACTADDRESS*` is not supported but can be accessed as `$user.vars.address1$`
|
|
|
|
if set.
|
2014-04-04 20:09:23 +02:00
|
|
|
|
|
|
|
Changes to service runtime macros
|
|
|
|
|
2014-05-11 15:10:40 +02:00
|
|
|
Icinga 1.x | Icinga 2
|
|
|
|
-----------------------|----------------------
|
2014-08-14 16:32:51 +02:00
|
|
|
SERVICEDESC | service.name
|
2014-05-11 15:10:40 +02:00
|
|
|
SERVICEDISPLAYNAME | service.display_name
|
|
|
|
SERVICECHECKCOMMAND | service.check_command
|
|
|
|
SERVICESTATE | service.state
|
|
|
|
SERVICESTATEID | service.state_id
|
|
|
|
SERVICESTATETYPE | service.state_type
|
|
|
|
SERVICEATTEMPT | service.check_attempt
|
|
|
|
MAXSERVICEATTEMPT | service.max_check_attempts
|
|
|
|
LASTSERVICESTATE | service.last_state
|
|
|
|
LASTSERVICESTATEID | service.last_state_id
|
|
|
|
LASTSERVICESTATETYPE | service.last_state_type
|
|
|
|
LASTSERVICESTATECHANGE | service.last_state_change
|
2015-02-08 00:15:38 +01:00
|
|
|
SERVICEDOWNTIME | service.downtime_depth
|
2014-05-30 12:02:24 +02:00
|
|
|
SERVICEDURATIONSEC | service.duration_sec
|
2014-05-11 15:10:40 +02:00
|
|
|
SERVICELATENCY | service.latency
|
|
|
|
SERVICEEXECUTIONTIME | service.execution_time
|
|
|
|
SERVICEOUTPUT | service.output
|
|
|
|
SERVICEPERFDATA | service.perfdata
|
|
|
|
LASTSERVICECHECK | service.last_check
|
|
|
|
SERVICENOTES | service.notes
|
|
|
|
SERVICENOTESURL | service.notes_url
|
|
|
|
SERVICEACTIONURL | service.action_url
|
2014-04-04 20:09:23 +02:00
|
|
|
|
|
|
|
|
2014-05-11 15:10:40 +02:00
|
|
|
Changes to host runtime macros
|
|
|
|
|
|
|
|
Icinga 1.x | Icinga 2
|
|
|
|
-----------------------|----------------------
|
|
|
|
HOSTNAME | host.name
|
2014-05-30 12:02:24 +02:00
|
|
|
HOSTADDRESS | host.address
|
|
|
|
HOSTADDRESS6 | host.address6
|
2014-05-11 15:10:40 +02:00
|
|
|
HOSTDISPLAYNAME | host.display_name
|
2014-05-22 19:19:09 +02:00
|
|
|
HOSTALIAS | (use `host.display_name` instead)
|
2014-05-30 12:02:24 +02:00
|
|
|
HOSTCHECKCOMMAND | host.check_command
|
2014-05-11 15:10:40 +02:00
|
|
|
HOSTSTATE | host.state
|
|
|
|
HOSTSTATEID | host.state_id
|
|
|
|
HOSTSTATETYPE | host.state_type
|
|
|
|
HOSTATTEMPT | host.check_attempt
|
|
|
|
MAXHOSTATTEMPT | host.max_check_attempts
|
|
|
|
LASTHOSTSTATE | host.last_state
|
|
|
|
LASTHOSTSTATEID | host.last_state_id
|
|
|
|
LASTHOSTSTATETYPE | host.last_state_type
|
|
|
|
LASTHOSTSTATECHANGE | host.last_state_change
|
2015-02-08 00:15:38 +01:00
|
|
|
HOSTDOWNTIME | host.downtime_depth
|
2014-05-11 15:10:40 +02:00
|
|
|
HOSTDURATIONSEC | host.duration_sec
|
|
|
|
HOSTLATENCY | host.latency
|
|
|
|
HOSTEXECUTIONTIME | host.execution_time
|
|
|
|
HOSTOUTPUT | host.output
|
|
|
|
HOSTPERFDATA | host.perfdata
|
|
|
|
LASTHOSTCHECK | host.last_check
|
|
|
|
HOSTNOTES | host.notes
|
|
|
|
HOSTNOTESURL | host.notes_url
|
|
|
|
HOSTACTIONURL | host.action_url
|
|
|
|
TOTALSERVICES | host.num_services
|
|
|
|
TOTALSERVICESOK | host.num_services_ok
|
|
|
|
TOTALSERVICESWARNING | host.num_services_warning
|
|
|
|
TOTALSERVICESUNKNOWN | host.num_services_unknown
|
|
|
|
TOTALSERVICESCRITICAL | host.num_services_critical
|
|
|
|
|
|
|
|
Changes to command runtime macros
|
|
|
|
|
|
|
|
Icinga 1.x | Icinga 2
|
|
|
|
-----------------------|----------------------
|
|
|
|
COMMANDNAME | command.name
|
|
|
|
|
|
|
|
Changes to notification runtime macros
|
|
|
|
|
|
|
|
Icinga 1.x | Icinga 2
|
|
|
|
-----------------------|----------------------
|
|
|
|
NOTIFICATIONTYPE | notification.type
|
|
|
|
NOTIFICATIONAUTHOR | notification.author
|
|
|
|
NOTIFICATIONCOMMENT | notification.comment
|
2014-05-22 19:19:09 +02:00
|
|
|
NOTIFICATIONAUTHORNAME | (use `notification.author`)
|
|
|
|
NOTIFICATIONAUTHORALIAS | (use `notification.author`)
|
2014-04-04 20:09:23 +02:00
|
|
|
|
|
|
|
|
2014-04-04 19:35:47 +02:00
|
|
|
Changes to global runtime macros:
|
|
|
|
|
2014-05-11 15:10:40 +02:00
|
|
|
Icinga 1.x | Icinga 2
|
|
|
|
-----------------------|----------------------
|
|
|
|
TIMET | icinga.timet
|
|
|
|
LONGDATETIME | icinga.long_date_time
|
|
|
|
SHORTDATETIME | icinga.short_date_time
|
|
|
|
DATE | icinga.date
|
|
|
|
TIME | icinga.time
|
|
|
|
PROCESSSTARTTIME | icinga.uptime
|
|
|
|
|
|
|
|
Changes to global statistic macros:
|
|
|
|
|
|
|
|
Icinga 1.x | Icinga 2
|
|
|
|
----------------------------------|----------------------
|
|
|
|
TOTALHOSTSUP | icinga.num_hosts_up
|
|
|
|
TOTALHOSTSDOWN | icinga.num_hosts_down
|
|
|
|
TOTALHOSTSUNREACHABLE | icinga.num_hosts_unreachable
|
|
|
|
TOTALHOSTSDOWNUNHANDLED | --
|
|
|
|
TOTALHOSTSUNREACHABLEUNHANDLED | --
|
|
|
|
TOTALHOSTPROBLEMS | down
|
|
|
|
TOTALHOSTPROBLEMSUNHANDLED | down-(downtime+acknowledged)
|
|
|
|
TOTALSERVICESOK | icinga.num_services_ok
|
|
|
|
TOTALSERVICESWARNING | icinga.num_services_warning
|
|
|
|
TOTALSERVICESCRITICAL | icinga.num_services_critical
|
|
|
|
TOTALSERVICESUNKNOWN | icinga.num_services_unknown
|
|
|
|
TOTALSERVICESWARNINGUNHANDLED | --
|
|
|
|
TOTALSERVICESCRITICALUNHANDLED | --
|
|
|
|
TOTALSERVICESUNKNOWNUNHANDLED | --
|
|
|
|
TOTALSERVICEPROBLEMS | ok+warning+critical+unknown
|
|
|
|
TOTALSERVICEPROBLEMSUNHANDLED | warning+critical+unknown-(downtime+acknowledged)
|
|
|
|
|
|
|
|
|
2014-04-04 19:35:47 +02:00
|
|
|
|
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
### <a id="differences-1x-2-external-commands"></a> External Commands
|
2014-04-16 16:47:25 +02:00
|
|
|
|
|
|
|
`CHANGE_CUSTOM_CONTACT_VAR` was renamed to `CHANGE_CUSTOM_USER_VAR`.
|
|
|
|
|
|
|
|
The following external commands are not supported:
|
|
|
|
|
2016-06-23 13:27:00 +02:00
|
|
|
CHANGE_*MODATTR
|
2014-04-16 16:47:25 +02:00
|
|
|
CHANGE_CONTACT_HOST_NOTIFICATION_TIMEPERIOD
|
|
|
|
CHANGE_HOST_NOTIFICATION_TIMEPERIOD
|
|
|
|
CHANGE_SVC_NOTIFICATION_TIMEPERIOD
|
|
|
|
DEL_DOWNTIME_BY_HOSTGROUP_NAME
|
|
|
|
DEL_DOWNTIME_BY_START_TIME_COMMENT
|
|
|
|
DISABLE_ALL_NOTIFICATIONS_BEYOND_HOST
|
|
|
|
DISABLE_CONTACT_HOST_NOTIFICATIONS
|
|
|
|
DISABLE_CONTACT_SVC_NOTIFICATIONS
|
|
|
|
DISABLE_CONTACTGROUP_HOST_NOTIFICATIONS
|
|
|
|
DISABLE_CONTACTGROUP_SVC_NOTIFICATIONS
|
|
|
|
DISABLE_FAILURE_PREDICTION
|
|
|
|
DISABLE_HOST_AND_CHILD_NOTIFICATIONS
|
|
|
|
DISABLE_HOST_FRESHNESS_CHECKS
|
|
|
|
DISABLE_NOTIFICATIONS_EXPIRE_TIME
|
|
|
|
DISABLE_SERVICE_FRESHNESS_CHECKS
|
|
|
|
ENABLE_ALL_NOTIFICATIONS_BEYOND_HOST
|
|
|
|
ENABLE_CONTACT_HOST_NOTIFICATIONS
|
|
|
|
ENABLE_CONTACT_SVC_NOTIFICATIONS
|
|
|
|
ENABLE_CONTACTGROUP_HOST_NOTIFICATIONS
|
|
|
|
ENABLE_CONTACTGROUP_SVC_NOTIFICATIONS
|
|
|
|
ENABLE_FAILURE_PREDICTION
|
|
|
|
ENABLE_HOST_AND_CHILD_NOTIFICATIONS
|
|
|
|
ENABLE_HOST_FRESHNESS_CHECKS
|
|
|
|
ENABLE_SERVICE_FRESHNESS_CHECKS
|
|
|
|
READ_STATE_INFORMATION
|
|
|
|
SAVE_STATE_INFORMATION
|
|
|
|
SCHEDULE_AND_PROPAGATE_HOST_DOWNTIME
|
|
|
|
SCHEDULE_AND_PROPAGATE_TRIGGERED_HOST_DOWNTIME
|
|
|
|
SET_HOST_NOTIFICATION_NUMBER
|
|
|
|
SET_SVC_NOTIFICATION_NUMBER
|
|
|
|
START_ACCEPTING_PASSIVE_HOST_CHECKS
|
|
|
|
START_ACCEPTING_PASSIVE_SVC_CHECKS
|
|
|
|
START_OBSESSING_OVER_HOST
|
|
|
|
START_OBSESSING_OVER_HOST_CHECKS
|
|
|
|
START_OBSESSING_OVER_SVC
|
|
|
|
START_OBSESSING_OVER_SVC_CHECKS
|
|
|
|
STOP_ACCEPTING_PASSIVE_HOST_CHECKS
|
|
|
|
STOP_ACCEPTING_PASSIVE_SVC_CHECKS
|
|
|
|
STOP_OBSESSING_OVER_HOST
|
|
|
|
STOP_OBSESSING_OVER_HOST_CHECKS
|
|
|
|
STOP_OBSESSING_OVER_SVC
|
|
|
|
STOP_OBSESSING_OVER_SVC_CHECKS
|
|
|
|
|
2014-08-05 18:48:29 +02:00
|
|
|
### <a id="differences-1x-2-async-event-execution"></a> Asynchronous Event Execution
|
|
|
|
|
2016-05-23 14:14:59 +02:00
|
|
|
Unlike Icinga 1.x, Icinga 2 does not block when it's waiting for a command
|
|
|
|
being executed -- whether if it's a check, a notification, an event
|
|
|
|
handler, a performance data writing update, etc. That way you'll
|
|
|
|
recognize low to zero (check) latencies with Icinga 2.
|
2014-08-05 18:48:29 +02:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
### <a id="differences-1x-2-checks"></a> Checks
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
#### <a id="differences-1x-2-check-output"></a> Check Output
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2013-10-10 09:40:50 +02:00
|
|
|
Icinga 2 does not make a difference between `output` (first line) and
|
|
|
|
`long_output` (remaining lines) like in Icinga 1.x. Performance Data is
|
|
|
|
provided separately.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-06-11 11:38:08 +02:00
|
|
|
There is no output length restriction as known from Icinga 1.x using an
|
|
|
|
[8KB static buffer](http://docs.icinga.org/latest/en/pluginapi.html#outputlengthrestrictions).
|
|
|
|
|
2013-10-10 09:40:50 +02:00
|
|
|
The `StatusDataWriter`, `IdoMysqlConnection` and `LivestatusListener` types
|
|
|
|
split the raw output into `output` (first line) and `long_output` (remaining
|
|
|
|
lines) for compatibility reasons.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
#### <a id="differences-1x-2-initial-state"></a> Initial State
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2013-10-10 09:40:50 +02:00
|
|
|
Icinga 1.x uses the `max_service_check_spread` setting to specify a timerange
|
|
|
|
where the initial state checks must have happened. Icinga 2 will use the
|
|
|
|
`retry_interval` setting instead and `check_interval` divided by 5 if
|
|
|
|
`retry_interval` is not defined.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
### <a id="differences-1x-2-comments"></a> Comments
|
2014-04-17 17:51:13 +02:00
|
|
|
|
|
|
|
Icinga 2 doesn't support non-persistent comments.
|
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
### <a id="differences-1x-2-commands"></a> Commands
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-05-29 16:54:57 +02:00
|
|
|
Unlike in Icinga 1.x there are three different command types in Icinga 2:
|
|
|
|
`CheckCommand`, `NotificationCommand`, and `EventCommand`.
|
2013-10-10 09:40:50 +02:00
|
|
|
|
2015-11-20 15:57:16 +01:00
|
|
|
For example in Icinga 1.x it is possible to accidentally use a notification
|
2013-10-10 09:40:50 +02:00
|
|
|
command as an event handler which might cause problems depending on which
|
2014-04-04 18:41:54 +02:00
|
|
|
runtime macros are used in the notification command.
|
2013-10-10 09:40:50 +02:00
|
|
|
|
|
|
|
In Icinga 2 these command types are separated and will generate an error on
|
|
|
|
configuration validation if used in the wrong context.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
|
|
|
While Icinga 2 still supports the complete command line in command objects, it's
|
2015-03-19 17:18:36 +01:00
|
|
|
recommended to use [command arguments](3-monitoring-basics.md#command-arguments)
|
|
|
|
with optional and conditional command line parameters instead.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2015-03-19 17:18:36 +01:00
|
|
|
It's also possible to define default argument values for the command itself
|
|
|
|
which can be overridden by the host or service then.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-08-27 16:30:35 +02:00
|
|
|
#### <a id="differences-1x-2-commands-timeouts"></a> Command Timeouts
|
|
|
|
|
|
|
|
In Icinga 1.x there were two global options defining a host and service check
|
|
|
|
timeout. This was essentially bad when there only was a couple of check plugins
|
|
|
|
requiring some command timeouts to be extended.
|
|
|
|
|
2016-05-23 14:14:59 +02:00
|
|
|
Icinga 2 allows you to specify the command timeout directly on the command. So,
|
2015-02-11 11:51:58 +01:00
|
|
|
if your VMVware check plugin takes 15 minutes, [increase the timeout](6-object-types.md#objecttype-checkcommand)
|
2014-08-27 16:30:35 +02:00
|
|
|
accordingly.
|
|
|
|
|
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
### <a id="differences-1x-2-groups"></a> Groups
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-10-28 21:43:20 +01:00
|
|
|
In Icinga 2 hosts, services, and users are added to groups using the `groups`
|
2013-10-10 14:24:19 +02:00
|
|
|
attribute in the object. The old way of listing all group members in the group's
|
2014-05-04 11:25:12 +02:00
|
|
|
`members` attribute is available through `assign where` and `ignore where`
|
2015-03-19 17:18:36 +01:00
|
|
|
expressions by using [group assign](3-monitoring-basics.md#group-assign-intro).
|
2013-10-10 14:24:19 +02:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
object Host "web-dev" {
|
|
|
|
import "generic-host"
|
2013-10-10 14:24:19 +02:00
|
|
|
}
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
object HostGroup "dev-hosts" {
|
|
|
|
display_name = "Dev Hosts"
|
|
|
|
assign where match("*-dev", host.name)
|
2014-03-27 12:30:24 +01:00
|
|
|
}
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-05-22 19:19:09 +02:00
|
|
|
#### <a id="differences-1x-2-service-hostgroup-host"></a> Add Service to Hostgroup where Host is Member
|
2014-05-04 11:25:12 +02:00
|
|
|
|
2015-03-19 17:18:36 +01:00
|
|
|
In order to associate a service with all hosts in a host group the [apply](3-monitoring-basics.md#using-apply)
|
2014-03-29 01:13:28 +01:00
|
|
|
keyword can be used:
|
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
apply Service "ping4" {
|
2014-03-31 18:38:15 +02:00
|
|
|
import "generic-service"
|
2014-03-29 01:13:28 +01:00
|
|
|
|
2014-03-31 18:38:15 +02:00
|
|
|
check_command = "ping4"
|
2014-03-29 01:13:28 +01:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
assign where "dev-hosts" in host.groups
|
2014-03-29 01:13:28 +01:00
|
|
|
}
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
### <a id="differences-1x-2-notifications"></a> Notifications
|
2013-10-10 08:52:58 +02:00
|
|
|
|
|
|
|
Notifications are a new object type in Icinga 2. Imagine the following
|
|
|
|
notification configuration problem in Icinga 1.x:
|
|
|
|
|
2013-10-10 11:22:32 +02:00
|
|
|
* Service A should notify contact X via SMS
|
|
|
|
* Service B should notify contact X via Mail
|
|
|
|
* Service C should notify contact Y via Mail and SMS
|
|
|
|
* Contact X and Y should also be used for authorization (e.g. in Classic UI)
|
2013-10-10 08:52:58 +02:00
|
|
|
|
|
|
|
The only way achieving a semi-clean solution is to
|
|
|
|
|
2013-10-10 14:24:19 +02:00
|
|
|
* Create contact X-sms, set service_notification_command for sms, assign contact
|
|
|
|
to service A
|
|
|
|
* Create contact X-mail, set service_notification_command for mail, assign
|
|
|
|
contact to service B
|
|
|
|
* Create contact Y, set service_notification_command for sms and mail, assign
|
|
|
|
contact to service C
|
2013-10-10 11:22:32 +02:00
|
|
|
* Create contact X without notification commands, assign to service A and B
|
2013-10-10 08:52:58 +02:00
|
|
|
|
|
|
|
Basically you are required to create duplicated contacts for either each
|
|
|
|
notification method or used for authorization only.
|
|
|
|
|
|
|
|
Icinga 2 attempts to solve that problem in this way
|
|
|
|
|
2013-10-10 11:22:32 +02:00
|
|
|
* Create user X, set SMS and Mail attributes, used for authorization
|
|
|
|
* Create user Y, set SMS and Mail attributes, used for authorization
|
2014-04-09 10:25:23 +02:00
|
|
|
* Create notification A-SMS, set command for sms, add user X,
|
2013-10-10 14:24:19 +02:00
|
|
|
assign notification A-SMS to service A
|
2014-04-09 10:25:23 +02:00
|
|
|
* Create notification B-Mail, set command for mail, add user X,
|
2013-10-10 14:24:19 +02:00
|
|
|
assign notification Mail to service B
|
2014-04-09 10:25:23 +02:00
|
|
|
* Create notification C-SMS, set command for sms, add user Y,
|
2013-10-10 14:24:19 +02:00
|
|
|
assign notification C-SMS to service C
|
2014-04-09 10:25:23 +02:00
|
|
|
* Create notification C-Mail, set command for mail, add user Y,
|
2013-10-10 14:24:19 +02:00
|
|
|
assign notification C-Mail to service C
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2013-10-10 11:22:32 +02:00
|
|
|
Previously in Icinga 1.x it looked like this:
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2013-10-10 11:22:32 +02:00
|
|
|
service -> (contact, contactgroup) -> notification command
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2013-10-10 11:22:32 +02:00
|
|
|
In Icinga 2 it will look like this:
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2013-10-10 11:22:32 +02:00
|
|
|
Service -> Notification -> NotificationCommand
|
|
|
|
-> User, UserGroup
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
#### <a id="differences-1x-2-escalations"></a> Escalations
|
2013-10-10 08:52:58 +02:00
|
|
|
|
|
|
|
Escalations in Icinga 1.x require a separated object matching on existing
|
|
|
|
objects. Escalations happen between a defined start and end time which is
|
|
|
|
calculated from the notification_interval:
|
|
|
|
|
2013-10-10 09:40:50 +02:00
|
|
|
start = notification start + (notification_interval * first_notification)
|
|
|
|
end = notification start + (notification_interval * last_notification)
|
2013-10-10 08:52:58 +02:00
|
|
|
|
|
|
|
In theory first_notification and last_notification can be set to readable
|
|
|
|
numbers. In practice users are manipulating those attributes in combination
|
|
|
|
with notification_interval in order to get a start and end time.
|
|
|
|
|
|
|
|
In Icinga 2 the notification object can be used as notification escalation
|
|
|
|
if the start and end times are defined within the 'times' attribute using
|
|
|
|
duration literals (e.g. 30m).
|
|
|
|
|
|
|
|
The Icinga 2 escalation does not replace the current running notification.
|
|
|
|
In Icinga 1.x it's required to copy the contacts from the service notification
|
2014-06-15 23:43:46 +02:00
|
|
|
to the escalation to guarantee the normal notifications once an escalation
|
2013-10-10 08:52:58 +02:00
|
|
|
happens.
|
|
|
|
That's not necessary with Icinga 2 only requiring an additional notification
|
2013-10-10 09:40:50 +02:00
|
|
|
object for the escalation itself.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
#### <a id="differences-1x-2-notification-options"></a> Notification Options
|
2014-04-22 12:09:24 +02:00
|
|
|
|
2013-10-10 08:52:58 +02:00
|
|
|
Unlike Icinga 1.x with the 'notification_options' attribute with comma-separated
|
|
|
|
state and type filters, Icinga 2 uses two configuration attributes for that.
|
2014-05-29 16:54:57 +02:00
|
|
|
All state and type filter use long names OR'd with a pipe together
|
2013-10-10 08:52:58 +02:00
|
|
|
|
|
|
|
notification_options w,u,c,r,f,s
|
|
|
|
|
2014-04-09 10:25:23 +02:00
|
|
|
states = [ Warning, Unknown, Critical ]
|
|
|
|
filters = [ Problem, Recovery, FlappingStart, FlappingEnd, DowntimeStart, DowntimeEnd, DowntimeRemoved ]
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-10-28 21:43:20 +01:00
|
|
|
Icinga 2 adds more fine-grained type filters for acknowledgements, downtime,
|
2013-10-10 08:52:58 +02:00
|
|
|
and flapping type (start, end, ...).
|
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
### <a id="differences-1x-2-dependencies-parents"></a> Dependencies and Parents
|
2013-10-10 08:52:58 +02:00
|
|
|
|
|
|
|
In Icinga 1.x it's possible to define host parents to determine network reachability
|
|
|
|
and keep a host's state unreachable rather than down.
|
|
|
|
Furthermore there are host and service dependencies preventing unnecessary checks and
|
|
|
|
notifications. A host must not depend on a service, and vice versa. All dependencies
|
|
|
|
are configured as separate objects and cannot be set directly on the host or service
|
|
|
|
object.
|
|
|
|
|
2014-06-15 23:43:46 +02:00
|
|
|
A service can now depend on a host, and vice versa. A service has an implicit dependency
|
|
|
|
(parent) to its host. A host to host dependency acts implicitly as host parent relation.
|
2014-05-04 11:25:12 +02:00
|
|
|
|
2014-05-22 19:19:09 +02:00
|
|
|
The former `host_name` and `dependent_host_name` have been renamed to `parent_host_name`
|
|
|
|
and `child_host_name` (same for the service attribute). When using apply rules the
|
|
|
|
child attributes may be omitted.
|
|
|
|
|
2015-01-22 09:40:25 +01:00
|
|
|
For detailed examples on how to use the dependencies please check the [dependencies](3-monitoring-basics.md#dependencies)
|
2014-05-22 19:19:09 +02:00
|
|
|
chapter.
|
|
|
|
|
2015-10-28 21:07:12 +01:00
|
|
|
Dependencies can be applied to hosts or services using the [apply rules](18-language-reference.md#apply).
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2013-10-10 14:24:19 +02:00
|
|
|
The `StatusDataWriter`, `IdoMysqlConnection` and `LivestatusListener` types
|
|
|
|
support the Icinga 1.x schema with dependencies and parent attributes for
|
|
|
|
compatibility reasons.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
### <a id="differences-1x-2-flapping"></a> Flapping
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2013-10-10 09:40:50 +02:00
|
|
|
The Icinga 1.x flapping detection uses the last 21 states of a service. This
|
2013-10-10 08:52:58 +02:00
|
|
|
value is hardcoded and cannot be changed. The algorithm on determining a flapping state
|
2013-10-10 14:24:19 +02:00
|
|
|
is as follows:
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2013-10-10 14:24:19 +02:00
|
|
|
flapping value = (number of actual state changes / number of possible state changes)
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2013-10-10 14:24:19 +02:00
|
|
|
The flapping value is then compared to the low and high flapping thresholds.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2015-11-20 15:57:16 +01:00
|
|
|
The algorithm used in Icinga 2 does not store the past states but calculates the flapping
|
2013-10-10 08:52:58 +02:00
|
|
|
threshold from a single value based on counters and half-life values. Icinga 2 compares
|
|
|
|
the value with a single flapping threshold configuration attribute.
|
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
### <a id="differences-1x-2-check-result-freshness"></a> Check Result Freshness
|
2013-10-11 13:25:56 +02:00
|
|
|
|
2014-05-29 16:54:57 +02:00
|
|
|
Freshness of check results must be enabled explicitly in Icinga 1.x. The attribute
|
|
|
|
`freshness_threshold` defines the threshold in seconds. Once the threshold is triggered, an
|
2013-10-11 13:25:56 +02:00
|
|
|
active freshness check is executed defined by the `check_command` attribute. Both check
|
|
|
|
methods (active and passive) use the same freshness check method.
|
|
|
|
|
|
|
|
In Icinga 2 active check freshness is determined by the `check_interval` attribute and no
|
|
|
|
incoming check results in that period of time (last check + check interval). Passive check
|
|
|
|
freshness is calculated from the `check_interval` attribute if set. There is no extra
|
|
|
|
`freshness_threshold` attribute in Icinga 2. If the freshness checks are invalid, a new
|
|
|
|
service check is forced.
|
|
|
|
|
2014-06-15 10:45:06 +02:00
|
|
|
### <a id="differences-1x-2-real-reload"></a> Real Reload
|
|
|
|
|
2015-03-19 17:18:36 +01:00
|
|
|
In Nagios / Icinga 1.x a daemon reload does the following:
|
2014-06-15 10:45:06 +02:00
|
|
|
|
|
|
|
* receive reload signal SIGHUP
|
2016-05-23 14:14:59 +02:00
|
|
|
* stop all events (checks, notifications, etc.)
|
2014-06-15 10:45:06 +02:00
|
|
|
* read the configuration from disk and validate all config objects in a single threaded fashion
|
|
|
|
* validation NOT ok: stop the daemon (cannot restore old config state)
|
|
|
|
* validation ok: start with new objects, dump status.dat / ido
|
|
|
|
|
2015-03-19 17:18:36 +01:00
|
|
|
Unlike Icinga 1.x the Icinga 2 daemon reload does not block any event
|
|
|
|
execution during config validation:
|
2014-06-15 10:45:06 +02:00
|
|
|
|
|
|
|
* receive reload signal SIGHUP
|
|
|
|
* fork a child process, start configuration validation in parallel work queues
|
|
|
|
* parent process continues with old configuration objects and the event scheduling
|
|
|
|
(doing checks, replicating cluster events, triggering alert notifications, etc.)
|
|
|
|
* validation NOT ok: child process terminates, parent process continues with old configuration state
|
2015-08-28 17:17:07 +02:00
|
|
|
(this is **essential** for the [cluster config synchronisation](13-distributed-monitoring-ha.md#cluster-zone-config-sync))
|
2014-06-15 10:45:06 +02:00
|
|
|
* validation ok: child process signals parent process to terminate and save its current state
|
2014-10-28 21:43:20 +01:00
|
|
|
(all events until now) into the icinga2 state file
|
2014-06-15 10:45:06 +02:00
|
|
|
* parent process shuts down writing icinga2.state file
|
|
|
|
* child process waits for parent process gone, reads the icinga2 state file and synchronizes all historical and status data
|
|
|
|
* child becomes the new session leader
|
|
|
|
|
2015-03-19 17:18:36 +01:00
|
|
|
The DB IDO configuration dump and status/historical event updates use a queue
|
|
|
|
not blocking event execution. Same goes for any other enabled feature.
|
2014-06-15 23:43:46 +02:00
|
|
|
The configuration validation itself runs in parallel allowing fast verification checks.
|
2014-06-15 10:45:06 +02:00
|
|
|
|
2015-03-19 17:18:36 +01:00
|
|
|
That way your monitoring does not stop during a configuration reload.
|
2014-06-15 10:45:06 +02:00
|
|
|
|
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
### <a id="differences-1x-2-state-retention"></a> State Retention
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2013-10-10 14:24:19 +02:00
|
|
|
Icinga 1.x uses the `retention.dat` file to save its state in order to be able
|
|
|
|
to reload it after a restart. In Icinga 2 this file is called `icinga2.state`.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2015-03-19 17:18:36 +01:00
|
|
|
The format is **not** compatible with Icinga 1.x.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
### <a id="differences-1x-2-logging"></a> Logging
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2013-10-10 14:24:19 +02:00
|
|
|
Icinga 1.x supports syslog facilities and writes its own `icinga.log` log file
|
|
|
|
and archives. These logs are used in Icinga 1.x Classic UI to generate
|
|
|
|
historical reports.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
|
|
|
Icinga 2 compat library provides the CompatLogger object which writes the icinga.log and archive
|
|
|
|
in Icinga 1.x format in order to stay compatible with Classic UI and other addons.
|
2014-05-04 11:25:12 +02:00
|
|
|
|
2013-10-10 08:52:58 +02:00
|
|
|
The native Icinga 2 logging facilities are split into three configuration objects: SyslogLogger,
|
2014-05-29 16:54:57 +02:00
|
|
|
FileLogger, StreamLogger. Each of them has their own severity and target configuration.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
The Icinga 2 daemon log does not log any alerts but is considered an application log only.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
### <a id="differences-1x-2-broker-modules-features"></a> Broker Modules and Features
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2013-10-10 14:24:19 +02:00
|
|
|
Icinga 1.x broker modules are incompatible with Icinga 2.
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2013-10-10 14:24:19 +02:00
|
|
|
In order to provide compatibility with Icinga 1.x the functionality of several
|
|
|
|
popular broker modules was implemented for Icinga 2:
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2013-10-10 14:24:19 +02:00
|
|
|
* IDOUtils
|
|
|
|
* Livestatus
|
|
|
|
* Cluster (allows for high availability and load balancing)
|
2013-10-10 08:52:58 +02:00
|
|
|
|
2013-10-10 19:05:49 +02:00
|
|
|
|
2014-05-04 11:25:12 +02:00
|
|
|
### <a id="differences-1x-2-distributed-monitoring"></a> Distributed Monitoring
|
2013-10-10 19:05:49 +02:00
|
|
|
|
|
|
|
Icinga 1.x uses the native "obsess over host/service" method which requires the NSCA addon
|
2014-05-29 16:54:57 +02:00
|
|
|
passing the slave's check results passively onto the master's external command pipe.
|
2013-10-10 19:05:49 +02:00
|
|
|
While this method may be used for check load distribution, it does not provide any configuration
|
2014-10-28 21:43:20 +01:00
|
|
|
distribution out-of-the-box. Furthermore comments, downtimes, and other stateful runtime data is
|
2013-10-10 19:05:49 +02:00
|
|
|
not synced between the master and slave nodes. There are addons available solving the check
|
|
|
|
and configuration distribution problems Icinga 1.x distributed monitoring currently suffers from.
|
|
|
|
|
2015-03-19 17:18:36 +01:00
|
|
|
Icinga 2 implements a new built-in
|
2015-08-28 17:17:07 +02:00
|
|
|
[distributed monitoring architecture](13-distributed-monitoring-ha.md#distributed-monitoring-high-availability),
|
2014-05-22 19:19:09 +02:00
|
|
|
including config and check distribution, IPv4/IPv6 support, SSL certificates and zone support for DMZ.
|
2015-03-19 17:18:36 +01:00
|
|
|
High Availability and load balancing are also part of the Icinga 2 Cluster feature, next to local replay
|
|
|
|
logs on connection loss ensuring that the event history is kept in sync.
|