Info |
---|
In this manual, we will describe how to make a local copy of a built-in notification script |
...
. |
Status | ||||
---|---|---|---|---|
|
Panel | ||||||
---|---|---|---|---|---|---|
| ||||||
|
Getting Started
Background information regarding this subject is available on our:
Quick and dirty
...
way
Copy the notification plugin to the local directory
Code Block language bash theme RDark OMD[
...
mysite]:~$ cp ~/lib/python3/cmk/cee/notification_plugins/servicenow.py ~/local/share/check_mk/notifications/
.make the script executable
Code Block language bash theme RDark OMD[
...
mysite]:~/local/share/check_mk/notifications$ chmod +x ~/local/share/check_mk/notifications/servicenow.py
.
Inside the script, you need to change
...
The 3rd line to
...
the name of your script. This name will be displayed in the Notification rules
Code Block language bash theme RDark 3 # Notification script name 4 # Bulk: no
.
...
At the end of the notification script, we need to add:
Code Block language bash theme RDark print("outside: about to check for __main__ == %s" % __name__) if __name__ == "__main__": print("outside: about to call main()") sys.exit(main())
...
The common way for
...
Python developers
...
This way is more efficient and recommended for
...
Python developers
...
Create
...
a
...
folder
...
inside
...
the
...
local
...
Python structure.
Code Block language bash theme RDark OMD[mysite]:~$ cd ~/local/lib/python3/cmk OMD[
...
mysite]:~/local/lib/python3/cmk$ mkdir notifications_custom
...
.
Copy the notification script from the Python structure to the local Python structure.
Code Block language bash theme RDark OMD[mysite]:~$ cp ~/lib/python3/cmk/cee/notification_plugins/servicenow.py ~/local/lib/python3/cmk/notifications_custom/
...
.
Copy the notification script from the notification path to the local notification path.
Code Block language bash theme RDark OMD[mysite]:~$ cp ~/share/check_mk/notifications/servicenow ~/local/share/check_mk/notifications/
...
.
Now let's change some values.
Code Block language bash theme RDark OMD[mysite]:~$ vi ~/local/share/check_mk/notifications/servicenow
...
.
Change
Code Block language bash theme RDark # Servicenow (Enterprise only)
...
to
...
...
# Servicenow Custom (Enterprise only) and the import directory to the local structure
...
from cmk.cee.notification_plugins import servicenow
...
to
...
from cmk
...
.notifications_custom import servicenow
...
Note |
---|
Per default, all notifications notification scripts are inside ~inside ~/lib/python3/cmk/notification_plugins/. As servicenow ServiceNow is only available with the enterprise edition, you will find the script here: ~~/lib/python3/cmk/cee/notification_plugins/ |
Related articles
Filter by label (Content by label) | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...