Search notes:

Oracle: V$OSSTAT

select
   case
     when stat_name in (
        'NUM_CPU_CORES', 'NUM_CPU_SOCKETS', 'BUSY_TIME', 'IDLE_TIME', 'FREE_MEMORY_BYTES',
        'INACTIVE_MEMORY_BYTES') -- Correct?
        then '  '
     when stat_name in ('SYS_TIME', 'USER_TIME') then '    '
   end ||   stat_name,
   lpad(
   case
      when stat_name like '%BYTES' then to_char(value/1024/1024, '999,990' )|| ' mb '
      when stat_name like '%TIME'  then to_char(value/100/60/60, '999,990' )|| ' hrs'
      else to_char(value, '9999999990') || '    '
   end, 15) val_,
   comments,
   cumulative,
   con_id,
   osstat_id
from
   v$osstat
model
   dimension by (stat_name)
   measures (value, comments, cumulative, con_id, osstat_id)
   (
      value   ['TOTAL TIME'] = value['BUSY_TIME'] + value['IDLE_TIME'],
      comments['TOTAL TIME'] = 'Busy time (= user time + sys time) + Idle time'
   )
order by
case
    when stat_name =    'NUM_CPUS'               then   1
    when stat_name =    'NUM_CPU_CORES'          then   2
    when stat_name =    'NUM_CPU_SOCKETS'        then   3
    when stat_name like 'VM%BYTES%'              then  54
    when stat_name like 'AVG%TIME'               then  80
    when stat_name =    'RSRC_MGR_CPU_WAIT_TIME' then  40
    when stat_name =    'TOTAL TIME'             then  21
    when stat_name =    'BUSY_TIME'              then  22
    when stat_name =    'USER_TIME'              then  23
    when stat_name =    'SYS_TIME'               then  24
    when stat_name =    'IDLE_TIME'              then  25
    when stat_name =    'PHYSICAL_MEMORY_BYTES'  then  50
    when stat_name =    'FREE_MEMORY_BYTES'      then  51
    when stat_name =    'INACTIVE_MEMORY_BYTES'  then  52 -- Correct?
    when stat_name =    'SWAP_FREE_BYTES'        then  53
    when stat_name =    'IOWAIT_TIME'            then  60
    when stat_name =    'NICE_TIME'              then  61 -- Correct?
    when stat_name like 'TCP%'                   then  80
    when stat_name =    'LOAD'                   then  90
else 9999 end;
The value for NUM_CPU_CORES is based on the value of cpu cores in /proc/cpuinfo`.

See also

v$filestat, v$iostat_file
The init parameter cpu_count
The cpu.sql script.
Oracle Dynamic Performance Views
The kernel parameters net.core.rmem_max (Global receive size max) and net.core.wmem_max (Global send size max).
AFAICT, it is recommended set these parameters when installing Oracle (see Installing Oracle 21c in a Windows Subsystem for Linux guest).

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:51 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(51): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(66): id_of(Object(PDO), 'uri', '/notes/developm...') #2 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1758201636, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #3 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/installed/dynamic-performance-views/osstat(101): insert_webrequest() #4 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 51