使用NodeJS通过librado检索指标

时间:2016-12-19 11:42:21

标签: javascript node.js librato

早上好!

我在尝试从librato获取单个号码以便在html页面中使用时遇到了麻烦。

我只想获取指标AWS.Billing.EstimatedCharges.total的最后一个值,即花费该值并将其全部放在HTML页面中的客户端的名称(简单,但不是我)

我尝试使用此API https://github.com/goodeggs/librato-node 我仍然没有想出如何解决这个问题。

ps:我无法使用嵌入图表。

var http = require('http'); 
http.createServer(function (req, res) { }).listen(1337, "127.0.0.1"); 
console.log('Server running at 127.0.0.1:1337/'); 
var librato = require('librato-node'); 
api = librato.configure({email: 'myemail', token: 'mytoken'}); 
librato.start(); process.once('SIGINT', function() { librato.stop(); 
// stop optionally takes a callback }); 
// Don't forget to specify an error handler, otherwise errors will be thrown
librato.on('error', function(err) { console.error(err); });

1 个答案:

答案 0 :(得分:0)

试试npm install librato-metrics,这里有很多猜测所以请报告回来} 8 *)

const client = require('librato-metrics').createClient(
{
  email: process.env.LIBRATO_METRICS_EMAIL,
  token: process.env.LIBRATO_METRICS_TOKEN
}


  const payload = {
    count: 1,
    resolution: 60
  };

  client.get('/metrics/AWS.Billing.EstimatedCharges.total', payload,
    function(err, response) {
      if (err) {
        console.error(err, payload);            
      } else {
        console.log(response);

      }
    });

```