Use Measurement name, not a column "name"
This results in proper Measurement output.pull/3942/head
parent
14c04eb4d6
commit
8efb3fb7d8
|
@ -125,12 +125,9 @@ func (s *Service) executeShowStatistics(q *influxql.ShowStatsStatement) *influxq
|
|||
rows := make([]*influxql.Row, len(stats))
|
||||
|
||||
for n, stat := range stats {
|
||||
row := &influxql.Row{}
|
||||
row := &influxql.Row{Name: stat.Name}
|
||||
values := make([]interface{}, 0, len(stat.Tags)+len(stat.Values))
|
||||
|
||||
row.Columns = append(row.Columns, "name")
|
||||
values = append(values, stat.Name)
|
||||
|
||||
for _, k := range stat.tagNames() {
|
||||
row.Columns = append(row.Columns, k)
|
||||
values = append(values, stat.Tags[k])
|
||||
|
|
Loading…
Reference in New Issue