Uses of Class
org.apache.flink.runtime.messages.ThreadInfoSample
-
Packages that use ThreadInfoSample Package Description org.apache.flink.runtime.messages This package contains the messages that are sent between Flink's distributed components to coordinate the distributed operations.org.apache.flink.runtime.util org.apache.flink.runtime.webmonitor.threadinfo -
-
Uses of ThreadInfoSample in org.apache.flink.runtime.messages
Methods in org.apache.flink.runtime.messages that return types with arguments of type ThreadInfoSample Modifier and Type Method Description static Optional<ThreadInfoSample>
ThreadInfoSample. from(ThreadInfo threadInfo)
Constructs aThreadInfoSample
fromThreadInfo
.static Map<Long,ThreadInfoSample>
ThreadInfoSample. from(Collection<ThreadInfo> threadInfos)
Constructs a collection ofThreadInfoSample
s from a collection ofThreadInfo
samples.Map<ExecutionAttemptID,Collection<ThreadInfoSample>>
TaskThreadInfoResponse. getSamples()
Returns a collection of ThreadInfoSample.Constructor parameters in org.apache.flink.runtime.messages with type arguments of type ThreadInfoSample Constructor Description TaskThreadInfoResponse(Map<ExecutionAttemptID,Collection<ThreadInfoSample>> samples)
Creates a response to the request to collect thread details samples. -
Uses of ThreadInfoSample in org.apache.flink.runtime.util
Methods in org.apache.flink.runtime.util that return types with arguments of type ThreadInfoSample Modifier and Type Method Description static Optional<ThreadInfoSample>
JvmUtils. createThreadInfoSample(long threadId, int maxStackTraceDepth)
Creates aThreadInfoSample
for a specific thread.static Map<Long,ThreadInfoSample>
JvmUtils. createThreadInfoSample(Collection<Long> threadIds, int maxStackTraceDepth)
Creates aThreadInfoSample
for a specific thread. -
Uses of ThreadInfoSample in org.apache.flink.runtime.webmonitor.threadinfo
Methods in org.apache.flink.runtime.webmonitor.threadinfo that return types with arguments of type ThreadInfoSample Modifier and Type Method Description Map<ExecutionAttemptID,Collection<ThreadInfoSample>>
VertexThreadInfoStats. getSamplesBySubtask()
Returns the a map of thread info samples by subtask (execution ID).Constructor parameters in org.apache.flink.runtime.webmonitor.threadinfo with type arguments of type ThreadInfoSample Constructor Description VertexThreadInfoStats(int requestId, long startTime, long endTime, Map<ExecutionAttemptID,Collection<ThreadInfoSample>> samplesBySubtask)
Creates a thread details sample.
-