Hello,
Is using custom analyzers supported in Kibana?
I am using Kibana 4.2 and Elasticsearch 2.0.beta
I am trying to run this Elasticsearch Query DSL in Kibana:
{"match": {"body": {"minimum_should_match": "100%", "query": "Test test", "fuzziness": 2, "analyzer": "my_analyzer"}}}
As you can see, I am using a custom analyzer. It is throwing however an analyzer not found exception:
org.elasticsearch.index.query.QueryParsingException: [match] analyzer [standard_analyzer] not found
If I try using that analyzer outside of Kibana, it works (So it's not because of my ES version).