influxdb/cmd/influx/debug.go

16 lines
257 B
Go
Raw Normal View History

2019-02-18 14:56:47 +00:00
package main
import (
"github.com/spf13/cobra"
)
// Debug Command
var debugCmd = &cobra.Command{
Use: "debug",
Short: "commands for debugging InfluxDB",
}
func init() {
debugCmd.AddCommand(initInspectReportTSMCommand()) // Add report-tsm command
}