InfluxDB line protocol reference

InfluxDB line protocol is a text based format for writing points to InfluxDB.

Line protocol syntax

  1. <measurement>[,<tag_key>=<tag_value>[,<tag_key>=<tag_value>]] <field_key>=<field_value>[,<field_key>=<field_value>] [<timestamp>]

Line protocol accepts the newline character \n and is whitespace-sensitive.

Note Line protocol does not support the newline character \n in tag values or field values.

Syntax description

InfluxDB line protocol informs InfluxDB of the data’s measurement, tag set, field set, and timestamp.

ElementOptional/RequiredDescriptionType(See data types for more information.)
MeasurementRequiredThe measurement name. InfluxDB accepts one measurement per point.String
Tag setOptionalAll tag key-value pairs for the point.Tag keys and tag values are both strings.
Field setRequired. Points must have at least one field.All field key-value pairs for the point.Field keys are strings. Field values can be floats, integers, strings, or Booleans.
TimestampOptional. InfluxDB uses the server’s local nanosecond timestamp in UTC if the timestamp is not included with the point.The timestamp for the data point. InfluxDB accepts one timestamp per point.Unix nanosecond timestamp. Specify alternative precisions with the InfluxDB API.

Performance tips:

  • Before sending data to InfluxDB, sort by tag key to match the results from theGo bytes.Compare function.
  • To significantly improve compression, use the coarsest precision possible for timestamps.
  • Use the Network Time Protocol (NTP) to synchronize time between hosts. InfluxDB uses a host’s local time in UTC to assign timestamps to data. If a host’s clock isn’t synchronized with NTP, the data that the host writes to InfluxDB may have inaccurate timestamps.

Data types

DatatypeElement(s)Description
FloatField valuesIEEE-754 64-bit floating-point numbers. This is the default numerical type. Examples: 1, 1.0, 1.e+78, 1.E+78.
IntegerField valuesSigned 64-bit integers (-9223372036854775808 to 9223372036854775807). Specify an integer with a trailing i on the number. Example: 1i.
StringMeasurements, tag keys, tag values, field keys, field valuesLength limit 64KB.
BooleanField valuesStores TRUE or FALSE values.TRUE write syntax:[t, T, true, True, TRUE].FALSE write syntax:[f, F, false, False, FALSE]
TimestampTimestampsUnix nanosecond timestamp. Specify alternative precisions with the InfluxDB API. The minimum valid timestamp is -9223372036854775806 or 1677-09-21T00:12:43.145224194Z. The maximum valid timestamp is 9223372036854775806 or 2262-04-11T23:47:16.854775806Z.

Boolean syntax for writes and queries

Acceptable Boolean syntax differs for data writes and data queries.For more information, seeFrequently asked questions.

Field type discrepancies

In a measurement, a field’s type cannot differ in a shard, but can differ acrossshards.

To learn how field value type discrepancies can affect SELECT * queries, seeHow does InfluxDB handle field type discrepancies across shards?.

Examples

Write the field value -1.234456e+78 as a float to InfluxDB

  1. > INSERT mymeas value=-1.234456e+78

InfluxDB supports field values specified in scientific notation.

Write a field value 1.0 as a float to InfluxDB

  1. > INSERT mymeas value=1.0

Write the field value 1 as a float to InfluxDB

  1. > INSERT mymeas value=1

Write the field value 1 as an integer to InfluxDB

  1. > INSERT mymeas value=1i

Write the field value stringing along as a string to InfluxDB

  1. > INSERT mymeas value="stringing along"

Always double quote string field values. More on quoting below.

Write the field value true as a Boolean to InfluxDB

  1. > INSERT mymeas value=true

Do not quote Boolean field values.The following statement writes true as a string field value to InfluxDB:

  1. > INSERT mymeas value="true"

Attempt to write a string to a field that previously accepted floats

If the timestamps on the float and string are stored in the same shard:

  1. > INSERT mymeas value=3 1465934559000000000
  2. > INSERT mymeas value="stringing along" 1465934559000000001
  3. ERR: {"error":"field type conflict: input field \"value\" on measurement \"mymeas\" is type string, already exists as type float"}

If the timestamps on the float and string are not stored in the same shard:

  1. > INSERT mymeas value=3 1465934559000000000
  2. > INSERT mymeas value="stringing along" 1466625759000000000
  3. >

