mirror of
https://codeberg.org/scip/esctl.git
synced 2026-08-24 23:34:18 +02:00
Compare commits
3 Commits
hide-ds-in
...
mapper
| Author | SHA1 | Date | |
|---|---|---|---|
| 17e61a151a | |||
| ab0b3ad7ab | |||
| e423e448e7 |
1
TODO.md
1
TODO.md
@@ -6,3 +6,4 @@
|
|||||||
- add datastream support:
|
- add datastream support:
|
||||||
https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-indices-get-data-stream
|
https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-indices-get-data-stream
|
||||||
|
|
||||||
|
also exclude data stream backing indices from index ls
|
||||||
|
|||||||
@@ -62,6 +62,11 @@ func filterIndices(conf *cfg.Config, list indices.Response) indices.Response {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return mapmap.NewSlicer(list).MapSliceValuesImmutable(func(index types.IndicesRecord) bool {
|
return mapmap.NewSlicer(list).MapSliceValuesImmutable(func(index types.IndicesRecord) bool {
|
||||||
|
if strings.HasPrefix(*index.Index, ".ds-") {
|
||||||
|
// ignore data stream backing indicies
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
if !conf.Partials && strings.HasPrefix(*index.Index, "partial-") {
|
if !conf.Partials && strings.HasPrefix(*index.Index, "partial-") {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user