As part of v7.2x, the RSA IGL team introduced a new telemetry feature, which has some awesome information as part of it. This telemetry data is collected every night and is really useful for using when creating new charts/reports.
The data is all found in this new view: PV_TELEMETRY_DATA
Example can be found here as examples: RSA IGL Recipes - The 12 Dashboards of Christmas - Summary
Before reading ahead, check out these 2 documents first:
Good question! The main reasons are that:
The telemetry data that is collected, is broken out into various specific category's (shown below).
Within each category, there are various "names" of items, that are being collected each day.
So for each day, you will find there are 100s of data points being collected, which you can then use to create some nice charts/reports with - some of these are found here: RSA IGL Recipes - The 12 Dashboards of Christmas - Summary
The category's include the following product areas:
To get a FULL list of all the different options available, please run the following query within your environment (I use SQL Developer):
select distinct
category,
name
from PV_TELEMETRY_DATA
order by category, name asc
;
Example screen shot:
Its worth noting that some of the data is collected per item as well, for example per application or AFX connector. So there is a lot of granular data being collected that is specific to your environment too.
Lets say we wanted to look at the total number of completed review items within your environment.
This is the SQL we could use, to gather this data:
select distinct
*
from PV_TELEMETRY_DATA
where category = 'reviews'
and name = 'completed.items.total'
order by day desc
;
As we can see when we run this SQL, the "value" changes over the days, from 84 on 19th Sept, then to 85 on 23rd Sept and onto 95 on the 30th Sept.