feature add ilm-explain (#52)

This commit is contained in:
T. von Dein
2026-06-26 10:02:41 +02:00
parent 6200b5e7b0
commit d2a0812579
2 changed files with 42 additions and 2 deletions

View File

@@ -38,6 +38,7 @@ func Ilm(conf *cfg.Config) *cli.Command {
IlmShow(conf),
IlmCreate(conf),
IlmForecast(conf),
IlmExplain(conf),
},
}
}
@@ -54,6 +55,23 @@ func IlmRetry(conf *cfg.Config) *cli.Command {
}
}
func IlmExplain(conf *cfg.Config) *cli.Command {
return &cli.Command{
Name: "explain",
Usage: "explain ilm condition of an index",
UsageText: "explain <index>",
Action: func(ctx context.Context, cmd *cli.Command) error {
index := cmd.Args().Get(0)
if index == "" {
return errors.New("no index specified")
}
return es.IlmExplain(conf, index)
},
}
}
func IlmStatus(conf *cfg.Config) *cli.Command {
return &cli.Command{
Name: "status",