Class PrometheusMatrixValue
Models a Prometheus matrix value.
Namespace: Neon.Kube
Assembly: Neon.Kube.dll
Syntax
public class PrometheusMatrixValue
Constructors
PrometheusMatrixValue()
Constructor.
Declaration
public PrometheusMatrixValue()
Properties
Metric
The metric metadata.
Declaration
[JsonProperty(PropertyName = "metric", Required = Required.Default, DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate)]
public Dictionary<string, string> Metric { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, string> |
Values
The values.
Declaration
[JsonProperty(PropertyName = "values", Required = Required.Default, DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate)]
public List<PrometheusTimeSeriesValue> Values { get; set; }
Property Value
Type | Description |
---|---|
List<PrometheusTimeSeriesValue> |