Skip navigation links
A B C D E F G H I J L M N O P Q R S T V W 

A

actions(int) - Method in class org.influxdb.BatchOptions
 
actions(int) - Method in class org.influxdb.impl.BatchProcessor.Builder
The number of actions after which a batchwrite must be performed.
addField(String, boolean) - Method in class org.influxdb.dto.Point.Builder
 
addField(String, long) - Method in class org.influxdb.dto.Point.Builder
 
addField(String, double) - Method in class org.influxdb.dto.Point.Builder
 
addField(String, Number) - Method in class org.influxdb.dto.Point.Builder
 
addField(String, String) - Method in class org.influxdb.dto.Point.Builder
 
AuthorizationFailedException(String) - Constructor for exception org.influxdb.InfluxDBException.AuthorizationFailedException
 

B

BatchOptions - Class in org.influxdb
BatchOptions are used to configure batching of individual data point writes into InfluxDB.
BatchPoints - Class in org.influxdb.dto
{Purpose of This Type}.
BatchPoints.Builder - Class in org.influxdb.dto
The Builder to create a new BatchPoints instance.
BatchProcessor - Class in org.influxdb.impl
A BatchProcessor can be attached to a InfluxDB Instance to collect single point writes and aggregates them to BatchPoints to get a better write performance.
BatchProcessor.Builder - Class in org.influxdb.impl
The Builder to create a BatchProcessor instance.
bind(String, Object) - Method in class org.influxdb.dto.BoundParameterQuery.QueryBuilder
 
BoundParameterQuery - Class in org.influxdb.dto
 
BoundParameterQuery.QueryBuilder - Class in org.influxdb.dto
 
bufferLimit(int) - Method in class org.influxdb.BatchOptions
The client maintains a buffer for failed writes so that the writes will be retried later on.
bufferLimit(int) - Method in class org.influxdb.impl.BatchProcessor.Builder
A buffer for failed writes so that the writes will be retried later on.
build() - Method in class org.influxdb.dto.BatchPoints.Builder
Create a new BatchPoints instance.
build() - Method in class org.influxdb.dto.Point.Builder
Create a new Point.
build() - Method in class org.influxdb.impl.BatchProcessor.Builder
Create the BatchProcessor.
builder(InfluxDB) - Static method in class org.influxdb.impl.BatchProcessor
Static method to create the Builder for this BatchProcessor.
Builder(InfluxDB) - Constructor for class org.influxdb.impl.BatchProcessor.Builder
 
buildExceptionForErrorState(String) - Static method in exception org.influxdb.InfluxDBException
 

C

checkDuration(String, String) - Static method in class org.influxdb.impl.Preconditions
Enforces that the duration is a valid influxDB duration.
checkNonEmptyString(String, String) - Static method in class org.influxdb.impl.Preconditions
Enforces that the string is not empty.
checkNotNegativeNumber(Number, String) - Static method in class org.influxdb.impl.Preconditions
Enforces that the number is not negative.
checkPositiveNumber(Number, String) - Static method in class org.influxdb.impl.Preconditions
Enforces that the number is larger than 0.
close() - Method in class org.influxdb.impl.InfluxDBImpl
close thread for asynchronous batch write and UDP socket to release resources if need.
close() - Method in interface org.influxdb.InfluxDB
close thread for asynchronous batch write and UDP socket to release resources if need.
Column - Annotation Type in org.influxdb.annotation
 
connect(String) - Static method in enum org.influxdb.InfluxDBFactory
Create a connection to a InfluxDB.
connect(String, String, String) - Static method in enum org.influxdb.InfluxDBFactory
Create a connection to a InfluxDB.
connect(String, OkHttpClient.Builder) - Static method in enum org.influxdb.InfluxDBFactory
Create a connection to a InfluxDB.
connect(String, String, String, OkHttpClient.Builder) - Static method in enum org.influxdb.InfluxDBFactory
Create a connection to a InfluxDB.
consistency(InfluxDB.ConsistencyLevel) - Method in class org.influxdb.BatchOptions
 
