MongoDB查询时间序列数据

时间:2017-06-08 12:16:29

标签: mongodb

我正在尝试编写查询查询,仅在第一个小时检索数据,即每小时:" 1"在以下事件文档中。以下是db.events.find()。pretty()。

的输出

在实际情况中,我会根据id和小时找到。

{
        "_id" : "08062017/cpu",
        "metadata" : {
                "host" : "localhost",
                "metric" : "cpu"
        },
        "hourly" : {
                "0" : {
                        "total" : 234,
                        "used" : 123
                },
                "1" : {
                        "total" : 234,
                        "used" : 123
                }
        }
}

0 个答案:

没有答案