From 4bf7e33c79dbd320fbd5925fb21176516badbbe0 Mon Sep 17 00:00:00 2001 From: Gyu-Ho Lee Date: Mon, 9 Jan 2017 15:04:44 -0800 Subject: [PATCH] control: change column name --- control/timeseries.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/control/timeseries.go b/control/timeseries.go index d7d28d16..57066ff4 100644 --- a/control/timeseries.go +++ b/control/timeseries.go @@ -110,7 +110,7 @@ func (sp *secondPoints) getTimeSeries() TimeSeries { func (ts TimeSeries) String() string { buf := new(bytes.Buffer) wr := csv.NewWriter(buf) - if err := wr.Write([]string{"unix-ts", "avg-latency-ms", "avg-throughput"}); err != nil { + if err := wr.Write([]string{"UNIX-TS", "AVG-LATENCY-MS", "AVG-THROUGHPUT"}); err != nil { plog.Fatal(err) } rows := [][]string{}