consistency(InfluxDB.ConsistencyLevel) - Method in class org.influxdb.dto.BatchPoints.Builder
Set the ConsistencyLevel to use.
consistencyLevel(InfluxDB.ConsistencyLevel) - Method in class org.influxdb.impl.BatchProcessor.Builder
Consistency level for batch write.
create() - Method in class org.influxdb.dto.BoundParameterQuery.QueryBuilder
 
createDatabase(String) - Method in class org.influxdb.impl.InfluxDBImpl
Create a new Database.
createDatabase(String) - Method in interface org.influxdb.InfluxDB
Deprecated.
(since 2.9, removed in 3.0) Use org.influxdb.InfluxDB.query(Query) to execute a parameterized CREATE DATABASE query.
createRetentionPolicy(String, String, String, String, int, boolean) - Method in class org.influxdb.impl.InfluxDBImpl
Creates a retentionPolicy.
createRetentionPolicy(String, String, String, int, boolean) - Method in class org.influxdb.impl.InfluxDBImpl
Creates a retentionPolicy.
createRetentionPolicy(String, String, String, String, int) - Method in class org.influxdb.impl.InfluxDBImpl
Creates a retentionPolicy.
createRetentionPolicy(String, String, String, String, int, boolean) - Method in interface org.influxdb.InfluxDB
Deprecated.
(since 2.9, removed in 3.0) Use org.influxdb.InfluxDB.query(Query) to execute a parameterized CREATE RETENTION POLICY query.
createRetentionPolicy(String, String, String, int, boolean) - Method in interface org.influxdb.InfluxDB
Deprecated.
(since 2.9, removed in 3.0) Use org.influxdb.InfluxDB.query(Query) to execute a parameterized CREATE RETENTION POLICY query.
createRetentionPolicy(String, String, String, String, int) - Method in interface org.influxdb.InfluxDB
Deprecated.
(since 2.9, removed in 3.0) Use org.influxdb.InfluxDB.query(Query) to execute a parameterized CREATE RETENTION POLICY query.

D

database(String) - Static method in class org.influxdb.dto.BatchPoints
Create a new BatchPoints build to create a new BatchPoints in a fluent manner.
databaseExists(String) - Method in class org.influxdb.impl.InfluxDBImpl
Check if a database exists.
databaseExists(String) - Method in interface org.influxdb.InfluxDB
Deprecated.
(since 2.9, removed in 3.0) Use org.influxdb.InfluxDB.query(Query) to execute a SHOW DATABASES query and inspect the result.
DEFAULT_BATCH_ACTIONS_LIMIT - Static variable in class org.influxdb.BatchOptions
 
DEFAULT_BATCH_INTERVAL_DURATION - Static variable in class org.influxdb.BatchOptions
 
DEFAULT_BUFFER_LIMIT - Static variable in class org.influxdb.BatchOptions
 
DEFAULT_JITTER_INTERVAL_DURATION - Static variable in class org.influxdb.BatchOptions
 
DEFAULTS - Static variable in class org.influxdb.BatchOptions
Default batch options.
deleteDatabase(String) - Method in class org.influxdb.impl.InfluxDBImpl
Delete a database.
deleteDatabase(String) - Method in interface org.influxdb.InfluxDB
Deprecated.
(since 2.9, removed in 3.0) Use org.influxdb.InfluxDB.query(Query) to execute a DROP DATABASE query.
describeDatabases() - Method in class org.influxdb.impl.InfluxDBImpl
Describe all available databases.
describeDatabases() - Method in interface org.influxdb.InfluxDB
Deprecated.
(since 2.9, removed in 3.0) Use org.influxdb.InfluxDB.query(Query) to execute a SHOW DATABASES query.
disableBatch() - Method in class org.influxdb.impl.InfluxDBImpl
 
