Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The server-level OS statistics summarized by each aggregated invocation.

Column NameColumn Description
OSSS_TIMESTAMPThe time summary.
OSSS_PWHG_IDThe hour group ID.
OSSS_SLICES_SUMThe number of 15-minute slices in the time summary that data was reported by the OS agent for this instance.
OSSS_PWII_INSTANCE_IDThe ID of the OS server instance.
OSSS_NUM_CPUSThe number of processors on the server.
OSSS_TOT_PHY_MEMInstalled physical memory on the server, specified in

...

megabytes.
OSSS_TOT_VIR_MEMThe virtual memory configured for the server (physical memory and paging file), specified in

...

megabytes.
OSSS_USER_CPU_SUMThe non-idle processor time spent in user mode, specified in seconds. The user mode is a restricted processing mode designed for applications, environment subsystems, and integral subsystems.
OSSS_SYS_CPU_SUMThe non-idle processor time spent in privileged mode, specified in seconds. The privileged mode is designed for operating system components and allows direct access to hardware and all memory.
OSSS_WAIT_CPU_SUMThe amount of time that the processor was idle during which the system had an outstanding disk I/O request, specified in seconds.
OSSS_OTHER_CPU_SUMThe miscellaneous non-idle processor time, specified in seconds.
OSSS_SWITCH_SUMThe combined rate at which all processors on the server are switched from one thread to another.
OSSS_IO_SUMThe total OS I/O consumption on the server, specified in

...

megabytes.
OSSS_PHY_MEM_SUMThe physical memory consumption, specified in

...

megabytes.
OSSS_VIR_MEM_SUMThe virtual memory consumption, specified in

...

megabytes.
OSSS_PAGING_SUMThe total OS paging on the server.
OSSS_LOAD_SUMThe total server load.
OSSS_PROC_START

...

The total number of processes started in this time summary.
OSSS_PROC_SUMThe total number of processes running in this time summary.

Expressions

Oracle SQL Server Expression description
sum(OSSS_LOAD_SUM) /
sum(OSSS_SLICES_SUM) sum(OSSS_LOAD_SUM) /
sum(OSSS_SLICES_SUM) Average server load for a given time range.
Oracle SQL Server Expression description
sum(OSSS_PHY_MEM_SUM)
* 1024.0 * 1024.0 /
sum(OSSS_SLICES_SUM) sum(OSSS_PHY_MEM_SUM)
* 1024.0 * 1024.0 /
sum(OSSS_SLICES_SUM) Server physical memory consumption.
sum(OSSS_VIR_MEM_SUM)
* 1024.0 * 1024.0 /
sum(OSSS_SLICES_SUM) sum(OSSS_VIR_MEM_SUM)
* 1024.0 * 1024.0 /
sum(OSSS_SLICES_SUM) Server virtual memory consumption.
(sum(OSSS_PHY_MEM_SUM
/ OSSS_TOT_PHY_MEM) /
sum(OSSS_SLICES_SUM))
* 100.0 (sum(OSSS_PHY_MEM_SUM
/ OSSS_TOT_PHY_MEM) /
sum(OSSS_SLICES_SUM))
* 100.0 Server physical memory utilization (in percentage from total server physical memory).
(sum(OSSS_VIR_MEM_SUM
/ OSSS_TOT_VIR_MEM) /
sum(OSSS_SLICES_SUM))
* 100.0 (sum(OSSS_VIR_MEM_SUM
/ OSSS_TOT_VIR_MEM) /
sum(OSSS_SLICES_SUM))
* 100.0 Server virtual memory utilization (in percentage from total server virtual memory).
(sum(OSSS_USER_CPU_SU M / OSSS_NUM_CPUS) / (sum(OSSS_SLICES_SUM)
*900.0)) * 100.0 (sum(OSSS_USER_CPU_SU M / OSSS_NUM_CPUS) / (sum(OSSS_SLICES_SUM)
*900.0)) * 100.0 Server User CPU utilization (in percentage from total available processor power).
(sum(OSSS_SYS_CPU_SUM
/ OSSS_NUM_CPUS) / (sum(OSSS_SLICES_SUM)
*900.0)) * 100.0 (sum(OSSS_SYS_CPU_SUM
/ OSSS_NUM_CPUS) / (sum(OSSS_SLICES_SUM)
*900.0)) * 100.0 Server System CPU utilization (in percentage from total available processor power).
(sum(OSSS_WAIT_CPU_SU M / OSSS_NUM_CPUS) / (sum(OSSS_SLICES_SUM)
*900.0)) * 100.0 (sum(OSSS_WAIT_CPU_SU M / OSSS_NUM_CPUS) / (sum(OSSS_SLICES_SUM)
*900.0)) * 100.0 Server Wait IO CPU utilization (in percentage from total available processor power).
(sum(OSSS_OTHER_CPU_S UM / OSSS_NUM_CPUS) / (sum(OSSS_SLICES_SUM)
*900.0)) * 100.0 (sum(OSSS_OTHER_CPU_S UM / OSSS_NUM_CPUS) / (sum(OSSS_SLICES_SUM)
*900.0)) * 100.0 Server Other CPU utilization (in percentage from total available processor power).
Sum of above four expressions Sum of above four expressions Total Server CPU utilization (in percentage from total available processor power).
(sum(OSSS_IO_SUM) *
1024.0 * 1024.0) / (sum(OSSS_SLICES_SUM)
*900.0) (sum(OSSS_IO_SUM) *
1024.0 * 1024.0) / (sum(OSSS_SLICES_SUM)
*900.0) Server I/O throughput, specified as I/O bytes per second.
(sum(OSSS_PAGING_SUM)
* 1024.0 * 1024.0) / (sum(OSSS_SLICES_SUM)
*900.0) (sum(OSSS_PAGING_SUM)
* 1024.0 * 1024.0) / (sum(OSSS_SLICES_SUM)
*900.0) Server Page faults rate, specified as paging per second.
Oracle SQL Server Expression description
(sum(OSSS_SWITCH_SUM)
* 1024.0 * 1024.0) / (sum(OSSS_SLICES_SUM)
*900.0) (sum(OSSS_ SWITCH
_SUM) * 1024.0 *
1024.0) / (sum(OSSS_SLICES_SUM)
*900.0) Server Context Switches rate, specified as Context
Switches per second.

...