mirror of
https://github.com/Oxalide/vsphere-influxdb-go.git
synced 2023-10-10 11:36:51 +00:00
add vendoring with go dep
This commit is contained in:
43
vendor/github.com/influxdata/influxdb/cmd/influx_inspect/help/help.go
generated
vendored
Normal file
43
vendor/github.com/influxdata/influxdb/cmd/influx_inspect/help/help.go
generated
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
// Package help contains the help for the influx_inspect command.
|
||||
package help
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"io"
|
||||
"os"
|
||||
"strings"
|
||||
)
|
||||
|
||||
// Command displays help for command-line sub-commands.
|
||||
type Command struct {
|
||||
Stdout io.Writer
|
||||
}
|
||||
|
||||
// NewCommand returns a new instance of Command.
|
||||
func NewCommand() *Command {
|
||||
return &Command{
|
||||
Stdout: os.Stdout,
|
||||
}
|
||||
}
|
||||
|
||||
// Run executes the command.
|
||||
func (cmd *Command) Run(args ...string) error {
|
||||
fmt.Fprintln(cmd.Stdout, strings.TrimSpace(usage))
|
||||
return nil
|
||||
}
|
||||
|
||||
const usage = `
|
||||
Usage: influx_inspect [[command] [arguments]]
|
||||
|
||||
The commands are:
|
||||
|
||||
dumptsm dumps low-level details about tsm1 files.
|
||||
export exports raw data from a shard to line protocol
|
||||
help display this help message
|
||||
report displays a shard level report
|
||||
verify verifies integrity of TSM files
|
||||
|
||||
"help" is the default command.
|
||||
|
||||
Use "influx_inspect [command] -help" for more information about a command.
|
||||
`
|
3
vendor/github.com/influxdata/influxdb/cmd/influx_inspect/help/help_test.go
generated
vendored
Normal file
3
vendor/github.com/influxdata/influxdb/cmd/influx_inspect/help/help_test.go
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
package help_test
|
||||
|
||||
// TODO: write some tests
|
Reference in New Issue
Block a user