influx
The influx
codec supports the influx line protocol.
Example
A single line of data in influx line protocol format:
weather,location=us-midwest temperature=82 1465839830100400200
The equivalent tremor value representation::
{
"measurement": "weather",
"tags": { "location": "us-midwest" },
"fields": { "temperature": 82.0 },
"timestamp": 1465839830100400200
}