我正在使用Google Cloud Platform GKE,
并立即使用kubernetes。
我正在尝试通过Google Bigtable使用OpenTSDB,现在是质量检查时间。
但是当我只放入一些数据时却显示了意外的错误,但是没有显示。即使持续很长时间,也不再显示。
我使用了这张图片和教程(版本和环境相同)
https://github.com/GoogleCloudPlatform/opentsdb-bigtable
这是我的步骤。
1)使用http POST请求api放置数据
例如)http://localhost:4242/api/put?details=true
with Json object
{
"metrics": "foo.bar",
"timestamp": "1483401600000",
"value": 1.0,
"tags": {
"foo": "bar"
}
}
2)确认日志,hbase控制台
3)使用GET API进行查询
例如:
http://localhost:4242/api/query?start=1483401600000&ms=true&m=sum:foo.bar
4)看不到任何东西,只是空 vector
最佳答案
https://cloud.google.com/bigtable/docs/integrations#opentsdb链接到有关OpenTSDB和Cloud Bigtable集成的更多文档,包括Using OpenTSDB to Monitor Time-Series Data。您可以尝试更新到最新版本的AsyncBigtable,然后查看它是否有效。