Class CloudWatchMetrics
The EmbeddedCloudWatchMetrics class holds the collection of metrics belonging to a specific metrics namespace.
Inheritance
System.Object
CloudWatchMetrics
Namespace: LambdaSharp.Logging.Metrics.Models
Assembly: LambdaSharp.Logging.dll
Syntax
public class CloudWatchMetrics
Properties
Dimensions
The dimensions by which the metrics are partitioned.
Declaration
public List<List<string>> Dimensions { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.Collections.Generic.List<System.String>> |
Metrics
The collection of captured metrics and their units.
Declaration
public List<CloudWatchMetricValue> Metrics { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<CloudWatchMetricValue> |
Namespace
The namespace underwhich the metrics are aggregated.
Declaration
public string Namespace { get; set; }
Property Value
Type | Description |
---|---|
System.String |