The Plugin System
Nazara allows you to fill out the "Custom Fields" section of your device or VM entries by using a custom bash script.
This bash script should return your desired information as JSON compliant string.
To do so, you can provide Nazara with the path to your custom script using the --plugin argument.
nazara --plugin ~/.config/nazara/scripts/custom_script.sh register
Nazara will run your script and expect to get a JSON string back, which will be parsed into a
HashMap<String, Value>
Note, that we currently only support parameters which have been specified in NetBox as string type.
You can find an example script here.