No default index pattern

[Kibana 6.5.1]

I have two index-pattern defined and I have already indexed some data in the related indices.
I have already chosen a default index among those index-patterns.

Sometimes, Kibana shows me this message : "No default index pattern. You must select or create one to continue."
and redirect me to the index management page.

I don't understand this inconstent state with no apparent reason.

Hello,

Just to double-check, I'm assuming you've followed the instructions to set a default index pattern listed here:

https://www.elastic.co/guide/en/kibana/current/index-patterns.html#set-default-pattern

If you're still getting an indication that no default index-pattern is set, it's possible there's an issue. The issue might have already been identified, it just depends on the specific circumstances around when this occurs. I'd encourage you to check the relevant issues here once you determine when it happens and see if it's been identified. If so, you can watch the issue. Otherwise, please feel free to report a new issue if you believe it is one!

Regards,
Aaron

Hi,

I used the kibana API to create all the stuff (dashboards, index-patterns) and to set default indexpattern to apm-squash .

{
"url":"http://localhost:5601/api/kibana/settings/defaultIndex",
"verb":"POST",
"headers":
{"kbn-xsrf":true,
"Content-Type":"application/json"
},
"content":
"{"value":"apm-squash"}"
,"status_code":200
}

I have many other index-patterns, is there a maximum size for the index-pattern saved object ?

I think the problem comes from this request:
http://localhost:5601/api/saved_objects/_find?type=index-pattern&per_page=10000

Kibana requesting only 10000 per page.
I think it's pretty broad for the majority of cases, but may be too low from my use case.

How can I change this value ?

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