Class Profile
Profile.
public sealed class Profile
- Inheritance
-
Profile
- Inherited Members
Properties
EndTime
Profiling end timestamp in microseconds.
[JsonPropertyName("endTime")]
public double EndTime { get; set; }
Property Value
Nodes
The list of profile nodes. First item is the root node.
[JsonPropertyName("nodes")]
public ProfileNode[] Nodes { get; set; }
Property Value
Samples
Ids of samples top nodes.
[JsonPropertyName("samples")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long[]? Samples { get; set; }
Property Value
- long[]
StartTime
Profiling start timestamp in microseconds.
[JsonPropertyName("startTime")]
public double StartTime { get; set; }
Property Value
TimeDeltas
Time intervals between adjacent samples in microseconds. The first delta is relative to the profile startTime.
[JsonPropertyName("timeDeltas")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long[]? TimeDeltas { get; set; }
Property Value
- long[]