# Index Patterns Menu Missing

**URL:** https://forum.opensearch.org/t/index-patterns-menu-missing/9056
**Category:** Index Management
**Tags:** troubleshoot
**Created:** [March 28, 2022, 12:27pm UTC](https://forum.opensearch.org/t/index-patterns-menu-missing/9056 "2022-03-28T12:27:39Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![chsi](https://avatars.discourse-cdn.com/v4/letter/c/ad7895/32.png) [@chsi](https://forum.opensearch.org/u/chsi)
#### Post date: [March 28, 2022, 12:27pm UTC](https://forum.opensearch.org/t/index-patterns-menu-missing/9056/1 "2022-03-28T12:27:39Z")

</div>

Hi all,

I am new to Opensearch. It seems the the Stack Management/ Index Patterns menu is returning a blank page.

 ![Index PatternsEmptyScreen](https://us1.discourse-cdn.com/flex019/uploads/mauve_hedgehog/original/2X/c/c81723f7903f11ee62df8e32f80ae561a43b67e6.png)

I have managed to successfully connect logstash to Elasticsearch. Here is my logstash pipeline

> input {  
> sqlite {  
> path =\> “host\_storage/TestDB.db”  
> type =\> “weblogs”  
> id =\> “sqlite\_input\_example”  
> }  
> }  
> output {  
> opensearch {  
> hosts =\> [“[https://opensearch-node1:9200](https://opensearch-node1:9200)”, “[https://opensearch-node2:9200](https://opensearch-node2:9200)”]  
> # index =\> “%{[@metadata][beat]}-%{[@metadata][version]}-%{+YYYY.MM.dd}”  
> index =\> “logstash-%{+YYYY.MM.dd}”  
> ssl =\> true  
> ssl\_certificate\_verification =\> false  
> user =\> “admin”  
> password =\> “admin”  
> }  
> stdout {  
> codec =\> “rubydebug”  
> id =\> “sqlite\_data”  
> }  
> }

And the created indices in Opensearch

> health status index uuid pri rep docs.count docs.deleted store.size pri.store.size  
> green open logstash-2022.03.28 BVB-V4\_PQL6ZpcdiKKth9g 1 1 3 0 42.5kb 21.2kb  
> green open logstash-2022.03.27 qdjMY6LQThSkGYIzhoMiLA 1 1 1 0 14.4kb 7.2kb

Any ideas?

Thank you in advance!

---

<div class="post-metadata">

### Author: ![chsi](https://avatars.discourse-cdn.com/v4/letter/c/ad7895/32.png) [@chsi](https://forum.opensearch.org/u/chsi)
#### Post date: [April 5, 2022, 8:00am UTC](https://forum.opensearch.org/t/index-patterns-menu-missing/9056/2 "2022-04-05T08:00:38Z")

</div>

Ok, problem solved!

After examining the logs I found that the virtual memory should have been higher.  
If .wslconfig file is missing create one under C:\Users\<UserName\>.wslconfig with the following text

[wsl2]  
memory=6GB # Should be at least 4GB  
localhostForwarding=true  
kernelCommandLine = “sysctl.vm.max\_map\_count=262144”
