Index Patterns Menu Missing

Hi all,

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

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-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!

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”