package stats
- Alphabetic
- By Inheritance
- stats
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- class HostMetricsExporter extends JsonExporter with HttpMuxHandler
-
class
JsonExporter extends Service[Request, Response]
A Finagle HTTP service that exports Metrics (available via MetricsView) in a JSON format.
A Finagle HTTP service that exports Metrics (available via MetricsView) in a JSON format.
This service respects metrics verbosity levels: it doesn't export "debug" (i.e., Verbosity.Debug) metrics unless they are whitelisted via the comma-separated
verbose. -
class
MetricsBucketedHistogram extends MetricsHistogram
A MetricsHistogram that is latched such that a snapshot of the values are taken every
latchPeriodand that value is returned for rest oflatchPeriod.A MetricsHistogram that is latched such that a snapshot of the values are taken every
latchPeriodand that value is returned for rest oflatchPeriod. This gives pull based collectors a simple way to get consistent results.This is safe to use from multiple threads.
- class MetricsExporter extends JsonExporter with HttpMuxHandler with MetricsRegistry
-
trait
MetricsHistogram extends AnyRef
A histogram that supports writing, querying, and resetting.
A histogram that supports writing, querying, and resetting.
This API is too powerful for normal usage, but is useful for implementors.
- class MetricsHostStatsReceiver extends HostStatsReceiver
-
class
MetricsStatsReceiver extends StatsReceiverWithCumulativeGauges with WithHistogramDetails
The standard implementation of StatsReceiver, optimized to be high precision and low overhead.
The standard implementation of StatsReceiver, optimized to be high precision and low overhead.
Note: Histogram is configured to store events in 60 second snapshots. It means that when you add a value, you need to wait at most 20 seconds before this value will be aggregated in the exported metrics.
-
trait
Snapshot extends AnyRef
A snapshot of the state of the underlying stat.
Value Members
- object ImmediateMetricsHistogram
- object JsonExporter
- object Metrics
- object MetricsStatsReceiver
- object Snapshot
- object debugLoggedStatNames extends GlobalFlag[Set[String]]
- object format extends GlobalFlag[String]
-
object
includeEmptyHistograms extends GlobalFlag[Boolean]
If a histogram has no data collected (its count is 0), it can be beneficial to not export all the histogram details as there will be no interesting data there.
If a histogram has no data collected (its count is 0), it can be beneficial to not export all the histogram details as there will be no interesting data there. When this flag is set to
false, only thecount=0is exported. Whentrue, all of the details will be exported. - object scopeSeparator extends GlobalFlag[String]
-
object
statsFilter extends GlobalFlag[String]
Blacklist of regex, comma-separated.
Blacklist of regex, comma-separated. Comma is a reserved character and cannot be used. Used with regexes from statsFilterFile.
See http://www.scala-lang.org/api/current/#scala.util.matching.Regex
-
object
statsFilterFile extends GlobalFlag[Set[File]]
Comma-separated blacklist of files.
Comma-separated blacklist of files. Each file may have multiple filters, separated by new lines. Used with regexes from statsFilter.
See http://www.scala-lang.org/api/current/#scala.util.matching.Regex
- object useCounterDeltas extends GlobalFlag[Boolean]