p

zio

metrics

package metrics

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

Type Members

  1. class Client extends AnyRef
  2. case class Counter(name: String, value: Double, sampleRate: Double, tags: Seq[Tag]) extends Metric with NumericMetric with SampledMetric with Product with Serializable
  3. case class Event(name: String, text: String, timestamp: Option[Long], hostname: Option[String], aggregationKey: Option[String], priority: Option[EventPriority], sourceTypeName: Option[String], alertType: Option[EventAlertType], tags: Seq[Tag]) extends Metric with Product with Serializable
  4. sealed trait EventAlertType extends AnyRef
  5. sealed trait EventPriority extends AnyRef
  6. case class Gauge(name: String, value: Double, tags: Seq[Tag]) extends Metric with NumericMetric with Product with Serializable
  7. case class Histogram(name: String, value: Double, sampleRate: Double, tags: Seq[Tag]) extends Metric with NumericMetric with SampledMetric with Product with Serializable
  8. case class Meter(name: String, value: Double, tags: Seq[Tag]) extends Metric with NumericMetric with Product with Serializable
  9. sealed trait Metric extends AnyRef
  10. trait NumericMetric extends AnyRef
  11. sealed trait SampledMetric extends AnyRef
  12. case class ServiceCheck(name: String, status: ServiceCheckStatus, timestamp: Option[Long], hostname: Option[String], message: Option[String], tags: Seq[Tag]) extends Metric with Product with Serializable
  13. sealed trait ServiceCheckStatus extends AnyRef
  14. case class Set(name: String, value: String, tags: Seq[Tag]) extends Metric with StringMetric with Product with Serializable
  15. sealed trait StringMetric extends AnyRef
  16. case class Tag(key: String, value: String) extends Product with Serializable
  17. case class Timer(name: String, value: Double, sampleRate: Double, tags: Seq[Tag]) extends Metric with NumericMetric with SampledMetric with Product with Serializable

Value Members

  1. def some[A](a: A): Option[A]
  2. object Client
  3. object EventAlertError extends EventAlertType with Product with Serializable
  4. object EventAlertInfo extends EventAlertType with Product with Serializable
  5. object EventAlertSuccess extends EventAlertType with Product with Serializable
  6. object EventAlertWarning extends EventAlertType with Product with Serializable
  7. object EventPriorityLow extends EventPriority with Product with Serializable
  8. object EventPriorityNormal extends EventPriority with Product with Serializable
  9. object ServiceCheckCritical extends ServiceCheckStatus with Product with Serializable
  10. object ServiceCheckOk extends ServiceCheckStatus with Product with Serializable
  11. object ServiceCheckUnknown extends ServiceCheckStatus with Product with Serializable
  12. object ServiceCheckWarning extends ServiceCheckStatus with Product with Serializable
  13. object UDPClient
  14. object encoders

Inherited from AnyRef

Inherited from Any

Ungrouped