Packages

o

com.influxdb.client.scala

InfluxDBClientScalaFactory

object InfluxDBClientScalaFactory

The Factory that creates an instance of a Flux client.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. InfluxDBClientScalaFactory
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def create(options: InfluxDBClientOptions): InfluxDBClientScala

    Create an instance of the InfluxDB 2.x reactive client.

    Create an instance of the InfluxDB 2.x reactive client.

    options

    the connection configuration

    returns

    client

    Annotations
    @Nonnull()
  2. def create(url: String, token: Array[Char], org: String, bucket: String): InfluxDBClientScala

    Create an instance of the InfluxDB 2.x reactive client.

    Create an instance of the InfluxDB 2.x reactive client.

    The url could be a connection string with various configurations. For more info see: InfluxDBClientOptions.Builder#connectionString(connectionString:java.lang.String).

    url

    the url the url to connect to InfluxDB (required). Example: http://localhost:8086?readTimeout=5000

    token

    the token to use for the authorization

    org

    the name of an organization

    bucket

    the name of a bucket

    returns

    client

    Annotations
    @Nonnull()
    See also

    InfluxDBClientOptions.Builder

  3. def create(url: String, token: Array[Char], org: String): InfluxDBClientScala

    Create an instance of the InfluxDB 2.x reactive client.

    Create an instance of the InfluxDB 2.x reactive client.

    The url could be a connection string with various configurations. For more info see: InfluxDBClientOptions.Builder#connectionString(connectionString:java.lang.String).

    url

    the url the url to connect to InfluxDB (required). Example: http://localhost:8086?readTimeout=5000

    token

    the token to use for the authorization

    org

    the name of an organization

    returns

    client

    Annotations
    @Nonnull()
    See also

    InfluxDBClientOptions.Builder

  4. def create(url: String, token: Array[Char]): InfluxDBClientScala

    Create an instance of the InfluxDB 2.x reactive client.

    Create an instance of the InfluxDB 2.x reactive client.

    The url could be a connection string with various configurations. For more info see: InfluxDBClientOptions.Builder#connectionString(connectionString:java.lang.String).

    url

    the url the url to connect to InfluxDB (required). Example: http://localhost:8086?readTimeout=5000

    token

    the token to use for the authorization

    returns

    client

    Annotations
    @Nonnull()
    See also

    InfluxDBClientOptions.Builder

  5. def create(url: String, username: String, password: Array[Char]): InfluxDBClientScala

    Create an instance of the InfluxDB 2.x reactive client.

    Create an instance of the InfluxDB 2.x reactive client.

    The username/password auth is based on HTTP "Basic" authentication. The authorization expires when the time-to-live (TTL) (default 60 minutes) is reached and client produces com.influxdb.exceptions.UnauthorizedException.

    The url could be a connection string with various configurations. For more info see: InfluxDBClientOptions.Builder#connectionString(connectionString:java.lang.String).

    url

    the url the url to connect to InfluxDB (required). Example: http://localhost:8086?readTimeout=5000

    username

    the username to use in the basic auth

    password

    the password to use in the basic auth

    returns

    client

    Annotations
    @Nonnull()
    See also

    InfluxDBClientOptions.Builder

  6. def create(connectionString: String): InfluxDBClientScala

    Create an instance of the InfluxDB 2.x client.

    Create an instance of the InfluxDB 2.x client.

    The url could be a connection string with various configurations. For more info see: InfluxDBClientOptions.Builder#connectionString(connectionString:java.lang.String).

    connectionString

    connection string with various configurations.

    returns

    client

    Annotations
    @Nonnull()
  7. def create(): InfluxDBClientScala

    Create an instance of the InfluxDB 2.x client that is configured via influx2.properties.

    Create an instance of the InfluxDB 2.x client that is configured via influx2.properties. The influx2.properties has to be located on classpath.

    returns

    client

    Annotations
    @Nonnull()