icinga-powershell-framework/doc/icingaintegration/04-Icinga-Config.md
Lord Hepipud 3c82757f1f Adds native Icinga config support, publish cmdlet
Adds native support for writing Icinga 2 configuration for plugins and allows to easy publish new configurations for modules with the new Cmdlet Publish-IcingaPluginConfiguration
2020-11-24 12:34:28 +01:00

56 lines
2.8 KiB
Markdown

# Icinga Config Generator
To make the integration as easy as possible, the Framework is shipping with an Icinga 2 configuration generator. Each Check-Plugin available within the Framework is able to auto-generate a Icinga config which can be copied to your Icinga 2 hosts.
## Generating Configuration
To automatically generate the Icinga configuration, open a PowerShell terminal and type in
```powershell
icinga
```
to load the Icinga PowerShell Framework.
Afterwards use the command
```powershell
Get-IcingaCheckCommandConfig -IcingaConfig;
```
to automatically generate the configuration for all found Check-Commands.
If you wish to specify specific commands only, you can filter them as well:
```powershell
Get-IcingaCheckCommandConfig -CheckName Invoke-IcingaCheckBiosSerial, Invoke-IcingaCheckCPU -IcingaConfig;
```
Last but not least you can output the Icinga configuration directly into a file. To do this, simply use the `OutDirectory` argument. You only require to specify a directory here, as the file including a timestamp is generated by the Cmdlet itself
```powershell
Get-IcingaCheckCommandConfig -OutDirectory 'C:\Users\myuser\Documents\'
```
Once the file is exported, you can copy the `.conf` files onto your Icinga 2 hosts to use them.
**Note:** Because of a possible configuration error cased by multiple `PowerShell Base` CheckCommands, it is generated separately. You only require this once on your system and is cross-compatible with every single CheckCommand.
## Custom File Names
You can modify the name of the output `.conf` file by using the `-FileName` argument in combination with the other arguments:
```powershell
Get-IcingaCheckCommandConfig -CheckName Invoke-IcingaCheckBiosSerial, Invoke-IcingaCheckCPU -IcingaConfig -OutDirectory 'C:\Users\myuser\Documents\' -FileName 'IcingaForWindows';
```
This will generate the plugins configuration `C:\Users\myuser\Documents\IcingaForWindows.conf` and `C:\Users\myuser\Documents\PowerShell_Base.conf`
The `.conf` ending is not required, as the Cmdlet will take care of that for you.
## Developer Note
The generated Icinga configuration will benefit from a detailed documentation of the module and each single argument. Descriptions for arguments are parsed into the commands description field, informing users of what the argument actually does. Furthermore arguments are automatically mapped to certain object types. A `switch` argument for example will always be rendered with a `set_if` flag, ensuring you only require to set the corresponding custom variable to true to set this argument.
In addition `array` arguments use the Icinga DSL to properly build PowerShell arrays based on Icinga arrays.
This will increase the entire usability of the module and prevent you from having to document plugins multiple times.