1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
influx_inspect(1)
=================
NAME
----
influx_inspect - Displays detailed information about InfluxDB data files
SYNPOSIS
--------
[verse]
'influx_inspect dumptsm' [options]
'influx_inspect export' [options]
'influx_inspect report' [options]
DESCRIPTION
-----------
Displays detailed information about InfluxDB data files through one of the
following commands.
*dumptsm*::
Dumps low-level details about tsm1 files.
*export*::
Exports TSM files into InfluxDB line protocol format.
*report*::
Displays shard level report.
DUMPTSM OPTIONS
---------------
-all::
Dump all data. Caution: This may print a lot of information.
-blocks::
Dump raw block data.
-filter-key <string>::
Only display index and block data that match this key substring.
-index::
Dump raw index data.
EXPORT OPTIONS
--------------
-compress::
Compress the output.
-db <name>::
The database to export. Optional.
-rp <name>::
The retention policy to export. Optional. Requires the '-db <name>' option to be specified.
-data-dir <path>::
Data storage path. Defaults to '~/.influxdb/data'.
-wal-dir <path>::
Wal storage path. Defaults to '~/.influxdb/wal'.
-start <timestamp>::
The start time of the export. The timestamp is in RFC3339 format. Optional.
-end <timestamp>::
The end time of the export. The timestamp is in RFC3339 format. Optional.
-out <path>::
Destination file to write exported data to. Defaults to '~/.influxdb/export'.
REPORT OPTIONS
--------------
-detailed::
Report detailed cardinality estimates.
-pattern <string>::
Include only files matching a pattern.
include:footer.txt[]
|