Search code examples
elasticsearchkibanaelasticsearch-6kibana-6

How does one create an Index Pattern in Kibana?


I've installed Kibana 6.2.1 on my box and it says that I need to create an Index Pattern before I can use it. The problem is that I can't figure out how to actually create one. All the guides I've seen suggest going into Settings and creating one there. However, those guides are for earlier versions of the product because the screenshots don't match up. Here is what I am seeing:

enter image description here

So what am I missing? Is there a button I am not seeing?

P.S. I am aware of this question and this one, but it's for earlier versions.


Solution

  • Two options:

    1) go to dev tools in the left side bar and there create index for example:

    Post my-index/doc
       {
           Name:"blah"
    
        }
    

    Now go to management and create the index pattern my-index.

    2) download the elastic makelogs repository:

    Npm install -g makelogs
    

    Then type :

    makelogs
    

    The go to management and create the logstash-* index pattern.