17 Mar 2020 05:09 AM - last edited on 31 Aug 2022 10:54 AM by MaciejNeumann
I have a requirement to create comparison chart for a particular user action (Today vs Yesterday vs Last week). Has anyone done this before. I am running on the latest version of dynatrace.
Sample has been provided below.
Solved! Go to Solution.
17 Mar 2020 12:45 PM
@Suresh K. Currently only certain graphs will allow the comparison. You can see this within any type of User Session SQL statements. Granted that is only for User session metrics. You can also compare over time with some single value dashboard tiles, as well as pure paths and so on by navigating to the transaction and services and selecting compare.
User Session SQL:
Transactions and Services :
10 Jun 2021 04:26 AM
Is there any new updates coming for comparisons ? Keen to check / comapre the units in some kind of stack graph.
10 Jun 2021 07:39 PM
@kunal_vaidya You could use something like this:
Select DISTINCT DATETIME(starttime, 'HH:mm', '30m'), COUNT(*) FROM usersession where useraction.application = "you app here" GROUP BY datetime(starttime,"HH:mm","30m")
regards!
24 Jun 2021 06:29 AM
Thanks !! Will try it