Reporting audit history of a particular field on asset hardware table
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-09-2019 02:23 AM
Hi,
I need to make a report on the alm_hardware asset table where I can see audit made on the assigned to field.
Suppose I have an asset which is initially assigned to person 'X' after that it got transferred to 'Y', then 'Z'. I need to see the time when the asset was transferred i.e the start time/update time and end_time and the updated by person name. Please let me know the best way to achieve this report. Suggest something other than metric_instance because i need this report for past records.
- Labels:
-
Performance Analytics
-
Reporting
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-09-2019 04:42 AM
Hi Swarna,
I recomand creating a metric:
Also keep in mind that Business Rule might be needed to update the metric.
Regards,
Tudor

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-09-2019 04:43 AM
Hi swarna,
A metric measures and evaluates the effectiveness of IT service management processes.
For example, a metric could measure the effectiveness of the incident resolution process by calculating how long it takes to resolve an incident.
Sometimes a metric can be easily obtained from the data. For example, to find the number of incidents that were created today, a report will simply count the number of incidents in the incident table with a Created date of today. Often, however, metrics need to be gathered as data is updated. For example, determining how long an incident was assigned to a certain group requires collecting information about assignment changes and calculating the duration of each assignment.
The Metric plugin provides an easy, declarative way of defining metrics. Once defined, the data for the metric will be gathered, and instances of the metric will be calculated and stored. By an instance we mean a specific occurrence. For example, the "Assigned to Duration" metric measures the duration of time an incident is assigned to an individual. The metric is defined by creating a metric definition of type "Field value duration" and selecting the "Assigned to" field from the Incident table. A metric instance is then created for each incident assignment showing its duration. Reporting on the duration of incident assignments becomes easy.
Reporting on a metric is done using the database view that links the metric to the table on which it is defined.
- Create a metric
Create a metric definition for a task table.
- Sample field value duration script
Review the existing Incident Open metric definition to see how you can create your own custom metric.
- Metric instance
A metric instance is a record in the metric_instance table. A record holds one instance of a metric.
Thanks