HI! I am trying to create something similar to the transaction scorecard with some business rules and saving each calculated % for dashboards and reports. For example:
Login 99.30% availability in the time range, where we calculate this by doing "N...
We are trying to create a health rule self service mode for our developers and we have some doubts on how to explain the difference between using standard deviations and baseline percentage. Which is the difference between the calculation of both of ...
Did you have any updates on this? I use funnels for getting the ratio of users that drop our process. But I am sitll wondering which is the best use case for business journey
I found kind of a solution with this query: SELECT 100.0 * filter(count(*), userExperience != "ERROR") / count(*) FROM transactions WHERE application = "application" SINCE 1 minutes This gives me the ratio in % of the completed transactions. But in m...
I'm looking for a similar solution. Did you find something? Did you tried something like this:SELECT 100.0 * filter(count(*), segments.errorList.errorDetail = "put the error code") / count(*) FROM transactions Regards