sol1 / icingaweb2-module-netbox

Netbox importer for director, and integration with netbox
28 stars 6 forks source link

minor change to set default _type, so sync rules can filter #37

Closed jseifeddine closed 3 months ago

jseifeddine commented 3 months ago

Filter expressions in Director can only evaluate string or NULL types.

Before this PR, the icinga_* PHP variables could either be NULL (if empty or not set) or an object (if set), as described in the README.

This caused the filter expression to throw an error.

This change sets the icinga_*_type to icinga_* object's type as a string to avoid this issue.

Fix for #34 #35