dwalby Posted January 24, 2018 Posted January 24, 2018 Hi all, I'd like to create a widget displaying the 'Top Request Resolver' of the day (and week, month, etc.) How would I go about doing this so it shows the number of requests resolved as well as the name of the analyst? Thanks in advance
Lyonel Posted January 24, 2018 Posted January 24, 2018 @dwalby here is how I would do it: Top 10 resolvers: SELECT h_resolvedby_username as Resolver, count(h_pk_reference) as Requests FROM h_itsm_requests where date(h_dateresolved) = curdate() group by h_resolvedby_username order by 2 desc limit 10; This gives you the freedom to choose what to display as well as how many. change "10" by the number you want. 1
Lyonel Posted January 24, 2018 Posted January 24, 2018 Another option is to create a chart: h_status in ('status.resolved','status.closed') and date(h_dateresolved) = curdate()
Lyonel Posted January 24, 2018 Posted January 24, 2018 Last method I can think of: using a measure then a chart based on the measure Giving you something like that: 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now