elasticsearch-inquisitor
elasticsearch-inquisitor copied to clipboard
run _analyze at index.
I add some custom analyzer in elasticsearch like Chinese words. and I add them in inquisitor 's config js and I can see new add analyzer in /_plugin/inquisitor/#/analyzers tab. but it always 500 erro that es tell me that can not found analyzer.
I googled and found reason ,these add analyzer can only test with a index. eg.
curl -XGET localhost:9200/syslog/_analyze?analyzer=mmseg
It works
curl -XGET localhost:9200/_analyze?analyzer=mmseg
It throw not found error.
so can do some patch on inquisitor that support it?
Ah, interesting. I'll see what I can do about it this week. Should be doable...just need to pull the custom analyzer data out of the cluster mapping and selectively apply it to certain indices.
Ah, Thanks reply.
2013/7/1 Zachary Tong [email protected]
Ah, interesting. I'll see what I can do about it this week. Should be doable...just need to pull the custom analyzer data out of the cluster mapping and selectively apply it to certain indices.
— Reply to this email directly or view it on GitHubhttps://github.com/polyfractal/elasticsearch-inquisitor/issues/20#issuecomment-20277903 .
How to do it?Can you give me case?