influxdb-java
influxdb-java copied to clipboard
Java client for InfluxDB
The code is as follows: ```java import lombok.Getter; import lombok.Setter; import org.influxdb.InfluxDB; import org.influxdb.InfluxDBFactory; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Getter @Setter @Configuration @ConfigurationProperties(prefix = "influxdb") public class InfluxdbConfig {...
Hi, We are in the situation where our POJOs get dynamically built. There can be 100's of them. It wouldn't be feasible to annotate them all. Also, when they get...
hello, i test the case precision() in src/test/java/org/influxdb/impl/BatchProcessorTest.java it should execute like below: 1. CREATE DATABASE "write_unittest_1659064333553" 2. CREATE RETENTION POLICY somePolicy ON write_unittest_1659064333553 DURATION 30h REPLICATION 2 DEFAULT 3....
I am having a problem with bad long values being returned due to the conversion to double that happens when all JSON numeric values are stored as Doubles. This came...
try to solve #276
When call `InfluxDBMapper.toPOJO()` , if the time field type is **String** and the millisecond value is an integer multiple of ten, it miss the last zero. Such as: If the...
why is the get method and set method in Point class is default,why can't be public? I just want to get the point's tag and field, but the get method...
influxdb 2.1无法链接, influxdb 2.1 的时候有的是 org、bucket、username、password 没有database,感觉是bucket取代了,但是咱们这个influxdb-java链接不上呀,请问这是怎么回事呀?

A field is an Integer in the database, but it is a Double value when it is retrieved