Quoting, special characters, and additional naming guidelines

Quoting

ElementDouble quotesSingle quotes
TimestampNeverNever
Measurements, tag keys, tag values, field keysNeverNever
Field valuesDouble quote string field values. Do not double quote floats, integers, or Booleans.Never
  • InfluxDB line protocol allows users to double and single quote measurement names, tagkeys, tag values, and field keys.It will, however, assume that the double or single quotes are part of the name,key, or value.This can complicate query syntax (see the example below).

Examples

Invalid line protocol - Double quote the timestamp
  1. > INSERT mymeas value=9 "1466625759000000000"
  2. ERR: {"error":"unable to parse 'mymeas value=9 \"1466625759000000000\"': bad timestamp"}

Double quoting (or single quoting) the timestamp yields a bad timestamperror.

Semantic error - Double quote a Boolean field value
  1. > INSERT mymeas value="true"
  2. > SHOW FIELD KEYS FROM "mymeas"
  3. name: mymeas
  4. ------------
  5. fieldKey fieldType
  6. value string

InfluxDB assumes that all double quoted field values are strings.

Semantic error - Double quote a measurement name
  1. > INSERT "mymeas" value=200
  2. > SHOW MEASUREMENTS
  3. name: measurements
  4. ------------------
  5. name
  6. "mymeas"
  7. > SELECT * FROM mymeas
  8. > SELECT * FROM "mymeas"
  9. > SELECT * FROM "\"mymeas\""
  10. name: "mymeas"
  11. --------------
  12. time value
  13. 2016-06-14T20:36:21.836131014Z 200

If you double quote a measurement in line protocol, any queries on thatmeasurement require both double quotes and escaped (\) double quotes in theFROM clause.

Special characters

You must use a backslash character \ to escape the following special characters:

  • In string field values, you must escape:
    • double quotes
    • backslash character

For example, \" escapes double quote.

Note on backslashes:

  • If you use multiple backslashes, they must be escaped. Influx interprets backslashes as follows:
    • \ or \ interpreted as \
    • \\ or \\ interpreted as \
    • \\\ or \\\ interpreted as \\, and so on
  • In tag keys, tag values, and field keys, you must escape:
    • commas
    • equal signs
    • spaces

For example, \, escapes a comma.

  • In measurements, you must escape:
    • commas
    • spaces

You do not need to escape other special characters.

Examples

Write a point with special characters
  1. > INSERT "measurement\ with\ quo⚡️es\ and\ emoji",tag\ key\ with\ sp🚀ces=tag\,value\,with"commas" field_k\ey="string field value, only \" need be esc🍭ped"

The system writes a point where the measurement is "measurement with quo⚡️es and emoji", the tag key is tag key with sp🚀ces, thetag value is tag,value,with"commas", the field key is field_k\ey and the field value is string field value, only " need be esc🍭ped.

Additional naming guidelines

# at the beginning of the line is a valid comment character for line protocol.InfluxDB will ignore all subsequent characters until the next newline \n.

Measurement names, tag keys, tag values, field keys, and field values arecase sensitive.

InfluxDB line protocol acceptsInfluxQL keywordsas identifier names.In general, we recommend avoiding using InfluxQL keywords in your schema asit can causeconfusion when querying the data.

The keyword time is a special case.time can be acontinuous query name,database name,measurement name,retention policy name,subscription name, anduser name.In those cases, time does not require double quotes in queries.time cannot be a field key ortag key;InfluxDB rejects writes with time as a field key or tag key and returns an error.See Frequently Asked Questions for more information.

InfluxDB line protocol in practice

To learn how to write line protocol to the database, see Tools.

Duplicate points

A point is uniquely identified by the measurement name, tag set, field set, and timestamp

If you write a point to a series with a timestamp that matches an existing point, the field set becomes a union of the old and new field set, and conflicts favor the new field set.

For a complete example of this behavior and how to avoid it, seeHow does InfluxDB handle duplicate points?

Duplicate keys

If you have a tag key and field key with the same name in a measurement, one of the keys will return appended with a _1 in query results (and as a column header in Chronograf). For example, location and location_1. To query a duplicate key, drop the _1 and use the InfluxQL ::tag or ::field syntax in your query, for example:

  1. SELECT "location"::tag, "location"::field FROM "database_name"."retention_policy"."measurement"