Packages

o

io.waylay.influxdb.query

InfluxQueryBuilder

object InfluxQueryBuilder extends SharedProtocol

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

Type Members

  1. case class Exact(instant: Instant) extends IInstant with Product with Serializable
  2. sealed trait IInstant extends AnyRef
  3. case class Interval(start: Option[IInstant], end: Option[IInstant]) extends Product with Serializable
  4. sealed trait Order extends AnyRef
  5. case class RelativeTo(to: IInstant = Now, timeToGoBack: Duration) extends IInstant with Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  6. def deleteSeries(tagSelector: (String, String), from: Option[Instant], until: Option[Instant]): String
  7. def deleteSeriesPredicate(tagSelector: (String, String)): String
  8. def dropSeries(tagSelector: (String, String)): String
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def escapeValue(string: String): String

    Strings are text values.

    Strings are text values. All string values must be surrounded in double-quotes ". If the string contains a double-quote, it must be escaped with a backslash, e.g. \".

    string

    the string to escape

    returns

    the escape string

    Definition Classes
    SharedProtocol
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  13. def grouped(func: IFunction, tagSelector: (String, String), measurement: String, grouping: Duration, interval: Interval = Interval.beginningOfTimeUntilNow, filter: Option[IFilter] = None, limit: Option[Long] = None): String
  14. def groupedMultiple(funcs: Seq[IFunction], tagSelector: (String, String), measurement: String, grouping: Duration, interval: Interval = Interval.beginningOfTimeUntilNow, filter: Option[IFilter] = None, limit: Option[Long] = None): String

    Variation of grouped that can take multiple IFunctions

  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. def metricNames(database: String, tagSelector: (String, String)): String
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  21. def simple(fields: Seq[String], tagSelector: (String, String), measurement: String, interval: Interval = Interval.beginningOfTimeUntilNow, order: Order = Order.defaultOrder, limit: Option[Long] = None): String
  22. def simpleMultipleMeasurements(fields: Seq[String], tagSelector: (String, String), measurements: Seq[String], interval: Interval = Interval.beginningOfTimeUntilNow, order: Order = Order.defaultOrder, limit: Option[Long] = None): String
  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. object Interval extends Serializable

    If start and end times aren’t set they will default to beginning of time until now, respectively.

  29. object Now extends IInstant
  30. object Order

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from SharedProtocol

Inherited from AnyRef

Inherited from Any

Ungrouped