public interface InfluxDB
| Modifier and Type | Interface and Description |
|---|---|
static class |
InfluxDB.LogLevel
Controls the level of logging of the REST layer.
|
| Modifier and Type | Method and Description |
|---|---|
void |
alterDatabasePrivilege(String database,
String name,
boolean isAdmin,
String... permissions)
Alter the admin privilege of a given database user.
|
void |
authenticateDatabaseUser(String database,
String username,
String password)
Authenticate with the given credentials against the database.
|
void |
createClusterAdmin(String name,
String password)
Create a new cluster admin.
|
void |
createDatabase(DatabaseConfiguration config)
Create a new Database from a
DatabaseConfiguration. |
void |
createDatabase(String name)
Create a new Database.
|
void |
createDatabaseUser(String database,
String name,
String password,
String... permissions)
Create a new regular database user.
|
void |
createShard(Shard shard)
Deprecated.
this functionality is gone with 0.8.0, will be removed in the next version.
|
void |
createShardSpace(String database,
ShardSpace shardSpace)
Create a ShardSpace in a Database.
|
void |
deleteClusterAdmin(String name)
Delete a cluster admin.
|
void |
deleteContinuousQuery(String database,
int id)
Delete a continous query.
|
void |
deleteDatabase(String name)
Delete a database.
|
void |
deleteDatabaseUser(String database,
String name)
Delete a database user.
|
void |
deleteSeries(String database,
String serieName)
Delete a serie.
|
List<User> |
describeClusterAdmins()
Describe all cluster admins.
|
List<ContinuousQuery> |
describeContinuousQueries(String database)
Describe all contious queries in a database.
|
List<Database> |
describeDatabases()
Describe all available databases.
|
List<User> |
describeDatabaseUsers(String database)
Describe all database users allowed to acces the given database.
|
void |
dropShard(Shard shard)
Deprecated.
this functionality is gone with 0.8.0, will be removed in the next version.
|
void |
dropShardSpace(String database,
String name)
Drop a existing ShardSpace from a Database.
|
void |
forceRaftCompaction()
Force Database compaction.
|
Shards |
getShards()
Deprecated.
this functionality is gone with 0.8.0, will be removed in the next version.
|
List<ShardSpace> |
getShardSpaces()
Describe all existing shardspaces.
|
List<String> |
interfaces()
List all interfaces influxDB is listening.
|
List<Server> |
listServers()
List all servers which are member of the cluster.
|
Pong |
ping()
Ping this influxDB-
|
List<Serie> |
query(String database,
String query,
TimeUnit precision)
Execute a query agains a database.
|
void |
removeServers(int id)
Remove the given Server from the cluster.
|
InfluxDB |
setLogLevel(InfluxDB.LogLevel logLevel)
Set the loglevel which is used for REST related actions.
|
Boolean |
sync()
Sync the database to the filesystem.
|
void |
updateClusterAdmin(String name,
String password)
Update the password of the given admin.
|
void |
updateDatabaseUser(String database,
String name,
String password,
String... permissions)
Update the password and/or the permissions of a database user.
|
String |
version()
Return the version of the connected influxDB Server.
|
void |
write(String database,
TimeUnit precision,
Serie... series)
Write a Series to the given database.
|
void |
writeUdp(int port,
TimeUnit precision,
Serie... series)
Write a Series to the given database.
|
InfluxDB setLogLevel(InfluxDB.LogLevel logLevel)
logLevel - the loglevel to set.Pong ping()
String version()
void write(String database, TimeUnit precision, Serie... series)
database - the name of the database to write to.precision - the precision used for the values.series - a Array of Series to write.void writeUdp(int port,
TimeUnit precision,
Serie... series)
port - the port where to reach the influxdb udp service. The database is configured per
port in the influxdb configuration.precision - the precision used for the values.series - a Array of Series to write.List<Serie> query(String database, String query, TimeUnit precision)
database - the name of the database.query - the query to execute, for language specification please see http://influxdb.org/docs/query_languageprecision - the precision used for the values.void createDatabase(String name)
name - the name of the new database.void createDatabase(DatabaseConfiguration config)
DatabaseConfiguration. This is the way to create a db
with shards specified.config - the configuration for the database to create..void deleteDatabase(String name)
name - the name of the database to delete.List<Database> describeDatabases()
void createClusterAdmin(String name, String password)
name - the name of the new admin.password - the password for the new admin.void deleteClusterAdmin(String name)
name - the name of the admin to delete.List<User> describeClusterAdmins()
void updateClusterAdmin(String name, String password)
name - the name of the admin for which the password should be updated.password - the new password for the given admin.void createDatabaseUser(String database, String name, String password, String... permissions)
database - the name of the database where this user is allowed.name - the name of the new database user.password - the password for this user.permissions - a array of readFrom and writeTo permissions (in this order) and given in regex
form.void deleteDatabaseUser(String database, String name)
database - the name of the database the given user should be removed from.name - the name of the user to remove.List<User> describeDatabaseUsers(String database)
database - the name of the database for which all users should be described.void updateDatabaseUser(String database, String name, String password, String... permissions)
database - the name of the database where this user is allowed.name - the name of the existing database user.password - the password for this user.permissions - a array of readFrom and writeTo permissions (in this order) and given in regex
form.void alterDatabasePrivilege(String database, String name, boolean isAdmin, String... permissions)
database - the name of the database where this user is allowed.name - the name of the existing database user.isAdmin - if set to true this user is a database admin, otherwise it isnt.permissions - a array of readFrom and writeTo permissions (in this order) and given in regex
form.void authenticateDatabaseUser(String database, String username, String password)
database - the name of the database where this user is allowed.username - the name of the existing database user.password - the password for this user.List<ContinuousQuery> describeContinuousQueries(String database)
database - the name of the database for which all continous queries should be described.void deleteContinuousQuery(String database, int id)
database - the name of the database for which this query should be deleted.id - the id of the query.void deleteSeries(String database, String serieName)
database - the database in which the given serie should be deleted.serieName - the name of the serie.void forceRaftCompaction()
List<String> interfaces()
Boolean sync()
List<Server> listServers()
void removeServers(int id)
id - the id of the server to remove.@Deprecated void createShard(Shard shard)
shard - the new shard to create.@Deprecated Shards getShards()
@Deprecated void dropShard(Shard shard)
shard - the shard to delete.List<ShardSpace> getShardSpaces()
void dropShardSpace(String database, String name)
database - the name of the database.name - the name of the ShardSpace to delete.void createShardSpace(String database, ShardSpace shardSpace)
database - the name of the database.shardSpace - the shardSpace to create in this databaseCopyright © 2014. All Rights Reserved.