-
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
Hits/pie panel : list view with percent and "order by" capability #104
Comments
An idea :
|
Is there a way to do that in Kibana 4 ? It would be helpful ! |
spalger
pushed a commit
to spalger/kibana
that referenced
this issue
Mar 3, 2016
…ion, stale data indication Closes elastic#105 , Closes elastic#104
harper-carroll
referenced
this issue
in harper-carroll/kibana
Jul 11, 2016
Merged after code review and test
This was referenced Sep 24, 2020
This was referenced Jan 18, 2022
ari-aviran
pushed a commit
to ari-aviran/kibana
that referenced
this issue
Feb 7, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
With the list view of the hits panel, add the possibility to display the score in percent.
Currently to do the trick, I cheat by modifying the ./panels/hits/module.html and adding :
{{query.label}}: {{((100*query.data[0][1])/hits)| number:2}}%
But I have to add the field one by one...and I don't want to spend my time by adding all term of a field.
Otherwise, it's a kind of merge between hits and pie panels functionalities :
-get a list of terms in a field as pie panel
-display them in a list with the percent
-possibility to order the list based on the label or the percent.
-in a pretty way :)
Example of use => Get a list a http status code ordered by label
because Pie and hits panels by default are horrible if you add code "200"...
I think it can be done by adding a kind of "list" mode in the pie panel for example...
Thank you !
The text was updated successfully, but these errors were encountered: