There is a need to find out how many events are gathered to InTrust in a 24 hour time period. This might be for records, or to help guage repostiory growth.
1. Create a Import Policy to import all events from the Repository for all the logs you gather without any filters.
2. Use this Import policy to import the last 24 hours worth of events to an Ad-Hoc database (can be any InTrust Audit database as long as it is empty, a audit database cleanup job can be used to clear out the database befor the import).
3. Set a reporting job to run the Raw Data Analysis report against the Ad-Hoc database. (This will give you counts over every event imported)
4. Alternative to step 4, run the following queiry in SQL Serverr Management Studio against the Ad-Hoc database.
select COUNT (*) from events (This will give you a total of events imported).