Code

store: Fully annotate (for JSON) the time-series type.
authorSebastian Harl <sh@tokkee.org>
Fri, 19 Sep 2014 05:12:37 +0000 (22:12 -0700)
committerSebastian Harl <sh@tokkee.org>
Fri, 19 Sep 2014 05:12:37 +0000 (22:12 -0700)
sysdb/store.go

index 4e78d44f6633737cc9f9d1d422169f895493e1ea..4a71428386aaea69bee4d7a7c834a2ca5484ea86 100644 (file)
@@ -245,9 +245,9 @@ type DataPoint struct {
 
 // A Timeseries describes a sequence of data-points.
 type Timeseries struct {
-       Start Time `json:"start"`
-       End   Time `json:"end"`
-       Data  map[string][]DataPoint
+       Start Time                   `json:"start"`
+       End   Time                   `json:"end"`
+       Data  map[string][]DataPoint `json:"data"`
 }
 
 // vim: set tw=78 sw=4 sw=4 noexpandtab :