Object

com.twitter.jvm

NilJvm

Related Doc: package jvm

Permalink

object NilJvm extends Jvm

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NilJvm
  2. Jvm
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait Opts extends AnyRef

    Permalink
    Definition Classes
    Jvm

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. val applicationTime: Long

    Permalink

    Gets the applicationTime (total time running application code since the process started) in nanoseconds or 0, if the metric is unavailable.

    Gets the applicationTime (total time running application code since the process started) in nanoseconds or 0, if the metric is unavailable.

    Definition Classes
    NilJvmJvm
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. val edenPool: Pool

    Permalink
    Definition Classes
    NilJvmJvm
  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. def executor: ScheduledExecutorService

    Permalink
    Definition Classes
    Jvm
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. def forceGc(): Unit

    Permalink
    Definition Classes
    NilJvmJvm
  13. def foreachGc(f: (Gc) ⇒ Unit): Unit

    Permalink

    Invoke f for every Gc event in the system.

    Invoke f for every Gc event in the system. This samples snap in order to synthesize a unique stream of Gc events. It's important that f is not constructed so that it's likely to, by itself, trigger another Gc event, causing an infinite loop. The same is true of the internal datastructures used by foreachGc, but they are svelte.

    Definition Classes
    Jvm
  14. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  16. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  17. def mainClassName: String

    Permalink

    Get the main class name for the currently running application.

    Get the main class name for the currently running application. Note that this works only by heuristic, and may not be accurate.

    TODO: take into account the standard callstack around scala invocations better.

    Definition Classes
    Jvm
  18. val metaspaceUsage: Option[MetaspaceUsage]

    Permalink

    Gets the current usage of the metaspace, if available.

    Gets the current usage of the metaspace, if available.

    Definition Classes
    NilJvmJvm
  19. def monitorGcs(bufferFor: Duration): (Time) ⇒ Seq[Gc]

    Permalink

    Monitors Gcs using foreachGc, and returns a function to query its timeline (up to buffer in the past).

    Monitors Gcs using foreachGc, and returns a function to query its timeline (up to buffer in the past). Querying is cheap, linear to the number of Gcs that happened since the queried time. The result is returned in reverse chronological order.

    Definition Classes
    Jvm
  20. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  21. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. val opts: Opts

    Permalink

    Current VM-specific options.

    Current VM-specific options.

    Definition Classes
    NilJvmJvm
  24. val safepoint: Safepoint

    Permalink

    Gets the time spent at safepoints (totalTimeMillis), the time getting to safepoints (syncTimeMillis), and safepoints reached (count).

    Gets the time spent at safepoints (totalTimeMillis), the time getting to safepoints (syncTimeMillis), and safepoints reached (count).

    Definition Classes
    NilJvmJvm
  25. val snap: Snapshot

    Permalink

    Snapshot of JVM state.

    Snapshot of JVM state.

    Definition Classes
    NilJvmJvm
  26. val snapCounters: Map[String, String]

    Permalink

    Get a snapshot of all performance counters.

    Get a snapshot of all performance counters.

    Definition Classes
    NilJvmJvm
  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  28. val tenuringThreshold: Long

    Permalink

    Gets the current tenuringThreshold (times an object must survive GC in order to be promoted) or 0, if the metric is unavailable.

    Gets the current tenuringThreshold (times an object must survive GC in order to be promoted) or 0, if the metric is unavailable.

    Definition Classes
    NilJvmJvm
  29. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  30. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Jvm

Inherited from AnyRef

Inherited from Any

Ungrouped