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

possibility to display values of index nested fields in the POI's tooltip #73

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

sergitopo
Copy link

@sergitopo sergitopo commented Oct 16, 2017

For the POI's layer of this pluggin, if you try to add fields to the tooltip, it works only in the cases that the field is at the 'root' level of the document, if not, it displays undefined. The reason is:

When you have field names like eventMessage.event.name, and you try to get the value of this field in the line 'dlContent += `

${field}
${hit._source[field]}
'

You get hit._source['eventMessage.event.name'], because kibana gives you that field name, and there is not key like that. Instead, the value must be gotten using the expression:
hit._source['eventMessage']['event']['name']
For this reason I added the function nestedField, that checks if the field has dots, and for each one, access to the property of the _source object one be one.

The image shows the result after apply the changes.

image

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

Successfully merging this pull request may close these issues.

1 participant