disableBatch() - Method in interface org.influxdb.InfluxDB
Disable Batching.
disableGzip() - Method in class org.influxdb.impl.InfluxDBImpl
Disable Gzip compress for http request body.
disableGzip() - Method in interface org.influxdb.InfluxDB
Disable Gzip compress for http request body.
dropRetentionPolicy(String, String) - Method in class org.influxdb.impl.InfluxDBImpl
Drops a retentionPolicy in a database.
dropRetentionPolicy(String, String) - Method in interface org.influxdb.InfluxDB
Deprecated.
(since 2.9, removed in 3.0) Use org.influxdb.InfluxDB.query(Query) to execute a DROP RETENTION POLICY query.

E

enableBatch() - Method in class org.influxdb.impl.InfluxDBImpl
 
enableBatch(BatchOptions) - Method in class org.influxdb.impl.InfluxDBImpl
 
enableBatch(int, int, TimeUnit) - Method in class org.influxdb.impl.InfluxDBImpl
 
enableBatch(int, int, TimeUnit, ThreadFactory) - Method in class org.influxdb.impl.InfluxDBImpl
 
enableBatch(int, int, TimeUnit, ThreadFactory, BiConsumer<Iterable<Point>, Throwable>, InfluxDB.ConsistencyLevel) - Method in class org.influxdb.impl.InfluxDBImpl
 
enableBatch(int, int, TimeUnit, ThreadFactory, BiConsumer<Iterable<Point>, Throwable>) - Method in class org.influxdb.impl.InfluxDBImpl
 
enableBatch() - Method in interface org.influxdb.InfluxDB
Enable batching of single Point writes to speed up writes significantly.
enableBatch(BatchOptions) - Method in interface org.influxdb.InfluxDB
Enable batching of single Point writes to speed up writes significantly.
enableBatch(int, int, TimeUnit) - Method in interface org.influxdb.InfluxDB
enableBatch(int, int, TimeUnit, ThreadFactory) - Method in interface org.influxdb.InfluxDB
Enable batching of single Point writes as InfluxDB.enableBatch(int, int, TimeUnit, ThreadFactory, BiConsumer) using with a exceptionHandler that does nothing.
enableBatch(int, int, TimeUnit, ThreadFactory, BiConsumer<Iterable<Point>, Throwable>, InfluxDB.ConsistencyLevel) - Method in interface org.influxdb.InfluxDB
Enable batching of single Point writes with consistency set for an entire batch flushDurations is reached first, a batch write is issued.
enableBatch(int, int, TimeUnit, ThreadFactory, BiConsumer<Iterable<Point>, Throwable>) - Method in interface org.influxdb.InfluxDB
Enable batching of single Point writes to speed up writes significant.
enableGzip() - Method in class org.influxdb.impl.InfluxDBImpl
Enable Gzip compress for http request body.
enableGzip() - Method in interface org.influxdb.InfluxDB
Enable Gzip compress for http request body.
encode(String) - Static method in class org.influxdb.dto.Query
Encode a command into x-www-form-urlencoded format.
equals(Object) - Method in class org.influxdb.dto.BatchPoints
 
equals(Object) - Method in class org.influxdb.dto.BoundParameterQuery
 
equals(Object) - Method in class org.influxdb.dto.Point
 
equals(Object) - Method in class org.influxdb.dto.Query
 
exceptionHandler(BiConsumer<Iterable<Point>, Throwable>) - Method in class org.influxdb.BatchOptions
 
exceptionHandler(BiConsumer<Iterable<Point>, Throwable>) - Method in class org.influxdb.impl.BatchProcessor.Builder
A callback to be used when an error occurs during a batchwrite.

F

field(String, Object) - Method in class org.influxdb.dto.Point.Builder
Deprecated.
fields(Map<String, Object>) - Method in class org.influxdb.dto.Point.Builder
Add a Map of fields to this point.
flush() - Method in class org.influxdb.impl.InfluxDBImpl
Send any buffered points to InfluxDB.
flush() - Method in interface org.influxdb.InfluxDB
Send any buffered points to InfluxDB.
flushDuration(int) - Method in class org.influxdb.BatchOptions
 
forDatabase(String) - Method in class org.influxdb.dto.BoundParameterQuery.QueryBuilder
 
