Struct PrometheusTimeSeriesValue
Models a prometheus time series value.
Namespace: Neon.Kube
Assembly: Neon.Kube.dll
Syntax
[JsonConverter(typeof(PrometheusTimeSeriesValueConverter))]
public struct PrometheusTimeSeriesValue
Constructors
PrometheusTimeSeriesValue(int, string)
Constructor.
Declaration
public PrometheusTimeSeriesValue(int time, string value)
Parameters
| Type | Name | Description |
|---|---|---|
| int | time | |
| string | value |
Properties
Time
The Time.
Declaration
public int Time { readonly get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Value
The value.
Declaration
public string Value { readonly get; set; }
Property Value
| Type | Description |
|---|---|
| string |