Issue with Discover Not Loading on OpenSearch Dashboard

Versions (relevant - OpenSearch/Dashboard/Server OS/Browser):
opensearch dashboard v2.11.1

Describe the issue:

When I click on Discover in the OpenSearch Dashboard, it doesn’t load, and instead, I see “Overview” with no content displayed. Even when I click on Overview, nothing shows up.

After a few minutes, both Overview and Discover load, but this issue happens very frequently.

What could be the cause of this, and how can I fix it?

Hi @cucukaka, are there any errors in the OS logs?

can you share the output of:

curl --insecure -u <user_name>: -XGET https://<OS_node>:9200/_plugins/_security/authinfo?pretty

best,
mj

here, thanks!

$ curl -k https://localhost:9200/_plugins/_security/authinfo?pretty -u admin:admin
{
  "user" : "User [name=admin, backend_roles=[admin], requestedTenant=null]",
  "user_name" : "admin",
  "user_requested_tenant" : null,
  "remote_address" : "10.11.26.1:55168",
  "backend_roles" : [
    "admin"
  ],
  "custom_attribute_names" : [ ],
  "roles" : [
    "own_index",
    "tenant_ahnlab_read",
    "all_access"
  ],
  "tenants" : {
    "global_tenant" : true,
    "admin" : true,
    "ahnlab" : true
  },
  "principal" : null,
  "peer_certificates" : "0",
  "sso_logout_url" : null
}

The permissions look good. The next thing to check is index patterns. Could you recreate them and test Descover again?

best,
mj

I am experiencing a similar issue and have some information from the dev tools.
I am trying to search for a saved object using a non-existent index pattern ID.
I don’t understand why it’s looking for an ID that doesn’t exist.
The test account has admin privileges with full access.