2015-09-02 22:34:15 +00:00
|
|
|
package monitor
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/influxdb/influxdb/influxql"
|
|
|
|
)
|
|
|
|
|
|
|
|
// StatementExecutor translates InfluxQL queries to Monitor methods.
|
|
|
|
type StatementExecutor struct {
|
|
|
|
Monitor interface {
|
|
|
|
Statistics() ([]*statistic, error)
|
2015-09-03 02:38:31 +00:00
|
|
|
Diagnostics() (map[string]*Diagnostic, 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:
|
|
|
|
return s.executeShowStatistics()
|
|
|
|
case *influxql.ShowDiagnosticsStatement:
|
|
|
|
return s.executeShowDiagnostics()
|
|
|
|
default:
|
|
|
|
panic(fmt.Sprintf("unsupported statement type: %T", stmt))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *StatementExecutor) executeShowStatistics() *influxql.Result {
|
2015-09-03 02:38:31 +00:00
|
|
|
stats, err := s.Monitor.Statistics()
|
|
|
|
if err != nil {
|
|
|
|
return &influxql.Result{Err: err}
|
|
|
|
}
|
2015-09-02 22:34:15 +00:00
|
|
|
rows := make([]*influxql.Row, len(stats))
|
|
|
|
|
|
|
|
for n, stat := range stats {
|
|
|
|
row := &influxql.Row{Name: stat.Name, Tags: stat.Tags}
|
|
|
|
|
|
|
|
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}
|
|
|
|
rows[n] = row
|
|
|
|
}
|
|
|
|
return &influxql.Result{Series: rows}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *StatementExecutor) executeShowDiagnostics() *influxql.Result {
|
2015-09-03 02:38:31 +00:00
|
|
|
diags, err := s.Monitor.Diagnostics()
|
|
|
|
if err != nil {
|
|
|
|
return &influxql.Result{Err: err}
|
|
|
|
}
|
|
|
|
rows := make([]*influxql.Row, 0, len(diags))
|
|
|
|
|
|
|
|
for k, v := range diags {
|
|
|
|
row := &influxql.Row{Name: k}
|
|
|
|
|
|
|
|
row.Columns = v.Columns
|
|
|
|
row.Values = v.Rows
|
|
|
|
rows = append(rows, row)
|
|
|
|
}
|
|
|
|
return &influxql.Result{Series: rows}
|
2015-09-02 22:34:15 +00:00
|
|
|
}
|