这是pushgateway的代码。我可以使用Curl发送指标,但它正在创建错误 代码:
var client = require('prom-client');
var gateway = new client.Pushgateway("http://localhost:9091");
gateway.pushAdd({ jobName: 'try123' }, function(err, resp, body) {
console.log(err, JSON.stringify(err));
console.log(resp);
//console.log("BODY");
console.log(body , JSON.stringify(body));
});
请帮我解决这个问题。