resolved merge conflicts in influxd inspect page
commit
2f94eccc70
|
@ -18,6 +18,7 @@ influxd inspect [subcommand]
|
|||
## Subcommands
|
||||
| Subcommand | Description |
|
||||
|:---------- |:----------- |
|
||||
| [dump-tsi](/v2.0/reference/cli/influxd/inspect/dump-tsi/) | Output low level TSI information |
|
||||
| [dumpwal](/v2.0/reference/cli/influxd/inspect/dumpwal/) | Output TSM data from WAL files |
|
||||
| [export-blocks](/v2.0/reference/cli/influxd/inspect/export-blocks/) | Export block data |
|
||||
| [report-tsi](/v2.0/reference/cli/influxd/inspect/report-tsi/) | Report the cardinality of TSI files |
|
||||
|
|
|
@ -0,0 +1,33 @@
|
|||
---
|
||||
title: influxd inspect dump-tsi
|
||||
description: >
|
||||
The `influxd inspect dump-tsi` command outputs low-level information about `tsi1` files.
|
||||
v2.0/tags: [tsi, inspect]
|
||||
menu:
|
||||
v2_0_ref:
|
||||
parent: influxd inspect
|
||||
weight: 301
|
||||
---
|
||||
|
||||
The `influxd inspect dump-tsi` command outputs low-level information about
|
||||
Time Series Index (`tsi1`) files.
|
||||
|
||||
## Usage
|
||||
```sh
|
||||
influxd inspect dump-tsi [flags]
|
||||
```
|
||||
|
||||
## Flags
|
||||
| Flag | Description | Input Type |
|
||||
|:---- |:----------- |:----------:|
|
||||
| `-h`, `--help` | Help for `dump-tsi`. | |
|
||||
| `--index-path` | Path to data engine index directory (defaults to `~/.influxdbv2/engine/index`). | string |
|
||||
| `--measurement-filter` | Regular expression measurement filter. | string |
|
||||
| `--measurements` | Show raw measurement data. | |
|
||||
| `--series` | Show raw series data. | |
|
||||
| `--series-path` | Path to series file (defaults to `~/.influxdbv2/engine/_series`). | string |
|
||||
| `--tag-key-filter` | Regular expression tag key filter. | string |
|
||||
| `--tag-keys` | Show raw tag key data. | |
|
||||
| `--tag-value-filter` | Regular expression tag value filter. | string |
|
||||
| `--tag-value-series` | Show raw series data for each value. | |
|
||||
| `--tag-values` | Show raw tag value data. | |
|
Loading…
Reference in New Issue