MetricKey

zio.metrics.MetricKey
See theMetricKey companion class
object MetricKey

Attributes

Companion
class
Graph
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
MetricKey.type

Members list

Type members

Inherited types

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror

The name of the type

The name of the type

Attributes

Inherited from:
Mirror

Value members

Concrete methods

def counter(name: String): Counter

Creates a metric key for a counter, with the specified name.

Creates a metric key for a counter, with the specified name.

Attributes

def counter(name: String, description0: String): Counter

Creates a metric key for a counter, with the specified name and description.

Creates a metric key for a counter, with the specified name and description.

Attributes

def frequency(name: String): Frequency

Creates a metric key for a categorical frequency table, with the specified name.

Creates a metric key for a categorical frequency table, with the specified name.

Attributes

def frequency(name: String, description0: String): Frequency

Creates a metric key for a categorical frequency table, with the specified name and description.

Creates a metric key for a categorical frequency table, with the specified name and description.

Attributes

def gauge(name: String): Gauge

Creates a metric key for a gauge, with the specified name.

Creates a metric key for a gauge, with the specified name.

Attributes

def gauge(name: String, description0: String): Gauge

Creates a metric key for a gauge, with the specified name and description.

Creates a metric key for a gauge, with the specified name and description.

Attributes

def histogram(name: String, boundaries: Boundaries): Histogram

Creates a metric key for a histogram, with the specified name.

Creates a metric key for a histogram, with the specified name.

Attributes

def histogram(name: String, description0: String, boundaries: Boundaries): Histogram

Creates a metric key for a histogram, with the specified name and description.

Creates a metric key for a histogram, with the specified name and description.

Attributes

def summary(name: String, maxAge: Duration, maxSize: Int, error: Double, quantiles: Chunk[Double]): Summary

Creates a metric key for a summary, with the specified name.

Creates a metric key for a summary, with the specified name.

Attributes

def summary(name: String, description0: String, maxAge: Duration, maxSize: Int, error: Double, quantiles: Chunk[Double]): Summary

Creates a metric key for a summary, with the specified name and description.

Creates a metric key for a summary, with the specified name and description.

Attributes