fromInfluxDBTimeFormat(String) - Static method in enum org.influxdb.impl.TimeUtil
convert an influxdb timestamp used by influxdb to unix epoch time.

G

getActions() - Method in class org.influxdb.BatchOptions
 
getBufferLimit() - Method in class org.influxdb.BatchOptions
 
getColumns() - Method in class org.influxdb.dto.QueryResult.Series
 
getCommand() - Method in class org.influxdb.dto.Query
 
getCommandWithUrlEncoded() - Method in class org.influxdb.dto.Query
 
getConsistency() - Method in class org.influxdb.BatchOptions
 
getConsistency() - Method in class org.influxdb.dto.BatchPoints
 
getConsistencyLevel() - Method in class org.influxdb.impl.BatchProcessor
 
getDatabase() - Method in class org.influxdb.dto.BatchPoints
 
getDatabase() - Method in class org.influxdb.dto.Query
 
getError() - Method in class org.influxdb.dto.QueryResult
 
getError() - Method in class org.influxdb.dto.QueryResult.Result
 
getExceptionHandler() - Method in class org.influxdb.BatchOptions
 
getFlushDuration() - Method in class org.influxdb.BatchOptions
 
getJitterDuration() - Method in class org.influxdb.BatchOptions
 
getName() - Method in class org.influxdb.dto.QueryResult.Series
 
getParameterJsonWithUrlEncoded() - Method in class org.influxdb.dto.BoundParameterQuery
 
getPoints() - Method in class org.influxdb.dto.BatchPoints
 
getPrecision() - Method in class org.influxdb.dto.BatchPoints
 
getResponseTime() - Method in class org.influxdb.dto.Pong
 
getResults() - Method in class org.influxdb.dto.QueryResult
 
getRetentionPolicy() - Method in class org.influxdb.dto.BatchPoints
 
getSeries() - Method in class org.influxdb.dto.QueryResult.Result
 
getTags() - Method in class org.influxdb.dto.BatchPoints
 
getTags() - Method in class org.influxdb.dto.QueryResult.Series
 
getThreadFactory() - Method in class org.influxdb.BatchOptions
 
getValues() - Method in class org.influxdb.dto.QueryResult.Series
 
getVersion() - Method in class org.influxdb.dto.Pong
 

H

hasError() - Method in class org.influxdb.dto.QueryResult
Checks if this QueryResult has an error message.
hasError() - Method in class org.influxdb.dto.QueryResult.Result
Checks if this Result has an error message.
hasFields() - Method in class org.influxdb.dto.Point.Builder
Does this builder contain any fields?
hashCode() - Method in class org.influxdb.dto.BatchPoints
 
hashCode() - Method in class org.influxdb.dto.BoundParameterQuery
 
hashCode() - Method in class org.influxdb.dto.Point
 
hashCode() - Method in class org.influxdb.dto.Query
 

I

InfluxDB - Interface in org.influxdb
Interface with all available methods to access a InfluxDB database.
InfluxDB.ConsistencyLevel - Enum in org.influxdb
ConsistencyLevel for write Operations.
InfluxDB.LogLevel - Enum in org.influxdb
Controls the level of logging of the REST layer.
InfluxDBException - Exception in org.influxdb
A wrapper for various exceptions caused while interacting with InfluxDB.
InfluxDBException(String) - Constructor for exception org.influxdb.InfluxDBException
 
InfluxDBException(String, Throwable) - Constructor for exception org.influxdb.InfluxDBException
 
InfluxDBException(Throwable) - Constructor for exception org.influxdb.InfluxDBException
 
InfluxDBException.AuthorizationFailedException - Exception in org.influxdb
 
InfluxDBException.CacheMaxMemorySizeExceededException - Exception in org.influxdb
 
InfluxDBException.DatabaseNotFoundException - Exception in org.influxdb
 
InfluxDBException.FieldTypeConflictException - Exception in org.influxdb
 
InfluxDBException.HintedHandOffQueueNotEmptyException - Exception in org.influxdb
 
