我想弄清楚如何将 a 的键值对添加map[string]string到我的 prometheus.Labels 结构中。
如果您有使用普罗米修斯的经验:我正在尝试动态添加标签及其值。
labelsMap := make(map[string]string)
labelsMap["nodepool"] = "default"
labelsMap["zone"] = "europe-west"
// here I'd like to add my key / value pairs from my map
containerLabels := prometheus.Labels{
"node": "nodename",
"container": "foo",
"qos": "bar",
}
requestedContainerCPUCoresGauge.With(containerLabels).Set(containerMetric.RequestedCPUCores)
我的问题:
如何labelsMap在我的 containerLabels 中动态添加给定映射中的键/值对?
阿晨1998
相关分类