Icinga PowerShell - Monitoring Windows
Find a file
Lord Hepipud fd3ddd1538
Merge pull request #473 from Icinga:fix/icinga_config_string_dsl
Fix: Adds DSL parser to string arguments to fix whitespace and $ escaping

Fixes an issue with current implementation, as string values containing whitespaces or `$` are rendered wrong by default, if not set in single quotes `''`

Example:

Using `My Service`

will output

`My`
`Service`

This issue is already fixed for arrays, but plain string values on arguments require this workaround.

As Icinga 2 will always set arguments if a DSL is specified, regardless if a value is present or not, we have to use a `set_if` expression for this, but can't as the Icinga Director baskets currently ignore `set_if_format` which requires to be an expression instead of a string.
2022-08-17 17:02:16 +02:00
.github/ISSUE_TEMPLATE Updates framework to use new WMI/Cim wrapper 2020-07-27 11:45:02 +02:00
cache Adds developer mode to prevent cache overwrite 2022-05-24 14:00:59 +02:00
custom Added proper support for custom plugins / lib elements 2019-10-07 00:04:30 +02:00
doc Adds DSL parser to string arguments, fixing errors 2022-08-17 17:00:36 +02:00
lib Adds DSL parser to string arguments, fixing errors 2022-08-17 17:00:36 +02:00
RoleCapabilities Adds support for JEA profiles 2021-09-02 09:23:10 +02:00
templates Adds developer mode support for components 2022-05-30 09:46:18 +02:00
.gitattributes Adding gitattributes file 2019-12-17 17:58:45 +01:00
.gitignore Fixes errors while dynamically compiling Add-Type 2022-02-09 12:16:18 +01:00
icinga-powershell-framework.psd1 Sets next target version 2022-05-02 18:51:10 +02:00
icinga-powershell-framework.psm1 Fixes icinga command always resetting cache 2022-08-17 15:26:52 +02:00
LICENSE Create LICENSE 2019-11-04 16:16:04 +01:00
PSScriptAnalyzerSettings.psd1 Fixes lots of code styling, spelling and script analyzer 2022-01-14 22:26:53 +01:00
README.md Updates documentation for v1.6.0 2021-09-06 15:33:39 +02:00

Icinga PowerShell Framework

The Icinga PowerShell Framework provides a wide range of configuration and check possibilities to ensure an easy integration and full monitoring of Windows environments. Each single chapter of this documentation will describe parts of the module and the possibilities.

Before you continue, please take a look at the Installation Guide

Documentation

Please take a look at the following content to get to know the possibilities of the module including examples on how to use it.

Developer Guide

If you wish to extend the Framework by yourself or write custom plugins for your environment, please have a look at the Developer Guide for detailed explanations of functions and code examples.

Contributing

The Icinga PowerShell Framework is an Open Source project and lives from your contributions. No matter whether these are feature requests, issues, translations, documentation or code.

  • Please check whether a related issue alredy exists on our Issue Tracker
  • Send a Pull Request
  • The master branch shall never be corrupt!