Class PrometheusVectorValue
Models a Prometheus vector value.
Namespace: Neon.Kube
Assembly: Neon.Kube.dll
Syntax
public class PrometheusVectorValue
Constructors
PrometheusVectorValue()
Constructor.
Declaration
public PrometheusVectorValue()
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> |
Value
The values.
Declaration
[JsonProperty(PropertyName = "value", Required = Required.Default, DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate)]
public PrometheusTimeSeriesValue Value { get; set; }
Property Value
Type | Description |
---|---|
PrometheusTimeSeriesValue |