.kibana Indices

I want to change .kibana indices shards and replicas but nothing works

PUT /_template/custom_kibana
{
  "index_patterns": ".kibana*",
  "order": 1,
  "settings": {
    "number_of_shards": 3,
    "number_of_replicas": 1
  }
}
health status index                           uuid                   pri rep docs.count docs.deleted store.size pri.store.size
green  open   .kibana-event-log-7.9.3-000001  ATjaNZXETlO3gBY8E74Zlw   1   1          3            0     32.6kb         16.2kb
green  open   .kibana_task_manager_1          MkRzeHDaRRSRKtOaFP6-yg   1   1          6            8      271kb        153.8kb
green  open   .kibana_1                       njKmx--ATwSASowotvkw6A   1   1         31           28     20.9mb         10.4mb

Index templates only apply to new indices so will not change settings of existing ones. Why would you want 3 primary shards for these indices?

I already deleted the previous indices of kibana.I m just checking does kibana can replicates its indices

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.