如何使用groinga-api和groovy安排icinga2的停机时间?

时间:2015-11-27 13:15:35

标签: json api groovy downtime icinga

我正在寻找一种方法,用一个时髦的脚本来安排icinga2的停机时间。

我已经尝试过创建一个小的groovy脚本。尝试使用icinga文档中的示例:

curl -u root:icinga -k -s 'https://localhost:5665/v1/actions/schedule-downtime?type=Host&filter=host.vars.os==%22Linux%22' -d '{ "author" : "michi", "comment": "Maintenance.", "start_time": 1441136260, "end_time": 1441137260, "duration": 1000 }' -X POST | python -m json.tool

但是将其改编为我的脚本不起作用。非常重要的是“我注意到每个属性名称。

1 个答案:

答案 0 :(得分:2)

解决方法是这样的:

使用wslite作为webservice客户端。这是最小的例子。

现在我连接到启用了api的服务器。证书是自签名的,为什么需要“sslTrustAllCerts”。

我从主机“testserver”中选择所有服务并设置停机时间(持续时间,以秒为单位)。

@Grab('com.github.groovy-wslite:groovy-wslite:1.1.2')
import wslite.rest.*
import wslite.http.auth.*

def client = new RESTClient("https://myicinga2server:5665/")
client.authorization = new HTTPBasicAuthorization("root", "secret")

def timeFrom = System.currentTimeMillis() / 1000L
def timeDurationSec = 600
def timeTo = timeFrom + timeDurationSec

try
{    
    def response = client.post(
        path: '/v1/actions/schedule-downtime?type=Service&filter=host.name==%22testserver%22',
        headers: ["Accept": "application/json"],
        sslTrustAllCerts: true) 
        {
            json "author":"mstein", "comment":"Test-Downtime", "start_time": timeFrom, "end_time": timeTo, "duration": timeDurationSec, "fixed": true
        }

        assert 200 == response.statusCode
        print response.text    
}
catch (Exception exc)
{
    println "Error: " + exc.getClass().toString()
    println "Message: " + exc.getMessage()
    println "Response: " + exc.getResponse()
    System.exit(1)
}

这对我有用!