Hi everyone,
I need some guidance on how to implement the following metric in OpenDashboard. For reference, I have included a screenshot from Kibana and the formula I used.
(
sum(delivery_count, kql='_index : "index1"') +
sum(home_collection_success_count, kql='_index : "index1"') +
sum(store_collection_visit_count, kql='_index : "index1"') +
sum(store_drop_visit_count, kql='_index : "index1"') +
sum(client_pickup_visit_count, kql='_index : "index1"')
)
/
(
sum(courier_on_road_minutes, kql='_index : "index2"')
/
60
)
I have already tried using the Time Series Visual Builder (TSVB), but I could only add two conditional aggregations, which is not enough for this formula.
Could anyone suggest another method or a workaround to implement this calculation in OpenDashboard?
Any help would be greatly appreciated.
Thank you.