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

Java client for InfluxDB

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

Currently the code throws exception _**org.influxdb.InfluxDBIOException: java.net.UnknownHostException**_ if the client sits behind the proxy and can not resolve the hostname. Hostname InetAddress is only used for UDP writes so IMHO,...

Hi, is there any way to map created POJO with annotations measurement and columns to Query? To avoid using in each request: Point point1 = Point.measurement("cpu") .time(System.currentTimeMillis(), TimeUnit.MILLISECONDS) .addField("idle", 90L)...

kind/feature-request

Point carries information about time instant, but offers no way to access it (which is sometimes needed). Otherwise, we need to wrap Points with time information, thus, duplicating it. Proposed...

some issues closed by answer/explanation are worth reflecting in FAQ list, e.g. issue #469 Float precision changes issue #494 losing precision when query with epoch=ns

In current influxdb-java data model we find all concepts of InfluxDB except Series (refer to https://docs.influxdata.com/influxdb/v1.6/concepts/key_concepts/). Series is the core concept in any time series database. A time series DB...

kind/feature-request

It is currently only possible to specify timeUnit as follows: `query(final Query query, TimeUnit timeUnit)` Please could you add timeUnit to all other types of queries? In particular, I would...

kind/enhancement

Hello, please take a look at [InfluxDBImpl.java#L548](https://github.com/influxdata/influxdb-java/blob/master/src/main/java/org/influxdb/impl/InfluxDBImpl.java) If you throw an InfluxDBException an this position, it is not possible to catch it on the caller side: ``` public void loadDataAsync(int...

correct me if I were wrong. [this line](https://github.com/influxdata/influxdb-java/blob/e573475972850d3d5b486f673dc8558a568ee051/src/main/java/org/influxdb/impl/BatchProcessor.java#L325) seems to be sending udp batch points one by one?

nop/wontfix

Connection to influx still active even after calling `influxdb.close();` Here is my **Test Code** ``` public static void main (String[]args){ InfluxDB influxDBConnection; for (int i = 0; i < 10;...

question

The current exception handler implementation doesn't make it possible to completely eliminate logging of errors. You can add an additional error handler, but `LOG.log(Level.SEVERE, "Batch could not be sent. Data...

kind/enhancement