OpenTSDB / opentsdb

A scalable, distributed Time Series Database.
http://opentsdb.net
GNU Lesser General Public License v2.1
4.98k stars 1.25k forks source link

Accept InfluxDB's line protocol #966

Open johann8384 opened 7 years ago

johann8384 commented 7 years ago

Supports multiple dimensions on the value, so

metricname,tag=foo,tag1=foo2 sum=10,max=4,min=3,count=3 1492547008

Would become several datapoints in OpenTSDB:

metricname.sum 1492547008 10 tag=foo tag1=foo2 metricname.max 1492547008 4 tag=foo tag1=foo2 metricname.min 1492547008 3 tag=foo tag1=foo2 metricname.count 1492547008 3 tag=foo tag1=foo2

More compact on the wire, allows integrations with more tools.

johann8384 commented 7 years ago

Related: #351