Number of Incidents assigned to group over time

fubz
Kilo Explorer

How do I create a report that will show me how many Incidents have been assigned to my assignment group over a period of time.

I don't just want the current active incidents that are assigned to my group, I want all of the incidents that were at one time assigned to my group.

Thanks!

5 REPLIES 5

Pradeep Sharma
ServiceNow Employee
ServiceNow Employee

Hi,



There is an OOB metric which tracks the assignment group and the amount of the incident was assigned to the group.   It is called 'Assignment Group' and you can report on the 'Incident Metric' table.


Can you explain OOB metrics more?   I am having trouble finding the documentation on it and where it's located in Service Now.


Brian Dailey1
Kilo Sage

Hi Fubz,



Assuming that the table [incident] is audited, you can query the audit table [sys_audit] for entries where (fieldname=assignment_group) has been changed on the incident table, and group by the new_value (which would be the group getting assigned to), and count the individual documentkeys (which would be the tasks that were assigned).





-Brian