Support InfluxDB line protocol over UDP
See original GitHub issueit would be convenient to export springboot production metrics inside endpoint /metrics
to influxdb via line protocol, in the properties file it could support the following variables:
influxdb.host=localhost
influxdb.port=8086
influxdb.protocol=tcp or udp
influxdb.database=springboot
influxdb.measurement=counter
influxdb.interval=60s
influxdb line protocol: https://docs.influxdata.com/influxdb/v1.4/write_protocols/line_protocol_tutorial/
Issue Analytics
- State:
- Created 6 years ago
- Comments:12 (7 by maintainers)
Top Results From Across the Web
UDP protocol support in InfluxDB - InfluxData Documentation
Since UDP is a connectionless protocol, there is no way to signal to the data source if any error occurs, and if data...
Read more >InfluxDB line protocol on QuestDB
The UDP receiver is deprecated since QuestDB version 6.5.2. We recommend the TCP receiver introduced by this article. We've had a UDP version...
Read more >Which is the faster or better way of sending large amounts of ...
InfluxDB line protocol is designed for high-throughput ingestion. This interface is for write operations only, so you will still need to use ...
Read more >VictoriaMetrics · The High Performance Open Source Time ...
Prometheus exposition format. InfluxDB line protocol over HTTP, TCP and UDP. Graphite plaintext protocol with tags. OpenTSDB put message. HTTP OpenTSDB /api/put ...
Read more >InfluxDB line protocol - 《QuestDB v6.0 Documentation》
InfluxDB TCP listener on port 9009 by default; InfluxDB UDP listener on port 9009 by default. For more details on configuring how QuestDB ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@wei-hai Ah, thanks. That makes it a lot clearer! We should support this.
@jkschneider Telegraf has plugin socket_listener which can handle UDP packet and forward it to influxdb via HTTP. In our use case we send line protocol metric via UDP packet and let Telegraf handle it.
https://github.com/influxdata/telegraf/tree/master/plugins/inputs/socket_listener