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. trait Encoder extends AnyRef
  4. 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
  5. sealed trait EventAlertType extends AnyRef
  6. sealed trait EventPriority extends AnyRef
  7. case class Gauge(name: String, value: Double, tags: Seq[Tag]) extends Metric with NumericMetric with Product with Serializable
  8. case class Histogram(name: String, value: Double, sampleRate: Double, tags: Seq[Tag]) extends Metric with NumericMetric with SampledMetric with Product with Serializable
  9. case class Meter(name: String, value: Double, tags: Seq[Tag]) extends Metric with NumericMetric with Product with Serializable
  10. sealed trait Metric extends AnyRef
  11. trait NumericMetric extends AnyRef
  12. sealed trait SampledMetric extends AnyRef
  13. 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
  14. sealed trait ServiceCheckStatus extends AnyRef
  15. case class Set(name: String, value: String, tags: Seq[Tag]) extends Metric with StringMetric with Product with Serializable
  16. sealed trait StringMetric extends AnyRef
  17. case class Tag(key: String, value: String) extends Product with Serializable
  18. 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 Encoder
  4. object EventAlertError extends EventAlertType with Product with Serializable
  5. object EventAlertInfo extends EventAlertType with Product with Serializable
  6. object EventAlertSuccess extends EventAlertType with Product with Serializable
  7. object EventAlertWarning extends EventAlertType with Product with Serializable
  8. object EventPriorityLow extends EventPriority with Product with Serializable
  9. object EventPriorityNormal extends EventPriority with Product with Serializable
  10. object ServiceCheckCritical extends ServiceCheckStatus with Product with Serializable
  11. object ServiceCheckOk extends ServiceCheckStatus with Product with Serializable
  12. object ServiceCheckUnknown extends ServiceCheckStatus with Product with Serializable
  13. object ServiceCheckWarning extends ServiceCheckStatus with Product with Serializable
  14. object UDPClient

Inherited from AnyRef

Inherited from Any

Ungrouped