1

私はInfluxDBを試しています。ドキュメントの変更された例を使用してランダムなテスト データを生成していますが、ノードで実行すると [エラー: ホストが利用できません] と表示されます。curl と Web コンソールを介して InfluxDB に接続しようとしましたが、どちらも機能するため、どこで失敗しているのかわかりません。

influxdb と influx npm をインストールしたので、最新バージョンがあります。

var influxdb = require('influx');
client = new influxdb.InfluxDB('localhost',8086, 'root', 'root', 'tempdb');

// start time of 24 hours ago
var backMilliseconds = 86000 * 1000;
var startTime = new Date() - backMilliseconds;
var timeInterval = 60 * 1000;
var eventTypes = ["click", "view", "post", "comment"];

var cpuSeries = {
  name:    "cpu_idle",
  columns: ["time", "value", "hostName"],
  points:  []
};

var eventSeries = {
  name:    "customer_events",
  columns: ["time", "customerId", "type"],
  points:  []
};

for (i = 0; i < backMilliseconds; i += timeInterval) {
  // generate fake cpu idle host values
  var hostName = "server" + Math.floor(Math.random() * 100);
  var value = Math.random() * 100;
  var pointValues = [startTime + i, value, hostName];
  cpuSeries.points.push(pointValues);

  // generate some fake customer events
  for (j = 0; j < Math.random() * 10; j += 1) {
    var customerId = Math.floor(Math.random() * 1000);
    var eventTypeIndex = Math.floor(Math.random() * 1000 % 4);
    var eventValues = [startTime + i, customerId, eventTypes[eventTypeIndex]];
    eventSeries.points.push(eventValues);
  }
}

client.writeSeries([cpuSeries, eventSeries],{},function(err){
    if(err) {
        console.log("Cannot write data",err);
    }
});
4

1 に答える 1

-1

コンストラクターは、位置パラメーターを使用する代わりにオプション マップを使用するように変更されたと思います。github リポジトリでこの例を参照してください

于 2014-10-14T16:16:56.807 に答える