Mention verify subcommand in influx_inspect help
parent
6fd74a6a2a
commit
ab7bfe2473
|
@ -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.
|
||||
|
||||
|
|
|
@ -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]
|
||||
|
||||
|
|
|
@ -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[]
|
||||
|
|
Loading…
Reference in New Issue