Class StepMetrics
- Namespace
- Cress.Studio.Services
- Assembly
- Cress.Execution.dll
public record StepMetrics : IEquatable<StepMetrics>
- Inheritance
-
StepMetrics
- Implements
-
- Inherited Members
-
Constructors
StepMetrics(string, int, string, int, int, int, TimeSpan, TimeSpan, TimeSpan, TimeSpan)
public StepMetrics(string FlowId, int StepIndex, string StepName, int Runs, int Passed, int Failed, TimeSpan AvgDuration, TimeSpan P50, TimeSpan P95, TimeSpan P99)
Parameters
FlowId string
StepIndex int
StepName string
Runs int
Passed int
Failed int
AvgDuration TimeSpan
P50 TimeSpan
P95 TimeSpan
P99 TimeSpan
Properties
AvgDuration
public TimeSpan AvgDuration { get; init; }
Property Value
- TimeSpan
Failed
public int Failed { get; init; }
Property Value
- int
FlowId
public string FlowId { get; init; }
Property Value
- string
P50
public TimeSpan P50 { get; init; }
Property Value
- TimeSpan
P95
public TimeSpan P95 { get; init; }
Property Value
- TimeSpan
P99
public TimeSpan P99 { get; init; }
Property Value
- TimeSpan
Passed
public int Passed { get; init; }
Property Value
- int
Runs
public int Runs { get; init; }
Property Value
- int
StepIndex
public int StepIndex { get; init; }
Property Value
- int
StepName
public string StepName { get; init; }
Property Value
- string