Changes for Influxdb 9 RC4
Change-Id: Ia1b26d6f322a2ec1914795d050a0d7d391c4f02b
This commit is contained in:
parent
315c323994
commit
f8c332b34d
@ -24,14 +24,14 @@ public class InfluxPoint {
|
||||
private final String name;
|
||||
private final Map<String, String> tags;
|
||||
private final String timestamp;
|
||||
private final Map<String, Object> values;
|
||||
private final Map<String, Object> fields;
|
||||
|
||||
public InfluxPoint(final String name, final Map<String, String> tags, final String timestamp,
|
||||
final Map<String, Object> values) {
|
||||
final Map<String, Object> fields) {
|
||||
this.name = name;
|
||||
this.tags = tags;
|
||||
this.timestamp = timestamp;
|
||||
this.values = values;
|
||||
this.fields = fields;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
@ -46,8 +46,8 @@ public class InfluxPoint {
|
||||
return this.timestamp;
|
||||
}
|
||||
|
||||
public Map<String, Object> getValues() {
|
||||
return this.values;
|
||||
public Map<String, Object> getFields() {
|
||||
return this.fields;
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user