Call a process.
name | example | optional | default | placeholders |
---|---|---|---|---|
path | "/usr/bin/echo" |
❌ | ❌ | |
arguments | ["-e", "Alarm '{{alarm_name}}' was triggered."] |
✔ | ✔ | |
environment_variables | {"ALARM_NAME": "{{alarm_name}}"} |
✔ | ✔ | |
working_directory | "/home/user/" |
✔ | inherited (*) | ❌ |
uid | 1000 |
✔ | inherited (*) | ❌ |
gid | 1000 |
✔ | inherited (*) | ❌ |
(*) Inherited from MinMon's process.
Absolute path to the executable to be called.
List of arguments to be passed to the process.
Environment variables to be set in the process environment.
Working directory for the spawned process. The new process will inherit MinMon's working directory if this is not set.
User ID the process will be run with. The new process will inherit MinMon's user ID if this is not set.
Group ID the process will be run with. The new process will inherit MinMon's group ID if this is not set.