InfluxDBException.PointsBeyondRetentionPolicyException - Exception in org.influxdb
 
InfluxDBException.RetryBufferOverrunException - Exception in org.influxdb
 
InfluxDBException.UnableToParseException - Exception in org.influxdb
 
InfluxDBFactory - Enum in org.influxdb
A Factory to create a instance of a InfluxDB Database adapter.
InfluxDBImpl - Class in org.influxdb.impl
Implementation of a InluxDB API.
InfluxDBImpl(String, String, String, OkHttpClient.Builder) - Constructor for class org.influxdb.impl.InfluxDBImpl
 
InfluxDBImpl(String, String, String, OkHttpClient.Builder, String, String, InfluxDB.ConsistencyLevel) - Constructor for class org.influxdb.impl.InfluxDBImpl
 
InfluxDBIOException - Exception in org.influxdb
A wrapper for IOException caused while interacting with InfluxDB.
InfluxDBIOException(IOException) - Constructor for exception org.influxdb.InfluxDBIOException
 
InfluxDBMapperException - Exception in org.influxdb
 
InfluxDBMapperException(String, Throwable) - Constructor for exception org.influxdb.InfluxDBMapperException
 
InfluxDBMapperException(String) - Constructor for exception org.influxdb.InfluxDBMapperException
 
InfluxDBMapperException(Throwable) - Constructor for exception org.influxdb.InfluxDBMapperException
 
InfluxDBResultMapper - Class in org.influxdb.impl
Main class responsible for mapping a QueryResult to a POJO.
InfluxDBResultMapper() - Constructor for class org.influxdb.impl.InfluxDBResultMapper
 
interval(int, TimeUnit) - Method in class org.influxdb.impl.BatchProcessor.Builder
The interval at which at least should issued a write.
interval(int, int, TimeUnit) - Method in class org.influxdb.impl.BatchProcessor.Builder
The interval at which at least should issued a write.
isBatchEnabled() - Method in class org.influxdb.impl.InfluxDBImpl
 
isBatchEnabled() - Method in interface org.influxdb.InfluxDB
Returns whether Batching is enabled.
isGood() - Method in class org.influxdb.dto.Pong
Good or bad connection status.
isGzipEnabled() - Method in class org.influxdb.impl.InfluxDBImpl
Returns whether Gzip compress for http request body is enabled.
isGzipEnabled() - Method in interface org.influxdb.InfluxDB
Returns whether Gzip compress for http request body is enabled.
isMergeAbleWith(BatchPoints) - Method in class org.influxdb.dto.BatchPoints
Test whether is possible to merge two BatchPoints objects.
isRetryWorth() - Method in exception org.influxdb.InfluxDBException.AuthorizationFailedException
 
isRetryWorth() - Method in exception org.influxdb.InfluxDBException.CacheMaxMemorySizeExceededException
 
isRetryWorth() - Method in exception org.influxdb.InfluxDBException.DatabaseNotFoundException
 
isRetryWorth() - Method in exception org.influxdb.InfluxDBException.FieldTypeConflictException
 
isRetryWorth() - Method in exception org.influxdb.InfluxDBException.HintedHandOffQueueNotEmptyException
 
isRetryWorth() - Method in exception org.influxdb.InfluxDBException
 
isRetryWorth() - Method in exception org.influxdb.InfluxDBException.PointsBeyondRetentionPolicyException
 
isRetryWorth() - Method in exception org.influxdb.InfluxDBException.RetryBufferOverrunException
 
isRetryWorth() - Method in exception org.influxdb.InfluxDBException.UnableToParseException
 

J

jitterDuration(int) - Method in class org.influxdb.BatchOptions
Jitters the batch flush interval by a random amount.

L

lineProtocol() - Method in class org.influxdb.dto.BatchPoints
calculate the lineprotocol for all Points.
lineProtocol() - Method in class org.influxdb.dto.Point
calculate the lineprotocol entry for a single Point.
lineProtocol(TimeUnit) - Method in class org.influxdb.dto.Point
Calculate the lineprotocol entry for a single point, using a specific TimeUnit for the timestamp.
LOG_LEVEL_PROPERTY - Static variable in interface org.influxdb.InfluxDB
The system property key to set the http logging level across the JVM.

