Class TimelineSample (2.26.1)

public abstract class TimelineSample

A specific timeline sample. This instruments work progress at a given point in time, providing information about work units active/pending/completed as well as cumulative slot-milliseconds.

Inheritance

java.lang.Object > TimelineSample

Constructors

TimelineSample()

public TimelineSample()

Methods

getActiveUnits()

public abstract Long getActiveUnits()

Returns the total number of work units currently being processed.

Returns
TypeDescription
Long

getCompletedUnits()

public abstract Long getCompletedUnits()

Returns the total number of work units completed by this query.

Returns
TypeDescription
Long

getElapsedMs()

public abstract Long getElapsedMs()

Returns the sample time as milliseconds elapsed since the start of query execution.

Returns
TypeDescription
Long

getPendingUnits()

public abstract Long getPendingUnits()

Returns the number of work units remaining for the currently active stages.

Returns
TypeDescription
Long

getSlotMillis()

public abstract Long getSlotMillis()

Returns the cumulative slot-milliseconds consumed by the query.

Returns
TypeDescription
Long

toBuilder()

public abstract TimelineSample.Builder toBuilder()

return a builder for the TimelineSample object.

Returns
TypeDescription
TimelineSample.Builder