我正在使用 Check_MK,我试图实现一个 python 脚本以通过 cfengine 运行以自动添加新安装的主机。我在使用 pycurl 或运行和外部 curl 时都遇到了一些麻烦。
我希望能够 pycurl 的命令示例是:
curl " http://10.20.30.40/mysite/check_mk/webapi.py?action=add_host&_username=autouser&_secret=mysecret " -d 'request={"attributes":{"alias": "winxp_1 的别名", "tag_agent" :“cmk-agent”,“tag_criticality”:“prod”,“ipaddress”:“127.0.0.1”},“主机名”:“winxp_1”,“文件夹”:“os/windows”}'
这在终端上工作正常
但我找不到正确的语法来使它在 python 脚本中工作。
谢谢你的帮助。