Interface IMetricsResult

The result of a fetch metrics operation, initiated by a IMetricsRequest.

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

Since 6.10.

Properties

ServerNames

A list of server names for which the result has metrics.

Declaration
HashSet<string> ServerNames { get; }
Property Value
Type Description
HashSet<System.String>

A hash set of server names.

Remarks

The names may be used with GetMetrics(String).

Methods

GetMetrics(String)

The metrics for a server.

Declaration
List<IMetricSampleCollection> GetMetrics(string serverName)
Parameters
Type Name Description
System.String serverName

The name of the server.

Returns
Type Description
List<IMetricSampleCollection>

The metrics for the server.

Back to top