Create a report that shows each resolver group and their average time they update the end user for their tickets(for 'incident_task' and 'sc_task' tables).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2022 06:20 AM
I've a requirement where we need to create a report that shows each resolver group and their average time they update the end user for their tickets(for 'incident_task' and 'sc_task' tables).
Could someone please help in this?
Thanks and regards,
Rajeev.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2022 06:53 AM
Let's take incident_task. I assume the update is always the 'comment' field? Metrics will work here if your ticket only has one assignment group. If not you only have the assigned_to to report on.
You then could create a DB view to the sys_user_grmember, but that will only work if you don't have users as member of 2 groups. Create a report on that db_view and you can see the average per assignment group.
Another possibility is to create a scheduled report following this article (only not for cmdb_ci, but for your own tables). You can 'catch' every change of the comments field and include the assignment group in the report when the change occured. You will need some smart reporting to get the duration though.
Assuming PA isn't an option (because that would take some time, but could be done if you have premium): if this is really important to know, you could consider to create a table for this, and copy assignment group, duration, comments, times, dates, etc to that table to report on.
At one time I have seen the SLA table misused for this, but most of the time I'm just wondering what value this is going to have in running the team(s). It won't improve quality of responses to the end user, that's for sure.
Please mark any helpful or correct solutions as such. That helps others find their solutions.
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2022 11:02 PM
Hi Mark,
In the above scenario we have multiple assignment groups. If you could please elaborate?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2022 03:46 AM
Not sure why, but if you really think this information will improve anything, you can log that info somewhere, because you may be able to get it with PA premium (although it will take some tweaking), but otherwise it's not there OOB. The article I shared will show you only the when and has no duration, so that won't work for you neither (I just realized).
Please mark any helpful or correct solutions as such. That helps others find their solutions.
Mark