Interface IMetricSampleCollection

Represents a collection of metric samples.

Namespace: PushTechnology.ClientInterface.Client.Features.Metrics
Assembly: Diffusion.Client.dll
Syntax
public interface IMetricSampleCollection
Remarks

Since 6.10.

Properties

Name

The name of the metric sample collection.

Declaration
string Name { get; }
Property Value
Type Description
System.String

The name of the metric sample collection.

Samples

The list of metric samples in the collection.

Declaration
List<IMetricSample> Samples { get; }
Property Value
Type Description
List<IMetricSample>

The list of metric samples.

Type

The type of the metric samples in the collection.

Declaration
MetricType Type { get; }
Property Value
Type Description
MetricType

The MetricType for the samples in the collection.

Unit

The unit of measurement for the metric samples in the collection.

Declaration
string Unit { get; }
Property Value
Type Description
System.String

The unit of measurement for the metric samples.

Back to top