...
Status | ||||
---|---|---|---|---|
|
Panel | ||||||
---|---|---|---|---|---|---|
| ||||||
|
...
Log on via SSH and become the siteuser
Code Block language bash theme RDark root@linux# su mysite
.
Copy the agent to the local structure
Code Block language bash theme RDark OMD[mysite]~$:cp ~/lib/python3/cmk/special_agents/<script>.py ~/local/share/check_mk/agents/special/
.
Please be aware that in order for the custom special agent to be executed by Checkmk instead of the default one, it needs to have the same name as the default special agent.Make the script executable
Code Block language bash theme RDark OMD[mysite]~$:chmod +x ~/local/share/check_mk/agents/special/<script>.py
.
Append the following line to the end of the script using Vim.
Code Block language bash theme RDark OMD[mysite]~$: vim ~/local/share/check_mk/agents/special/<script>.py
Code Block language bash theme RDark if __name__ == "__main__": main()
Tip https://realpython.com/python-main-function/#use-if-__name__-__main__-to-control-the-execution-of-your-codeFor more information, study this python article.
Related articles
Filter by label (Content by label) | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...