influxdb-client-java
influxdb-client-java copied to clipboard
InfluxDB 2 JVM Based Clients
__Proposal:__ The Flux already has the [`elapsed`](https://docs.influxdata.com/flux/v0/stdlib/universe/elapsed/) function. But the Flux DSL is missing this function. __Current behavior:__ There is no such function in the `com.influxdb.query.dsl.Flux` class. __Desired behavior:__ I...
Hi bro, if the client support executing multiple queries in a single request through its query API?
https://github.com/influxdata/influxdb-client-java/blob/886eb8840b4d72fdb9973801ba4cd6e1d6fa1306/client/src/main/java/com/influxdb/client/InfluxDBClientOptions.java#L697 The InfluxDBClientOptions.ParsedUrl constructor strips the square brackets off IPv6 addresses, rendering urls containing them invalid. E.g. `http://[2001:db8:3333:4444:5555:6666:7777:8888]:8086/` becomes `http://2001:db8:3333:4444:5555:6666:7777:8888:8086/`. See how okhttp3 HttpUrl.Builder.toString() handles IPv6 addresses.
__Steps to reproduce:__ List the minimal actions needed to reproduce the behavior. 1. ... 2. ... 3. ... **### v6.7.0 is OK** __Expected behavior:__ Describe what you expected to happen....
Hi there, I make a QLQuery API like this, does any one know how to setup timeout parameters like "makeWriteApi", or there is no way to do this in "QLQueryApi"...
__Steps to reproduce:__ ```java @Getter public abstract class InfluxDbDefaultPoint { @Column(timestamp = true) private final Instant time; @Column(tag = true) private final Long deviceId; @Column private final T value; public...
__Proposal:__ Filter fuzzy(Imprecise) queries by tag or field. __Current behavior:__ Finding that there is no imprecise filtering query method or regular expression filtering method, I tried using custom but he...
__Steps to reproduce:__ List the minimal actions needed to reproduce the behavior. 1. have an influxdb2 instance with more than 20 buckets 2. call BucketsApi::findBuckets() __Expected behavior:__ The API returns...
__The issue:__ There is a problem with the data when using this method-----client.getQueryApi().query(statFlux.toString(), Stat.class); However, when using this method, the data is obtained normally-----client.getQueryApi().query(statFlux.toString()); This indicates that the database is...
Hi there, There are some 'retention policy' errors. Can someone tell me what is wrong? Especially the third/forth step? Thank you very much. Steps to reproduce: List the minimal actions...