所以我目前正在做一些温度记录。我已经设置了一个 php 脚本,它将直接在 elasticsearch 中抽取数据。到目前为止,一切都很好。
为了显示该数据,我使用了 Kibana 5。但 Kibana 以某种方式显示的数据不正确 :(。
这是一个示例:弹性搜索转储:
{
"_index": "temp",
"_type": "sensor_data",
"_id": "AVw2t2C8BalsJaItPPk5",
"_score": null,
"_source": {
"temp01": 20.25,
"temp02": 21.375,
"temp03": 21.875,
"temp04": 23.875,
"temp05": 17.625,
"timestamp": 1495566606
},
"sort": [
1495566606000
]
},
{
"_index": "temp",
"_type": "sensor_data",
"_id": "AVw2tnfsBalsJaItPPk3",
"_score": null,
"_source": {
"temp01": 20.312,
"temp02": 21.375,
"temp03": 21.875,
"temp04": 23.875,
"temp05": 17.687,
"timestamp": 1495566546
},
"sort": [
1495566546000
]
}
在 Kibana 中,它看起来像这样:Kibana
除了 temp03 之外, temp01 图表很好(以及所有其他图表)。
这里是索引模式:Kibana中的索引模式
有人能帮我吗?谢谢 :)