Click or drag to resize
Grid Solutions Framework

TimeSeriesValuesdatapoints Field

Gets or sets a Grafana time-series value data.

Namespace: GrafanaAdapters.Model.Common
Assembly: GrafanaAdapters (in GrafanaAdapters.dll) Version: 2.4.182-beta
Syntax
public double[][] datapoints
View Source

Field Value

Double
Remarks

To ensure data will work with Grafana data source, all values should precede single time value. Time is always the last value in the array. Time value should be in Unix epoch milliseconds.

JSON example:

C#
"datapoints":[
      [622,1450754160000],
      [365,1450754220000]
]

See Also