v$sysmetric family of system performance views.The data frame contains different types of measurements:
The data frame contains the following variables:
timestampThe end of the two minute interval for which the
remaining variables contain the measurements.db_timeThe time spent inside the database either working on
a CPU or waiting (I/O, locks, buffer waits ...). This time is expressed
as seconds per second, so two sessions working for exactly one second
each will contribute a total of two seconds per second ofdb_time.
In Oracle this value is also known asAverage Active Sessions(AAS).cpu_timeThe CPU time used during the interval. This is also
expressed as seconds per second. A 4-way machine has a theoretical
capacity of four CPU seconds per second.call_rateThe number of user calls (logins, parses, or
execute calls) per second.exec_rateThe number of statement executions per second.lio_rateThe number of logical I/Os per second. A logical
I/O is the Oracle term for a cache hit in the database buffer cache.
This metric does not indicate if an additional physical I/O was
necessary to load the buffer from disk.txn_rateThe number of database transactions per second.cpu_utilThe CPU utilization of the database server in
percent. This was also measured from within the database.