This package has been deprecated

Author message:

this package has been deprecated

simple-influx-http

0.0.8 • Public • Published

Dependencies LCommit

Downloads NPM Node

Size install size

Tiny library for InfluxDB data write

Use command this way:

const {writeToInflux} = require('simple-influx-http');
 
(async () => {
    await writeToInflux({
        url: 'http://localhost:8086',     // influx http api url with port
        db: 'myData',                     // database name
        meas: 'water',                    // measurement name
        tags: {                           // tags to add
            country: 'russia',
            city: 'sochi',
        },
        values: {                         // values to send
            temp: 24,
            desc: 'good time to swim',
        },
        timestamp: '1476742925219947761', // time to add                (default = current)
        retry: 3,                         // superagent request retries (default = 3)
        timeout: {                        // superagent request timeout (default = 10000/20000)
            response: 10000,
            deadline: 20000,
        }
    });
})();

Readme

Keywords

Package Sidebar

Install

npm i simple-influx-http

Weekly Downloads

11

Version

0.0.8

License

Unlicense

Unpacked Size

5.6 kB

Total Files

5

Last publish

Collaborators

  • k03mad