M

Measurement - Annotation Type in org.influxdb.annotation
 
measurement(String) - Static method in class org.influxdb.dto.Point
Create a new Point Build build to create a new Point in a fluent manner.
mergeIn(BatchPoints) - Method in class org.influxdb.dto.BatchPoints
Merge two BatchPoints objects.

N

newQuery(String) - Static method in class org.influxdb.dto.BoundParameterQuery.QueryBuilder
 

O

org.influxdb - package org.influxdb
 
org.influxdb.annotation - package org.influxdb.annotation
 
org.influxdb.dto - package org.influxdb.dto
 
org.influxdb.impl - package org.influxdb.impl
 

P

parseLogLevel(String) - Static method in enum org.influxdb.InfluxDB.LogLevel
Parses the string argument as a LogLevel constant.
ping() - Method in class org.influxdb.impl.InfluxDBImpl
 
ping() - Method in interface org.influxdb.InfluxDB
Ping this influxDB.
point(Point) - Method in class org.influxdb.dto.BatchPoints.Builder
Add a Point to this set of points.
point(Point) - Method in class org.influxdb.dto.BatchPoints
Add a single Point to these batches.
Point - Class in org.influxdb.dto
Representation of a InfluxDB database Point.
Point.Builder - Class in org.influxdb.dto
Builder for a new Point.
points(Point...) - Method in class org.influxdb.dto.BatchPoints.Builder
Add a set of Points to this set of points.
Pong - Class in org.influxdb.dto
Representation of the response for a influxdb ping.
Pong() - Constructor for class org.influxdb.dto.Pong
 
precision(TimeUnit) - Method in class org.influxdb.dto.BatchPoints.Builder
Set the time precision to use for the whole batch.
Preconditions - Class in org.influxdb.impl
Functions for parameter validation.

Q

Query - Class in org.influxdb.dto
Represents a Query against Influxdb.
Query(String, String) - Constructor for class org.influxdb.dto.Query
 
Query(String, String, boolean) - Constructor for class org.influxdb.dto.Query
 
query(Query) - Method in class org.influxdb.impl.InfluxDBImpl
Execute a query against a database.
query(Query, Consumer<QueryResult>, Consumer<Throwable>) - Method in class org.influxdb.impl.InfluxDBImpl
Execute a query against a database.
query(Query, int, Consumer<QueryResult>) - Method in class org.influxdb.impl.InfluxDBImpl
Execute a streaming query against a database.
query(Query, TimeUnit) - Method in class org.influxdb.impl.InfluxDBImpl
Execute a query against a database.
query(Query) - Method in interface org.influxdb.InfluxDB
Execute a query against a database.
query(Query, Consumer<QueryResult>, Consumer<Throwable>) - Method in interface org.influxdb.InfluxDB
Execute a query against a database.
query(Query, int, Consumer<QueryResult>) - Method in interface org.influxdb.InfluxDB
Execute a streaming query against a database.
query(Query, TimeUnit) - Method in interface org.influxdb.InfluxDB
Execute a query against a database.
QueryBuilder() - Constructor for class org.influxdb.dto.BoundParameterQuery.QueryBuilder
 
QueryResult - Class in org.influxdb.dto
{Purpose of This Type}.
QueryResult() - Constructor for class org.influxdb.dto.QueryResult
 
QueryResult.Result - Class in org.influxdb.dto
 
QueryResult.Series - Class in org.influxdb.dto
 
queue - Variable in class org.influxdb.impl.BatchProcessor
 

R

requiresPost() - Method in class org.influxdb.dto.Query
 
Result() - Constructor for class org.influxdb.dto.QueryResult.Result
 
