icinga2/doc/3.03-macros.md

180 lines
7.8 KiB
Markdown
Raw Normal View History

2013-10-10 19:05:49 +02:00
## <a id="macros"></a> Macros
2013-10-01 12:59:02 +02:00
Macros may be used in command definitions to dynamically change how the command
is executed.
2013-10-01 12:59:02 +02:00
Here is an example of a command definition which uses user-defined macros:
2013-10-01 12:59:02 +02:00
object CheckCommand "my-ping" inherits "plugin-check-command" {
command = [
"$plugindir$/check_ping",
"-4",
"-H", "$address$",
"-w", "$wrta$,$wpl$%",
"-c", "$crta$,$cpl$%",
"-p", "$packets$",
"-t", "$timeout$"
],
2013-10-01 12:59:02 +02:00
macros = {
wrta = 100,
wpl = 5,
2013-10-01 12:59:02 +02:00
crta = 200,
cpl = 15,
packets = 5,
timeout = 0
}
}
> **Note**
>
> If you have previously used Icinga 1.x you may already be familiar with
2013-10-10 16:55:59 +02:00
> user and argument macros (e.g., `USER1` or `ARG1`). Unlike in Icinga 1.x macros
2013-10-01 12:59:02 +02:00
> may have arbitrary names and arguments are no longer specified in the
2013-10-10 16:55:59 +02:00
> `check_command` setting.
2013-10-01 12:59:02 +02:00
Macro names must be enclosed in two `$` signs, e.g. `$plugindir$`. When using
the `$` sign as single character, you need to escape it with an additional dollar
sign (`$$`).
When executing commands Icinga 2 checks the following objects in this order to look
up macros:
2013-10-01 12:59:02 +02:00
1. User object (only for notifications)
2. Service object
3. Host object
4. Command object
5. Global macros in the IcingaMacros variable
This execution order allows you to define default values for macros in your
2013-10-07 09:35:44 +02:00
command objects. The `my-ping` command shown above uses this to set default
2013-10-01 12:59:02 +02:00
values for some of the latency thresholds and timeouts.
2013-10-07 09:35:44 +02:00
When using the `my-ping` command you can override all or some of the macros
2013-10-01 12:59:02 +02:00
in the service definition like this:
object Host "my-server1" {
services["ping"] = {
check_command = "my-ping",
2013-10-01 15:33:34 +02:00
macros["packets"] = 10 // Overrides the default value of 5 given in the command
2013-10-01 12:59:02 +02:00
},
macros["address"] = "10.0.0.1"
}
If a macro isn't defined anywhere an empty value is used and a warning is
emitted to the Icinga 2 log.
> **Note**
>
2013-10-10 16:55:59 +02:00
> Macros in capital letters (e.g. `HOSTNAME`) are reserved for use by Icinga 2
2013-10-01 12:59:02 +02:00
> and should not be overwritten by users.
2013-10-07 09:35:44 +02:00
By convention every host should have an `address` macro. Hosts
which have an IPv6 address should also have an `address6` macro.
2013-10-01 12:59:02 +02:00
2013-10-07 09:35:44 +02:00
The `plugindir` macro should be set to the path of your check plugins. The
`/etc/icinga2/conf.d/macros.conf` file is usually used to define global macros
2013-10-01 12:59:02 +02:00
including this one.
2013-10-02 09:50:26 +02:00
### Host Macros
2013-10-01 12:59:02 +02:00
The following host macros are available in all commands that are executed for
hosts or services:
Name | Description
-----------------------|--------------
2013-10-01 15:33:34 +02:00
HOSTNAME | The name of the host object.
2013-10-10 16:55:59 +02:00
HOSTDISPLAYNAME | The value of the `display_name` attribute.
2013-10-07 09:35:44 +02:00
HOSTALIAS | This is an alias for the `HOSTDISPLAYNAME` macro.
2013-10-10 16:55:59 +02:00
HOSTSTATE | The host's current state. Can be one of `UNREACHABLE`, `UP` and `DOWN`.
HOSTSTATEID | The host's current state. Can be one of `0` (up), `1` (down) and `2` (unreachable).
HOSTSTATETYPE | The host's current state type. Can be one of `SOFT` and `HARD`.
2013-10-01 15:33:34 +02:00
HOSTATTEMPT | The current check attempt number.
MAXHOSTATTEMPT | The maximum number of checks which are executed before changing to a hard state.
2013-10-10 16:55:59 +02:00
LASTHOSTSTATE | The host's previous state. Can be one of `UNREACHABLE`, `UP` and `DOWN`.
LASTHOSTSTATEID | The host's previous state. Can be one of `0` (up), `1` (down) and `2` (unreachable).
LASTHOSTSTATETYPE | The host's previous state type. Can be one of `SOFT` and `HARD`.
LASTHOSTSTATECHANGE | The last state change's timestamp.
HOSTDURATIONSEC | The time since the last state change.
2013-10-01 15:33:34 +02:00
HOSTLATENCY | The host's check latency.
HOSTEXECUTIONTIME | The host's check execution time.
HOSTOUTPUT | The last check's output.
HOSTPERFDATA | The last check's performance data.
LASTHOSTCHECK | The timestamp when the last check was executed.
2013-10-07 09:35:44 +02:00
HOSTADDRESS | This is an alias for the `address` macro. If the `address` macro is not defined the host object's name is used instead.
HOSTADDRESS6 | This is an alias for the `address6` macro. If the `address` macro is not defined the host object's name is used instead.
2013-10-01 12:59:02 +02:00
Custom variables are made available as macros with the name "_HOST<name>"
where <name> is the name of the custom variable.
2013-10-02 09:50:26 +02:00
### Service Macros
2013-10-01 12:59:02 +02:00
The following service macros are available in all commands that are executed for
services:
Name | Description
-----------------------|--------------
2013-10-01 15:33:34 +02:00
SERVICEDESC | The short name of the service object.
2013-10-10 16:55:59 +02:00
SERVICEDISPLAYNAME | The value of the `display_name` attribute.
2013-10-07 09:35:44 +02:00
SERVICECHECKCOMMAND | This is an alias for the `SERVICEDISPLAYNAME` macro.
2013-10-10 16:55:59 +02:00
SERVICESTATE | The service's current state. Can be one of `OK`, `WARNING`, `CRITICAL` and `UNKNOWN`.
SERVICESTATEID | The service's current state. Can be one of `0` (ok), `1` (warning), `2` (critical) and `3` (unknown).
SERVICESTATETYPE | The service's current state type. Can be one of `SOFT` and `HARD`.
2013-10-01 15:33:34 +02:00
SERVICEATTEMPT | The current check attempt number.
MAXSERVICEATTEMPT | The maximum number of checks which are executed before changing to a hard state.
2013-10-10 16:55:59 +02:00
LASTSERVICESTATE | The service's previous state. Can be one of `OK`, `WARNING`, `CRITICAL` and `UNKNOWN`.
LASTSERVICESTATEID | The service's previous state. Can be one of `0` (ok), `1` (warning), `2` (critical) and `3` (unknown).
LASTSERVICESTATETYPE | The service's previous state type. Can be one of `SOFT` and `HARD`.
2013-10-01 15:33:34 +02:00
LASTSERVICESTATECHANGE | The last state change's timestamp.
SERVICEDURATIONSEC | The time since the last state change.
2013-10-01 15:33:34 +02:00
SERVICELATENCY | The service's check latency.
SERVICEEXECUTIONTIME | The service's check execution time.
SERVICEOUTPUT | The last check's output.
SERVICEPERFDATA | The last check's performance data.
LASTSERVICECHECK | The timestamp when the last check was executed.
TOTALHOSTSERVICES | Number of services associated with the host.
TOTALHOSTSERVICESOK | Number of services associated with the host which are in an `OK` state.
TOTALHOSTSERVICESWARNING | Number of services associated with the host which are in a `WARNING` state.
TOTALHOSTSERVICESUNKNOWN | Number of services associated with the host which are in an `UNKNOWN` state.
TOTALHOSTSERVICESCRITICAL | Number of services associated with the host which are in a `CRITICAL` state.
2013-10-01 12:59:02 +02:00
Custom variables are made available as macros with the name "_SERVICE<name>"
where <name> is the name of the custom variable.
2013-10-02 09:50:26 +02:00
### User Macros
2013-10-01 12:59:02 +02:00
The following service macros are available in all commands that are executed for
users:
2013-10-01 15:33:34 +02:00
Name | Description
-----------------------|--------------
USERNAME | The name of the user object.
USERDISPLAYNAME | The value of the display_name attribute.
2013-10-07 09:35:44 +02:00
USEREMAIL | This is an alias for the `email` macro.
USERPAGER | This is an alias for the `pager` macro.
2013-10-01 12:59:02 +02:00
Custom variables are made available as macros with the name "_USER<name>" and
"_CONTACT<name>" where <name> is the name of the custom variable.
### Notification Macros
Custom variables are made available as macros with the name "_NOTIFICATION<name>"
where <name> is the name of the custom variable.
2013-10-02 09:50:26 +02:00
### Global Macros
2013-10-01 15:33:34 +02:00
The following macros are available in all commands:
Name | Description
-----------------------|--------------
TIMET | Current UNIX timestamp.
LONGDATETIME | Current date and time including timezone information.
SHORTDATETIME | Current date and time.
DATE | Current date.
TIME | Current time including timezone information.