Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to modify the faceting? #879

Closed
uditranjan opened this issue Jan 28, 2014 · 1 comment
Closed

How to modify the faceting? #879

uditranjan opened this issue Jan 28, 2014 · 1 comment

Comments

@uditranjan
Copy link

On Kibana, I want certain phrases to show up and not the words separately. For eg: "Range rover". This would show the counts for the words 'range' and 'rover' separately.
Is there a way to show this as one term?

@mithun35h
Copy link

You need to add mappings for it, for more info check the below link.
http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/mapping-dynamic-mapping.html

If you are using logstash check the default mapping template. Some content for that file is below

"dynamic_templates" : [ {
"string_fields" : {
"match" : "*",
"match_mapping_type" : "string",
"mapping" : {
"type" : "multi_field",
"fields" : {
"{name}" : {"type": "string", "index" : "analyzed", "omit_norms" : true, "index_options" : "docs"},
"{name}.raw" : {"type": "string", "index" : "not_analyzed", "ignore_above" : 256}
}
}
}
} ],

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants
@rashidkpc @mithun35h @uditranjan and others