# Kibana only display logo no content -elasticsearch error shard

**URL:** https://discuss.elastic.co/t/kibana-only-display-logo-no-content-elasticsearch-error-shard/185529
**Category:** Elasticsearch
**Created:** [June 12, 2019, 11:32pm UTC](https://discuss.elastic.co/t/kibana-only-display-logo-no-content-elasticsearch-error-shard/185529 "2019-06-12T23:32:04Z")
**Posts on this page:** 1
**Showing post:** 11

<div class="post-metadata">

### Author: ![warkolm](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/warkolm/32/39224_2.png) [@warkolm](https://discuss.elastic.co/u/warkolm)
#### Post date: [June 13, 2019, 3:38am UTC](https://discuss.elastic.co/t/kibana-only-display-logo-no-content-elasticsearch-error-shard/185529/11 "2019-06-13T03:38:57Z")

</div>

Thanks for using the format button there, made it heaps easier for me to read 😃

Ok you're probably best off using the `_reindex` API to merge some of these into monthly with a single shard. So something like;

```auto
PUT lcch-cisco-2018.03

POST _reindex
{
  "source": {
    "remote": {
      "host": "http://localhost:9200"
    },
    "index": "lcch-cisco-2018.03.*"
  },
  "dest": {
    "index": "lcch-cisco-2018.03"
  }
}

```

Note that this assumes you have a template for the index pattern `lcch-cisco-*`, otherwise when you create the `lcch-cisco-2018.03` index, apply your own mapping manually.

---

_[View the full topic](https://discuss.elastic.co/t/kibana-only-display-logo-no-content-elasticsearch-error-shard/185529)._
