Table of Contents

Class ThroughputMetrics

Namespace
DotCompute.Runtime.Services.Performance.Metrics
Assembly
DotCompute.Runtime.dll

Throughput performance metrics. Measures data processing rates and operational throughput.

public class ThroughputMetrics
Inheritance
ThroughputMetrics
Inherited Members

Properties

BytesPerSecond

Gets bytes processed per second. Data throughput rate.

public double BytesPerSecond { get; init; }

Property Value

double

OperationsPerSecond

Gets operations per second. Rate of operation completion.

public double OperationsPerSecond { get; init; }

Property Value

double

PeakThroughput

Gets the peak throughput. Maximum observed throughput rate.

public double PeakThroughput { get; init; }

Property Value

double

ThroughputByOperation

Gets throughput by operation type. Breakdown of throughput rates by operation category.

public Dictionary<string, double> ThroughputByOperation { get; init; }

Property Value

Dictionary<string, double>