influxdb/monitor/statement_executor.go

83 lines
2.1 KiB
Go
Raw Normal View History

2015-09-02 22:34:15 +00:00
package monitor
import (
"fmt"
"sort"
2015-09-02 22:34:15 +00:00
"github.com/influxdata/influxdb/influxql"
"github.com/influxdata/influxdb/models"
"github.com/influxdata/influxdb/monitor/diagnostics"
2015-09-02 22:34:15 +00:00
)
// StatementExecutor translates InfluxQL queries to Monitor methods.
type StatementExecutor struct {
Monitor interface {
2015-10-19 21:06:14 +00:00
Statistics(map[string]string) ([]*Statistic, error)
Diagnostics() (map[string]*diagnostics.Diagnostics, error)
2015-09-02 22:34:15 +00:00
}
}
// ExecuteStatement executes monitor-related query statements.
func (s *StatementExecutor) ExecuteStatement(stmt influxql.Statement) *influxql.Result {
switch stmt := stmt.(type) {
case *influxql.ShowStatsStatement:
2015-09-22 23:28:24 +00:00
return s.executeShowStatistics(stmt.Module)
2015-09-02 22:34:15 +00:00
case *influxql.ShowDiagnosticsStatement:
return s.executeShowDiagnostics(stmt.Module)
2015-09-02 22:34:15 +00:00
default:
panic(fmt.Sprintf("unsupported statement type: %T", stmt))
}
}
2015-09-22 23:28:24 +00:00
func (s *StatementExecutor) executeShowStatistics(module string) *influxql.Result {
stats, err := s.Monitor.Statistics(nil)
if err != nil {
return &influxql.Result{Err: err}
}
2015-09-02 22:34:15 +00:00
2015-11-22 18:42:34 +00:00
var rows []*models.Row
2015-09-22 23:28:24 +00:00
for _, stat := range stats {
if module != "" && stat.Name != module {
continue
}
row := &models.Row{Name: stat.Name, Tags: stat.Tags}
2015-09-02 22:34:15 +00:00
values := make([]interface{}, 0, len(stat.Values))
for _, k := range stat.valueNames() {
row.Columns = append(row.Columns, k)
values = append(values, stat.Values[k])
}
row.Values = [][]interface{}{values}
2015-09-22 23:28:24 +00:00
rows = append(rows, row)
2015-09-02 22:34:15 +00:00
}
return &influxql.Result{Series: rows}
}
func (s *StatementExecutor) executeShowDiagnostics(module string) *influxql.Result {
diags, err := s.Monitor.Diagnostics()
if err != nil {
return &influxql.Result{Err: err}
}
rows := make([]*models.Row, 0, len(diags))
// Get a sorted list of diagnostics keys.
sortedKeys := make([]string, 0, len(diags))
2015-11-22 18:42:34 +00:00
for k := range diags {
sortedKeys = append(sortedKeys, k)
}
sort.Strings(sortedKeys)
for _, k := range sortedKeys {
if module != "" && k != module {
continue
}
row := &models.Row{Name: k}
row.Columns = diags[k].Columns
row.Values = diags[k].Rows
rows = append(rows, row)
}
return &influxql.Result{Series: rows}
2015-09-02 22:34:15 +00:00
}