Skip to content

Commit

Permalink
Document the --es.ilm flag
Browse files Browse the repository at this point in the history
Signed-off-by: Jonathan Ballet <[email protected]>
  • Loading branch information
multani committed May 14, 2024
1 parent 80f1d45 commit 444b54b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ elasticsearch_exporter --help
| es.indices_settings | 1.0.4rc1 | If true, query settings stats for all indices in the cluster. | false |
| es.indices_mappings | 1.2.0 | If true, query stats for mappings of all indices of the cluster. | false |
| es.aliases | 1.0.4rc1 | If true, include informational aliases metrics. | true |
| es.ilm | 1.6.0 | If true, query index lifecycle policies for indices in the cluster.
| es.shards | 1.0.3rc1 | If true, query stats for all indices in the cluster, including shard-level stats (implies `es.indices=true`). | false |
| es.snapshots | 1.0.4rc1 | If true, query stats for the cluster snapshots. | false |
| es.slm | | If true, query stats for SLM. | false |
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func main() {
"Export informational alias metrics.").
Default("true").Bool()
esExportILM = kingpin.Flag("es.ilm",
"Export index lifecycle politics for indices in the cluster.").
"Export index lifecycle policies for indices in the cluster.").
Default("false").Bool()
esExportShards = kingpin.Flag("es.shards",
"Export stats for shards in the cluster (implies --es.indices).").
Expand Down

0 comments on commit 444b54b

Please sign in to comment.