retentionPolicy(String) - Method in class org.influxdb.dto.BatchPoints.Builder
The retentionPolicy to use.
RetryBufferOverrunException(String) - Constructor for exception org.influxdb.InfluxDBException.RetryBufferOverrunException
 

S

Series() - Constructor for class org.influxdb.dto.QueryResult.Series
 
setColumns(List<String>) - Method in class org.influxdb.dto.QueryResult.Series
 
setConsistency(InfluxDB.ConsistencyLevel) - Method in class org.influxdb.impl.InfluxDBImpl
 
setConsistency(InfluxDB.ConsistencyLevel) - Method in interface org.influxdb.InfluxDB
Set the consistency level which is used for writing points.
setDatabase(String) - Method in class org.influxdb.impl.InfluxDBImpl
 
setDatabase(String) - Method in interface org.influxdb.InfluxDB
Set the database which is used for writing points.
setError(String) - Method in class org.influxdb.dto.QueryResult.Result
 
setError(String) - Method in class org.influxdb.dto.QueryResult
 
setLogLevel(InfluxDB.LogLevel) - Method in class org.influxdb.impl.InfluxDBImpl
 
setLogLevel(InfluxDB.LogLevel) - Method in interface org.influxdb.InfluxDB
Set the loglevel which is used for REST related actions.
setName(String) - Method in class org.influxdb.dto.QueryResult.Series
 
setResponseTime(long) - Method in class org.influxdb.dto.Pong
 
setResults(List<QueryResult.Result>) - Method in class org.influxdb.dto.QueryResult
 
setRetentionPolicy(String) - Method in class org.influxdb.impl.InfluxDBImpl
 
setRetentionPolicy(String) - Method in interface org.influxdb.InfluxDB
Set the retention policy which is used for writing points.
setSeries(List<QueryResult.Series>) - Method in class org.influxdb.dto.QueryResult.Result
 
setTags(Map<String, String>) - Method in class org.influxdb.dto.QueryResult.Series
 
setValues(List<List<Object>>) - Method in class org.influxdb.dto.QueryResult.Series
 
setVersion(String) - Method in class org.influxdb.dto.Pong
 

T

tag(String, String) - Method in class org.influxdb.dto.BatchPoints.Builder
Add a tag to this set of points.
tag(String, String) - Method in class org.influxdb.dto.Point.Builder
Add a tag to this point.
tag(Map<String, String>) - Method in class org.influxdb.dto.Point.Builder
Add a Map of tags to add to this point.
threadFactory(ThreadFactory) - Method in class org.influxdb.BatchOptions
 
threadFactory(ThreadFactory) - Method in class org.influxdb.impl.BatchProcessor.Builder
 
time(long, TimeUnit) - Method in class org.influxdb.dto.Point.Builder
Add a time to this point.
TIME_IN_SECOND_LENGTH - Static variable in enum org.influxdb.impl.TimeUtil
 
TimeUtil - Enum in org.influxdb.impl
Utils for time related methods.
toInfluxDBTimeFormat(long) - Static method in enum org.influxdb.impl.TimeUtil
convert a unix epoch time to timestamp used by influxdb.
toPOJO(QueryResult, Class<T>) - Method in class org.influxdb.impl.InfluxDBResultMapper
Process a QueryResult object returned by the InfluxDB client inspecting the internal data structure and creating the respective object instances based on the Class passed as parameter.
toPOJO(QueryResult, Class<T>, String) - Method in class org.influxdb.impl.InfluxDBResultMapper
Process a QueryResult object returned by the InfluxDB client inspecting the internal data structure and creating the respective object instances based on the Class passed as parameter.
toString() - Method in class org.influxdb.dto.BatchPoints
toString() - Method in class org.influxdb.dto.Point
toString() - Method in class org.influxdb.dto.Pong
toString() - Method in class org.influxdb.dto.QueryResult.Result
toString() - Method in class org.influxdb.dto.QueryResult.Series
toString() - Method in class org.influxdb.dto.QueryResult
toTimePrecision(TimeUnit) - Static method in enum org.influxdb.impl.TimeUtil
Convert from a TimeUnit to a influxDB timeunit String.

