Can we use elasticsearch analyzer for kibana

Hi team,
I am learning Elasticsearch analyzer and now i have to test this analyzer for my new index.
There is a question strucking in my mind that if made analyzer and we are searching our text in kibana discover. Because i am thinking that Elasticsearch analyzer is used when we have to create search application.

"settings":{
      "analysis":{
         "analyzer":{
            "my_analyzer":{ 
               "type":"custom",
               "tokenizer":"standard",
               "filter":[
                  "lowercase"
               ]
            },
            "my_stop_analyzer":{ 
               "type":"custom",
               "tokenizer":"standard",
               "filter":[
                  "lowercase",
                  "english_stop"
               ]
            }
         },
         "filter":{
            "english_stop":{
               "type":"stop",
               "stopwords":"_english_"
            }
         }
      }
   },
   "mappings":{
       "properties":{
          "title": {
             "type":"text",
             "analyzer":"my_analyzer", 
             "search_analyzer":"my_stop_analyzer", 
             "search_quote_analyzer":"my_analyzer" 
         }
      }
   }
}

we cannot use this query in kibana discover

GET my-index-000001/_search
{
   "query":{
      "query_string":{
         "query":"\"the quick brown fox\"" 
      }
   }
}

So my question is can we use analyzer for our index and we are analyzing our text and we are searching the text in kibana discover.

Yes.

1 Like

thanks @warkolm.

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