final case class GCLoggingConfig(enabled: Boolean = false, debugLevel: Boolean = false, filter: String = "", details: Boolean = true) extends Product with Serializable
Configure GC logging
- enabled
If set to true, the JVM GC logging will be enabled
- debugLevel
If true, the logging will happen on debug level, else info
- filter
An optional filter string to filter for particular GC events
- details
If set to true (default), the memory details will be included
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- GCLoggingConfig
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new GCLoggingConfig(enabled: Boolean = false, debugLevel: Boolean = false, filter: String = "", details: Boolean = true)
- enabled
If set to true, the JVM GC logging will be enabled
- debugLevel
If true, the logging will happen on debug level, else info
- filter
An optional filter string to filter for particular GC events
- details
If set to true (default), the memory details will be included
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() @IntrinsicCandidate()
- val debugLevel: Boolean
- val details: Boolean
- val enabled: Boolean
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val filter: String
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- 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() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- 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])