Packages

class GraphiteStore extends Store[Repr]

A value store that uses Graphite

Linear Supertypes
Store[Repr], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GraphiteStore
  2. Store
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new GraphiteStore(host: String, port: Int, webHost: String, checkInterval: Duration, group: Option[String] = None, sloGroup: Option[String] = None, serverTimeZone: ZoneId = ZoneId.systemDefault(), requestTimeout: FiniteDuration = CDuration.create(60, SECONDS), maxConnections: Int = 128)(implicit ec: ExecutionContext)

    host

    The host of the writing endpoint

    port

    The port of the writing endpoint

    webHost

    The URL of the Web host for reading

    checkInterval

    Check interval in Duration

    group

    The group name of Graphite metrics

    sloGroup

    The group name of Graphite metrics where SLO will be stored

    serverTimeZone

    The timezone of the server

    requestTimeout

    Request timeout

    maxConnections

    Max connections of the Http client

    ec

    The execution context

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[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def fetch[T](id: String, context: Context)(implicit codec: Codec[T, Repr]): Future[Option[T]]
    Definition Classes
    GraphiteStoreStore
  9. def fetchHistory[T](id: String, from: Instant, until: Instant)(implicit codec: Codec[T, Repr]): Future[Seq[(Long, T)]]
    Definition Classes
    GraphiteStoreStore
  10. def fetchSloHistory(id: String, from: Instant, until: Instant)(implicit codec: Codec[Slo, Repr]): Future[Seq[(Long, Slo)]]
    Definition Classes
    GraphiteStoreStore
  11. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  18. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  19. def toString(): String
    Definition Classes
    AnyRef → Any
  20. def upload[T](id: String, context: Context, v: T)(implicit codec: Codec[T, Repr]): Future[Unit]
    Definition Classes
    GraphiteStoreStore
  21. def uploadSlo(id: String, context: Context, slo: Slo)(implicit codec: Codec[Slo, Repr]): Future[Unit]
    Definition Classes
    GraphiteStoreStore
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Store[Repr]

Inherited from AnyRef

Inherited from Any

Ungrouped