final case class MetricsConfig(reporters: Seq[MetricsReporterConfig] = Seq.empty, reportJvmMetrics: Boolean = false, reportExecutionContextMetrics: Boolean = false, histograms: Seq[HistogramDefinition] = Seq.empty, enabled: Boolean = true) extends Product with Serializable
Configuration of metrics gathering and reporting features
- reporters
Configures where gathered metrics are reported
- reportJvmMetrics
Whether to report JVM metrics
- reportExecutionContextMetrics
Whether to report metrics low level execution context related metrics. Be aware that turning this on can have a negative performance impact.
- histograms
Configures histogram definitions
- enabled
When false, metrics gathering is disabled entirely. Default = true.
- Alphabetic
- By Inheritance
- MetricsConfig
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new MetricsConfig(reporters: Seq[MetricsReporterConfig] = Seq.empty, reportJvmMetrics: Boolean = false, reportExecutionContextMetrics: Boolean = false, histograms: Seq[HistogramDefinition] = Seq.empty, enabled: Boolean = true)
- reporters
Configures where gathered metrics are reported
- reportJvmMetrics
Whether to report JVM metrics
- reportExecutionContextMetrics
Whether to report metrics low level execution context related metrics. Be aware that turning this on can have a negative performance impact.
- histograms
Configures histogram definitions
- enabled
When false, metrics gathering is disabled entirely. Default = true.
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- val enabled: Boolean
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val histograms: Seq[HistogramDefinition]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val reportExecutionContextMetrics: Boolean
- val reportJvmMetrics: Boolean
- val reporters: Seq[MetricsReporterConfig]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])