-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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
In Pie chart, terms of 2 words are considered as 2 different labels #302
Comments
You will need to set the field type in Elasticsearch to non_analyzed. @rashidkpc please correct me if i'm wrong :-) |
Well, I tried with the following mappings, but no luck:
I also tried to declare user and agent as nested, but in that case, the pie chart is totally empty. |
What happens if you set it like this: {
"trackedData": {
"properties": {
"user.agent.vendor": {
"type":"string",
"index": "not_analyzed"
},
"user.agent.platform": {
"type":"string",
"index": "not_analyzed"
}
}
}
} |
Also note that you'll need to reindex your data after applying a mapping. Closing as notabug |
@dadoonet Merci David! Thanks @rashidkpc! |
Hi guys, I still had the same problem with Pie Dashboards. I tried a lot of possibilities and nothing. Please, can you check this following configuration: ------------------- LogStash configuration -------------------
------------------- Mapping ElasticSearch -------------------
------------------- Events to Insert ------------------- asn="1930",as_name="Portugal Network",ip="193.136.110.110" Thank you, |
2.6.0 ix engine
Hi,
I'm testing Kibana to do some analytics and I saw that terms of 2 words in Pie chart are displayed as 2 different label:
"Internet Explorer" as Internet and Explorer
"Mac Os x" as "Mac" "OS" "x"
Is there a way to keep those terms in one words?
Cheers,
The text was updated successfully, but these errors were encountered: