我正在使用node-metrics
包发布 librato 指标,但无法弄清楚如何向指标添加标签。我尝试了下面的代码,但它不起作用。它可以很好地发布指标,但我没有看到任何附加到指标的标签,如下所示:https ://www.librato.com/docs/kb/faq/glossary/whats_a_tag/
代码:
client.post("/metrics", {
gauges: [
{name: "NameOfMetrics", value: 55, tag: "tag1"}
],
}, function(err, response) {
if (err) {
console.log("ERROR: in publishing metrics - " + err.message);
}
});