The total Events shown in Reports > Events are less than expected based on the quantity setting in System Configuration > Events.
Typically this happens when Agents are generating more Events than expected in the given timeframe.
It is important to understand several key factors:
use das;
select count(*) AS 'Count' from dbo.events (nolock);
select min(date_created) 'Oldest' from dbo.events (nolock);
Allow a few days to pass after making changes, then execute the SQL Query from above to determine current Total Events and Oldest Event.
The increase in the age of the Oldest Event is a sign that progress is being made, however more aggressive changes may be desired.