Documentation

Write data to InfluxDB

Use Chronograf to write data to InfluxDB. Choose from the following methods:

Upload line protocol through the Chronograf UI

  1. Select Explore in the left navigation bar.

  2. Click Write Data in the top right corner of the Data Explorer.

    Write data to InfluxDB with Chronograf
  3. Select the database (if an InfluxQL data source is selected) or database and retention policy (if a Flux data source is selected) to write to.

    Select database and retention policy to write to
  4. Select one of the following methods for uploading line protocol:

    • Upload File: Upload a file containing line protocol to write to InfluxDB. Either drag and drop a file into the file uploader or click to use your operating systems file selector and choose a file to upload.
    • Manual Entry: Manually enter line protocol to write to InfluxDB.
  5. Select the timestamp precision of your line protocol. Chronograf supports the following units:

    • s (seconds)
    • ms (milliseconds)
    • u (microseconds)
    • ns (nanoseconds)
    Select write precision in Chronograf
  6. Click Write.

Use the InfluxQL INTO clause in a query

To write data back to InfluxDB with an InfluxQL query, include the INTO clause in your query:

  1. Select Explore in the left navigation bar.

  2. Select InfluxQL as your data source type.

  3. Write an InfluxQL query that includes the INTO clause. Specify the database, retention policy, and measurement to write to. For example:

    SELECT *
    INTO "mydb"."autogen"."example-measurement"
    FROM "example-db"."example-rp"."example-measurement"
    GROUP BY *
    
    • Copy
    • Fill window
  4. Click Submit Query.

Use InfluxQL to write to InfluxDB 2.x or InfluxDB Cloud

To use InfluxQL to write to an InfluxDB 2.x or InfluxDB Cloud instance, configure database and retention policy mappings and ensure the current InfluxDB connection includes the appropriate connection credentials.

Use the Flux to() function in a query

To write data back to InfluxDB with an InfluxQL query, include the INTO clause in your query:

  1. Select Explore in the left navigation bar.

  2. Select Flux as your data source type.

    To query InfluxDB with Flux, enable Flux in your InfluxDB configuration.

  3. Write an Flux query that includes the to() function. Provide the database and retention policy to write to. Use the db-name/rp-name syntax:

    from(bucket: "example-db/example-rp")
      |> range(start: -30d)
      |> filter(fn: (r) => r._measurement == "example-measurement")
      |> to(bucket: "mydb/autogen")
    
    • Copy
    • Fill window
  4. Click Run Script.


Was this page helpful?

Thank you for your feedback!


The future of Flux

Flux is going into maintenance mode. You can continue using it as you currently are without any changes to your code.

Read more

InfluxDB 3 Core and Enterprise are now in Beta

InfluxDB 3 Core and Enterprise are now available for beta testing, available under MIT or Apache 2 license.

InfluxDB 3 Core is a high-speed, recent-data engine that collects and processes data in real-time, while persisting it to local disk or object storage. InfluxDB 3 Enterprise is a commercial product that builds on Core’s foundation, adding high availability, read replicas, enhanced security, and data compaction for faster queries. A free tier of InfluxDB 3 Enterprise will also be available for at-home, non-commercial use for hobbyists to get the full historical time series database set of capabilities.

For more information, check out: