Table of Contents

Class MetricPoint

Namespace
DotCompute.Abstractions.Debugging
Assembly
DotCompute.Abstractions.dll

Represents a single metric data point.

public sealed class MetricPoint
Inheritance
MetricPoint
Inherited Members

Properties

Tags

Gets optional tags for categorization.

public Dictionary<string, string> Tags { get; init; }

Property Value

Dictionary<string, string>

Timestamp

Gets the timestamp when this metric was recorded.

public DateTime Timestamp { get; init; }

Property Value

DateTime

Value

Gets the metric value.

public double Value { get; init; }

Property Value

double