docs-v2/content/influxdb/v2.0/api-guide/client-libraries/nodejs/write.md

3.6 KiB

title description menu influxdb/v2.0/tags weight aliases related
Write data with the InfluxDB JavaScript client library Use the JavaScript client library to write data with the InfluxDB API in Node.js.
influxdb_2_0
name parent
Write Node.js
client libraries
JavaScript
101
/influxdb/v2.0/reference/api/client-libraries/nodejs/write
/influxdb/v2.0/write-data/troubleshoot/

Use the InfluxDB Javascript client library to write data from a Node.js environment to InfluxDB.

The Javascript client library includes the following convenient features for writing data to InfluxDB:

  • Apply default tags to data points.
  • Buffer points into batches to optimize data transfer.
  • Automatically retry requests on failure.
  • Set an optional HTTP proxy address for your network.

Before you begin

Write data with the client library

  1. Instantiate an InfluxDB client. Provide your InfluxDB URL and API token.

    import {InfluxDB, Point} from '@influxdata/influxdb-client'
    
    const influxDB = new InfluxDB({YOUR_URL, YOUR_API_TOKEN})
    

    Replace the following:

    • YOUR_URL: InfluxDB URL
    • YOUR_API_TOKEN: InfluxDB API token
  2. Use the getWriteApi() method of the client to create a write client. Provide your InfluxDB organization ID and bucket name.

    const writeApi = influxDB.getWriteApi(YOUR_ORG, YOUR_BUCKET)
    

    Replace the following:

    • YOUR_ORG: InfluxDB organization ID
    • YOUR_BUCKET: InfluxDB bucket name
  3. To apply one or more tags to all points, use the useDefaultTags() method. Provide tags as an object of key/value pairs.

    writeApi.useDefaultTags({region: 'west'})
    
  4. Use the Point() constructor to create a point.

    1. Call the constructor and provide a measurement.
    2. To add one or more tags, chain the tag() method to the constructor. Provide a name and value.
    3. To add a field of type float, chain the floatField() method to the constructor. Provide a name and value.
    const point1 = new Point('temperature')
      .tag('sensor_id', 'TLM010')
      .floatField('value', 24)
    
  5. Use the writePoint() method to write the point to your InfluxDB bucket. Finally, use the close() method to flush all pending writes. The example logs the new data point followed by "WRITE FINISHED" to stdout.

    writeApi.writePoint(point1)
    
    writeApi.close().then(() => {
      console.log('WRITE FINISHED')
    })
    

Complete example

{{< code-tabs-wrapper >}} {{% code-tabs %}} Curl Node.js {{% /code-tabs %}} {{% code-tab-content %}}

{{< get-shared-text "api/v2.0/write/write.sh" >}}

{{% /code-tab-content %}} {{% code-tab-content %}}

{{< get-shared-text "api/v2.0/write/write.mjs" >}}

{{% /code-tab-content %}} {{< /code-tabs-wrapper >}}

To run the example from a file, set your InfluxDB environment variables and use node to execute the JavaScript file.

export INFLUX_URL=http://localhost:8086 && \
export INFLUX_TOKEN=YOUR_API_TOKEN && \
export INFLUX_ORG=YOUR_ORG && \
export INFLUX_BUCKET=YOUR_BUCKET && \
node write.js

Response codes

For information about InfluxDB API response codes, see InfluxDB API Write documentation.