V

value() - Method in enum org.influxdb.InfluxDB.ConsistencyLevel
Get the String value of the ConsistencyLevel.
valueOf(String) - Static method in enum org.influxdb.impl.TimeUtil
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.influxdb.InfluxDB.ConsistencyLevel
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.influxdb.InfluxDB.LogLevel
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.influxdb.InfluxDBFactory
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.influxdb.impl.TimeUtil
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.influxdb.InfluxDB.ConsistencyLevel
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.influxdb.InfluxDB.LogLevel
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.influxdb.InfluxDBFactory
Returns an array containing the constants of this enum type, in the order they are declared.
version() - Method in class org.influxdb.impl.InfluxDBImpl
 
version() - Method in interface org.influxdb.InfluxDB
Return the version of the connected influxDB Server.

W

write(Point) - Method in class org.influxdb.impl.InfluxDBImpl
 
write(String) - Method in class org.influxdb.impl.InfluxDBImpl
 
write(List<String>) - Method in class org.influxdb.impl.InfluxDBImpl
 
write(String, String, Point) - Method in class org.influxdb.impl.InfluxDBImpl
 
write(int, Point) - Method in class org.influxdb.impl.InfluxDBImpl
Write a single Point to the database through UDP.
write(BatchPoints) - Method in class org.influxdb.impl.InfluxDBImpl
 
write(String, String, InfluxDB.ConsistencyLevel, TimeUnit, String) - Method in class org.influxdb.impl.InfluxDBImpl
 
write(String, String, InfluxDB.ConsistencyLevel, String) - Method in class org.influxdb.impl.InfluxDBImpl
 
write(String, String, InfluxDB.ConsistencyLevel, List<String>) - Method in class org.influxdb.impl.InfluxDBImpl
 
write(String, String, InfluxDB.ConsistencyLevel, TimeUnit, List<String>) - Method in class org.influxdb.impl.InfluxDBImpl
 
write(int, String) - Method in class org.influxdb.impl.InfluxDBImpl
Write a set of Points to the influxdb database with the string records through UDP.
write(int, List<String>) - Method in class org.influxdb.impl.InfluxDBImpl
Write a set of Points to the influxdb database with the list of string records through UDP.
write(Point) - Method in interface org.influxdb.InfluxDB
Write a single Point to the default database.
write(String) - Method in interface org.influxdb.InfluxDB
Write a set of Points to the default database with the string records.
write(List<String>) - Method in interface org.influxdb.InfluxDB
Write a set of Points to the default database with the list of string records.
write(String, String, Point) - Method in interface org.influxdb.InfluxDB
Write a single Point to the database.
write(int, Point) - Method in interface org.influxdb.InfluxDB
Write a single Point to the database through UDP.
write(BatchPoints) - Method in interface org.influxdb.InfluxDB
Write a set of Points to the influxdb database with the new (>= 0.9.0rc32) lineprotocol.
write(String, String, InfluxDB.ConsistencyLevel, String) - Method in interface org.influxdb.InfluxDB
Write a set of Points to the influxdb database with the string records.
write(String, String, InfluxDB.ConsistencyLevel, TimeUnit, String) - Method in interface org.influxdb.InfluxDB
Write a set of Points to the influxdb database with the string records.
write(String, String, InfluxDB.ConsistencyLevel, List<String>) - Method in interface org.influxdb.InfluxDB
Write a set of Points to the influxdb database with the list of string records.
write(String, String, InfluxDB.ConsistencyLevel, TimeUnit, List<String>) - Method in interface org.influxdb.InfluxDB
Write a set of Points to the influxdb database with the list of string records.
write(int, String) - Method in interface org.influxdb.InfluxDB
Write a set of Points to the influxdb database with the string records through UDP.
write(int, List<String>) - Method in interface org.influxdb.InfluxDB
Write a set of Points to the influxdb database with the list of string records through UDP.
A B C D E F G H I J L M N O P Q R S T V W 
Skip navigation links

Copyright © 2018. All rights reserved.