在 ICINGA API 中传递参数的 curl 命令:
我有一个 curl 命令并将其传递给 Bash 脚本,我需要在此 URL 的 POST 方法中有两个变量,如何将参数传递给 CURL 命令
curl -k -s -u 'root:icinga' -H 'Accept: application/json' \
-X POST 'https://sample.com:5665/v1/actions/acknowledge-problem?type=Service' \
-d '{ "author": "icingaadmin", "comment": " Working on it.", "notify": true, "filter": "host.name == {\"$1\} && service.name == {\"$2\}"" }''' \
| python -m json.tool
$1 和 $2 应该分别有主机名和服务名
请帮忙
谢谢阿拉文德