如何将整个JSON对象(详细数据)存储到Prometheus Timeseries数据库中

时间:2018-05-16 05:33:29

标签: prometheus

根据Prometheus数据库的研究,我们可以根据时间序列存储数值。 我的要求是“我希望存储整个JSON对象w.r.t Timeseries,并绘制图形时我可以从JSON对象中获取其中一个维度并根据时间绘制。

请你帮忙解决这个问题。

2 个答案:

答案 0 :(得分:1)

您无法在prometheus中存储JSON对象。但您可以尝试将JSON对象转换为Prometheus指标。

<metric name>{<label name>=<label value>, ...}

https://prometheus.io/docs/concepts/data_model/

答案 1 :(得分:0)

如前所述,您无法将JSON存储在prometheus中。 我不建议将JSON转换为标签,因为您可能最终在DB中有大量的时间序列行。 每个独特的标签组合都是一个新系列。