influxdb-java
influxdb-java copied to clipboard
Java client for InfluxDB
I understand that OneShotBatchWriter gets one shot to write its points to influxdb, but I found when importing historical data through influxdb-java, that the OneShotBatchWriter stops processing its list of...
The first example in the readme.md uses the deprecated "createDatabase" method.
I'm using `org.influxdb:influxdb-java:2.10`. I'd like to limit my `@Measurement` classes visibility to package-private, but currently it doesn't work because of the following exception: ``` org.influxdb.InfluxDBMapperException: java.lang.IllegalAccessException: Class org.influxdb.impl.InfluxDBResultMapper can not...
Can you please, add BigDecimal support into InfluxDBResultMapper. Thanks
Hi, I use the method `toPojo` to store the result of a query in my Java class, using in that class, for each field, the annotation `Column`. The problem is...
# Summary Newlines in tag values are not escaped. I'm not exactly sure if they can be escaped (?), but currently bad values are being inserted instead. # Steps to...
If I don't provide a URL with an "http://" prefix, I get a NullReferenceException. This is not relevant for udp. Using version 2.5. The problem is in InfluxDBImpl: `return InetAddress.getByName(HttpUrl.parse(url).host());`
Helpers like 'describeDatabases', 'databaseExists', 'createDatabase' etc are really .. helpful. I completely understand that all these functions are available through the more generic 'query' function but it seems really unnecessary...
When you submit a metric with a NaN value of a field, it fails server-side with "org.influxdb.InfluxDBException: http: bad request". It would be nice to have client-side validation with a...
I'm using Influxdb client for writing and have a requirement to set a connection timeout, so the data not written within that specified time interval (ex: 5 seconds), the connection...