Class ThreadInfo
- Namespace
- Steeltoe.Management.Endpoint.Actuators.ThreadDump
- Assembly
- Steeltoe.Management.Endpoint.dll
public sealed class ThreadInfo
- Inheritance
-
ThreadInfo
- Inherited Members
Properties
BlockedCount
[JsonPropertyName("blockedCount")]
public long? BlockedCount { get; set; }
Property Value
- long?
BlockedTime
[JsonPropertyName("blockedTime")]
public long? BlockedTime { get; set; }
Property Value
- long?
IsInNative
[JsonPropertyName("inNative")]
public bool IsInNative { get; set; }
Property Value
IsSuspended
[JsonPropertyName("suspended")]
public bool? IsSuspended { get; set; }
Property Value
- bool?
LockInfo
[JsonPropertyName("lockInfo")]
public object? LockInfo { get; set; }
Property Value
LockName
[JsonPropertyName("lockName")]
public string? LockName { get; set; }
Property Value
LockOwnerId
[JsonPropertyName("lockOwnerId")]
public long? LockOwnerId { get; set; }
Property Value
- long?
LockOwnerName
[JsonPropertyName("lockOwnerName")]
public string? LockOwnerName { get; set; }
Property Value
LockedMonitors
[JsonPropertyName("lockedMonitors")]
public IList<object>? LockedMonitors { get; }
Property Value
LockedSynchronizers
[JsonPropertyName("lockedSynchronizers")]
public IList<object>? LockedSynchronizers { get; }
Property Value
StackTrace
[JsonPropertyName("stackTrace")]
public IList<StackTraceElement> StackTrace { get; }
Property Value
ThreadId
[JsonPropertyName("threadId")]
public long ThreadId { get; set; }
Property Value
ThreadName
[JsonPropertyName("threadName")]
public string? ThreadName { get; set; }
Property Value
ThreadState
[JsonPropertyName("threadState")]
[JsonConverter(typeof(SnakeCaseAllCapsEnumMemberJsonConverter))]
public State ThreadState { get; set; }
Property Value
WaitedCount
[JsonPropertyName("waitedCount")]
public long? WaitedCount { get; set; }
Property Value
- long?
WaitedTime
[JsonPropertyName("waitedTime")]
public long? WaitedTime { get; set; }
Property Value
- long?
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.