我正在尝试通过HTTP-API在Grafana中创建一个注释。
由于official docs我需要添加时间戳。
示例请求(来自官方文档)
POST /api/annotations HTTP/1.1
Accept: application/json
Content-Type: application/json
{
"dashboardId":468,
"panelId":1,
"time":1507037197339,
"isRegion":true,
"timeEnd":1507180805056,
"tags":["tag1","tag2"],
"text":"Annotation Description"
}
但它是什么样的时间戳?我找不到任何有关它的信息。
我使用当前的unix时间戳测试了它,但注释不会显示。
也许有帮助:我昨天的最后一次警报(13. Dez 2017,UTC + 1的07:02 PM)对应"time": 1513101762000,
。
答案 0 :(得分:0)
基于find
方法的文档,时间应该以毫秒为单位:
Query Parameters:
from: epoch datetime in milliseconds. Optional.
to: epoch datetime in milliseconds. Optional.
点击此处查看一些代码示例: http://currentmillis.com/
此外,如果您没有看到它们显示在信息中心上,请确保对API使用标头令牌身份验证,并确保为仪表板所在的组织创建了令牌API。
卷曲请求看起来也类似:
curl -i -XPOST -H "Authorization: Bearer <token>" -H "Accept: application/json" -H "Content-Type: application/json" -d '{"time":1513187523781,"isRegion":false,"tags":["test1"],"text":"Testing Annotations API"}' "https://grafana.host/api/annotations"