influxdb-java icon indicating copy to clipboard operation
influxdb-java copied to clipboard

Java client for InfluxDB

Results 103 influxdb-java issues
Sort by recently updated
recently updated
newest added

Hello, I have a traefik 2.2 reverse proxy on top of my InfluxDB 1.8.2 instance. I played with [warp10-ext-influxdb](https://github.com/senx/warp10-ext-influxdb), which relies on influxdb-java and I noticed that : * with...

BatchPionts.lineProtocol() allocates many temporary objects which can be avoided. please consider using Utf8Writer instead of using StringBuilder & String.getByte()

Presently the time format of queryResult of rfc3339 is something like `yyyy-MM-dd'T'HH:mm:ssX`, which I excepted was `yyyy-MM-dd HH:mm:ss` like https://docs.influxdata.com/influxdb/v1.8/query_language/explore-data/#rfc3339-like-date-time-string. Using SimpleDateFormat needs two-time converting ```Java SimpleDateFormat inputSdf = new...

To do a web request I have to call `InfluxDBFactory.connect(...)` from a thread. ``` Thread { InfluxDBFactory.connect(URL) }.start() ``` But this immedialtey throws ``` W/om.my.app: Accessing hidden method Ljava/lang/invoke/MethodHandles$Lookup;->(Ljava/lang/Class;I)V (greylist,...

A `@Default` annotation was requested to protect pojos coming back with null strings in #661. I interpreted it to mean something along the lines of what's in the unit test....

InfluxDB has some restrictions on tag values : they cannot contain some characters such as: line feed (\n), carriage return (\r). Currently, the Java client library does not check whether...

There is no way to write single points to a default retention policy in case it is not named "autogen". The following code will fail: ``` InfluxDB influxDB = influxDB.setDatabase("mydb");...

kind/bug
help wanted
difficulty/low

I went through the `BatchProcessor` implementation and noticed that when the batch processor is lagging behind and is not able to clear the `queue`, **`InfluxDB.write(Point p)` becomes a blocking call...

### I want to get a statement like this: `SELECT * FROM flow WHERE ((ipValue = 200) OR (ipValue = 400)) AND value < 200` ### But I found that...

question