Hello,
I'm planning to use Kibana to display the worst screens displayed by users.
I load the data from our transaction monitors in Elasticsearch using logstash.
For each transaction, I have the duration of it loaded.
I already have a visualization to display the total number of transactions for a given day, and the average duration for the same day.
But historically, we are following the performance of the screens, in order to identify the screens we have to optimize.
To do so, we are using an Excel workbook for the computation, who are quite complicated.
Frankly, I spent a few hours understanding the algorithm and porting it in Python.
Now I want to display the result of this python script in Kibana.
Is there a way to do so ? Loading the data back into Elasticsearch is not a good way to do it, because I want to be able to display the 20 worst screen for a given period (could be a day, could be a week or a month, it's up to the person who wants to display the datas)
So the script tooks two parameters : the start date and the end date.
Is there any way to call this script from Kibana and display the result in a table form ?
Thanks for your answers.