Documentation

Line protocol reference

InfluxDB 3 Enterprise is in Public Alpha

InfluxDB 3 Enterprise is in public alpha and available for testing and feedback, but is not meant for production use. Both the product and this documentation are works in progress. We welcome and encourage your input about your experience with the alpha and invite you to join our public channels for updates and to share feedback.

Alpha expectations and recommendations

InfluxDB 3 Enterprise uses line protocol to write data points. It is a text-based format that provides the table, tag set, field set, and timestamp of a data point.

// Syntax
<table>[,<tag_key>=<tag_value>[,<tag_key>=<tag_value>]] <field_key>=<field_value>[,<field_key>=<field_value>] [<timestamp>]

// Example
myTable,tag1=value1,tag2=value2 fieldKey="fieldValue" 1556813561098000000

Lines separated by the newline character \n represent a single point in InfluxDB. Line protocol is whitespace-sensitive.

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

Elements of line protocol

myTable,tag1=val1,tag2=val2 field1="v1",field2=1i 0000000000000000000

Table

(Required) The table name. InfluxDB accepts one table per point. Table names are case-sensitive and subject to naming restrictions.

Data type: String

If familiar with previous InfluxDB versions, “table” is synonymous with “measurement.”

Tag set

Optional – All tag key-value pairs for the point. Key-value relationships are denoted with the = operand. Multiple tag key-value pairs are comma-delimited. Tag keys and tag values are case-sensitive. Tag keys are subject to naming restrictions. Tag values cannot be empty; instead, omit the tag from the tag set.

Key data type: String
Value data type: String

Field set

(Required) All field key-value pairs for the point. Points must have at least one field. Field keys and string values are case-sensitive. Field keys are subject to naming restrictions.

Key data type: String
Value data type: Float | Integer | UInteger | String | Boolean

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

tableName fieldKey="field string value" 1556813561098000000

Timestamp

Optional – The unix timestamp for the data point. InfluxDB accepts one timestamp per point. If no timestamp is provided, InfluxDB uses the system time (UTC) of its host machine.

Data type: Unix timestamp

Important notes about timestamps

  • To ensure a data point includes the time a metric is observed (not received by InfluxDB), include the timestamp.
  • If your timestamps are not in nanoseconds, specify the precision of your timestamps when writing the data to InfluxDB 3 Enterprise.

Whitespace

Whitespace in line protocol determines how InfluxDB interprets the data point. The first unescaped space delimits the table and the tag set from the field set. The second unescaped space delimits the field set from the timestamp.

myTable,tag1=val1,tag2=val2 field1="v1",field2=1i 0000000000000000000

Data types and format

Float

IEEE-754 64-bit floating-point numbers. Default numerical type. InfluxDB supports scientific notation in float field values.

Float field value examples
myTable fieldKey=1.0
myTable fieldKey=1
myTable fieldKey=-1.234456e+78

Integer

Signed 64-bit integers. Trailing i on the number specifies an integer.

Minimum integerMaximum integer
-9223372036854775808i9223372036854775807i
Integer field value examples
myTable fieldKey=1i
myTable fieldKey=12485903i
myTable fieldKey=-12485903i

UInteger

Unsigned 64-bit integers. Trailing u on the number specifies an unsigned integer.

Minimum uintegerMaximum uinteger
0u18446744073709551615u
UInteger field value examples
myTable fieldKey=1u
myTable fieldKey=12485903u

String

Plain text string. Length limit 64KB.

String example
# String table name, field key, and field value
myTable fieldKey="this is a string"

Boolean

Stores true or false values.

Boolean valueAccepted syntax
Truet, T, true, True, TRUE
Falsef, F, false, False, FALSE
Boolean field value examples
myTable fieldKey=true
myTable fieldKey=false
myTable fieldKey=t
myTable fieldKey=f
myTable fieldKey=TRUE
myTable fieldKey=FALSE

Do not quote boolean field values. Quoted field values are interpreted as strings.

Unix timestamp

Unix timestamp in a specified precision. Default precision is nanoseconds (ns).

Minimum timestampMaximum timestamp
-92233720368547758069223372036854775806
Unix timestamp example
myTableName fieldKey="fieldValue" 1556813561098000000

Quotes

Line protocol supports single and double quotes as described in the following table:

ElementDouble quotesSingle quotes
TableLimited *Limited *
Tag keyLimited *Limited *
Tag valueLimited *Limited *
Field keyLimited *Limited *
Field valueStrings onlyNever
TimestampNeverNever

* Line protocol accepts double and single quotes in table names, tag keys, tag values, and field keys, but interprets them as part of the name, key, or value.

Special Characters

Line protocol supports special characters in string elements. In the following contexts, it requires escaping certain characters with a backslash (\):

ElementEscape characters
TableComma, Space
Tag keyComma, Equals Sign, Space
Tag valueComma, Equals Sign, Space
Field keyComma, Equals Sign, Space
Field valueDouble quote, Backslash

You do not need to escape other special characters.

Examples of special characters in line protocol
# Table name with spaces
my\ Table fieldKey="string value"

# Double quotes in a string field value
myTable fieldKey="\"string\" within a string"

# Tag keys and values with spaces
myTable,tag\ Key1=tag\ Value1,tag\ Key2=tag\ Value2 fieldKey=100

# Emojis
myTable,tagKey=🍭 fieldKey="Launch 🚀" 1556813561098000000

Escaping backslashes

Line protocol supports both literal backslashes and backslashes as an escape character. With two contiguous backslashes, the first is interpreted as an escape character. For example:

BackslashesInterpreted as
\\
\\\
\\\\\
\\\\\\
\\\\\\\\
\\\\\\\\\

Comments

Line protocol interprets # at the beginning of a line as a comment character and ignores all subsequent characters until the next newline \n.

# This is a comment
myTable fieldKey="string value" 1556813561098000000

Naming restrictions

Table names, tag keys, and field keys are alphanumeric and must begin with a letter or a number. They can contain dashes (-) and underscores (_).

Duplicate points

A point is uniquely identified by the table name, tag set, and timestamp. If you submit line protocol with the same table, tag set, and timestamp, but with a different field set, the field set becomes the union of the old field set and the new field set, where any conflicts favor the new field set.


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 Open Source Now in Public Alpha

InfluxDB 3 Open Source is now available for alpha testing, licensed under MIT or Apache 2 licensing.

We are releasing two products as part of the alpha.

InfluxDB 3 Core, is our new open source product. It is a recent-data engine for time series and event data. InfluxDB 3 Enterprise is a commercial version that builds on Core’s foundation, adding historical query capability, read replicas, high availability, scalability, and fine-grained security.

For more information on how to get started, check out: