control: change column name

This commit is contained in:
Gyu-Ho Lee 2017-01-09 15:04:44 -08:00
parent c83e6ae386
commit 4bf7e33c79
No known key found for this signature in database
GPG Key ID: 1DDD39C7EB70C24C
1 changed files with 1 additions and 1 deletions

View File

@ -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{}