Bosun:在通知部分发送身份验证令牌

时间:2018-05-22 13:54:44

标签: bosun

我希望Bosun对JIRA进行API调用,这需要以BASE64编码的字符串username:password的形式进行基本身份验证。我可以在通知定义中使用哪个关键字将身份验证令牌传递给JIRA?我的基本通知如下:

notification jira_alert {
    post = https://example.com:8081/rest/api/2/issue/createmeta
    contentType = application/json  

阅读bosun.org上的文档我找不到任何可以使用的特定关键字。任何提示?

1 个答案:

答案 0 :(得分:-1)

能否将密钥放入URL或JSON数据中? 例如:

notifaction chat {
    next = email  
    timeout = 10m
    post - http://chat.example.com/room/1?key=KEY&message=whatever
}