Fixed naming

This commit is contained in:
Ruakij 2021-11-25 18:30:50 +01:00
parent e715cc1cac
commit d77e3f8844

View File

@ -1,11 +1,11 @@
const logger = require.main.require("./helper/logger.js")("InfluxPointWriter"); const logger = require.main.require("./helper/logger.js")("InfluxPointWriter");
const { Writeable } = require('stream'); const { Writable } = require('stream');
const {InfluxDB, Point, HttpError} = require('@influxdata/influxdb-client') const {InfluxDB, Point, HttpError} = require('@influxdata/influxdb-client')
/** /**
* Get points and write them into influx * Get points and write them into influx
*/ */
class InfluxPointWriter extends Writeable{ class InfluxPointWriter extends Writable{
/** /**
* *
* @param {string} url Influx-Url * @param {string} url Influx-Url