Search notes:

Oracle: V$SYSTEM_EVENT

v$system_event summarizes the total wait times since the instance started up, broken up for each event.
select *
from
  v$system_event
order by
  time_waited desc;
Github repository oracle-patterns, path: /Installed/dynamic-performance-views/system/event/order-by-time_waited.sql

See also

The Oracle Dynamic Performance Views

Index