Merge pull request #7492 from influxdata/mr-influx_inspect-help-verify

Mention verify subcommand in influx_inspect help
pull/7616/head
Mark Rushakoff 2016-11-07 13:23:39 -08:00 committed by GitHub
commit d52eb01c17
3 changed files with 11 additions and 1 deletions

View File

@ -34,6 +34,7 @@ The commands are:
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.

View File

@ -106,7 +106,7 @@ func (cmd *Command) Run(args ...string) error {
// printUsage prints the usage message to STDERR.
func (cmd *Command) printUsage() {
usage := fmt.Sprintf(`Verifies the the checksum of shards.
usage := fmt.Sprintf(`Verifies the integrity of TSM files.
Usage: influx_inspect verify [flags]

View File

@ -11,6 +11,7 @@ SYNPOSIS
'influx_inspect dumptsm' [options]
'influx_inspect export' [options]
'influx_inspect report' [options]
'influx_inspect verify' [options]
DESCRIPTION
-----------
@ -26,6 +27,9 @@ following commands.
*report*::
Displays shard level report.
*verify*::
Verifies integrity of TSM files.
DUMPTSM OPTIONS
---------------
-all::
@ -74,4 +78,9 @@ REPORT OPTIONS
-pattern <string>::
Include only files matching a pattern.
VERIFY OPTIONS
--------------
-dir <path>::
Root storage path. Defaults to '~/.influxdb'.
include:footer.txt[]