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_STARTThe total number of processes started in this time summary.
OSSS_PROC_SUMThe total number of processes running in this time summary.

Expressions

OracleSQL ServerExpression

...

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.

...

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.0Server 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.0Server virtual memory utilization

...

in percentage from total server virtual memory

...

.
(sum(OSSS_USER_CPU_

...

SUM / OSSS_NUM_CPUS) / (sum(OSSS_SLICES_SUM)

...

 * 900.0)) * 100.0(sum(OSSS_USER_CPU_

...

SUM / OSSS_NUM_CPUS) / (sum(OSSS_SLICES_SUM)

...

 * 900.0)) * 100.0Server

...

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.0Server

...

system CPU utilization

...

in percentage from total available processor power

...

.
(sum(OSSS_WAIT_CPU_

...

SUM / OSSS_NUM_CPUS) / (sum(OSSS_SLICES_SUM)

...

 * 900.0)) * 100.0(sum(OSSS_WAIT_CPU_

...

SUM / OSSS_NUM_CPUS) / (sum(OSSS_SLICES_SUM)

...

 * 900.0)) * 100.0Server

...

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.0Server

...

other CPU utilization

...

in percentage from total available processor power

...

.
Sum of above four expressionsSum of above four expressionsTotal

...

server CPU utilization

...

in percentage from total available processor power

...

.
(sum(OSSS_IO_SUM) *

...

 1024.

...

* 1024.0) / (sum(OSSS_SLICES_SUM)

...

 * 900.0)(sum(OSSS_IO_SUM) *

...

 1024.

...

* 1024.0) / (sum(OSSS_SLICES_SUM)

...

 * 900.0)Server

...

IO throughput,

...

specific as

...

IO 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.

...

(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.

PW_OSPS_PROC_STATISTICS_T

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

Column NameColumn Description
OSPS_TIMESTAMPThe time summary.
OSPS_PWHG_IDThe hour group ID.
OSPS_PWII_INSTANCE_IDThe ID of the instance running the OS process.
OSPS_NUM_CPUSThe number of processors on the server.
OSPS_USERThe ID of the user running the OS process.
OSPS_PROGRAMThe ID of the program running the OS process.
OSPS_PATHThe ID of the command (program with arguments) running the OS process.
OSPS_PIDThe ID of the OS process.
OSPS_PID_TIMESTAMPThe creation time of the OS process.
OSPS_WORK_TYPE0, null = general; 90 = Citrix.
OSPS_PUB_APPThe ID of the Citrix application running the OS process.
OSPS_APP_USERThe ID of the Citrix user running the OS process.
OSPS_CONSUMER_IPThe ID of the Citrix client IP running the OS process.
OSPS_CONSUMER_IP_GIDThe ID of the Citrix location running the OS process.
OSPS_CONSUMERThe ID of the Citrix client running the OS process.
OSPS_USER_CPU_SUM

The 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.

OSPS_SYS_CPU_SUM

The 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.

OSPS_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.
OSPS_OTHER_CPU_SUMThe miscellaneous non-idle processor time, specified in seconds.
OSPS_SWITCH_SUMThe combined rate at which all processors on the server are switched from one thread to another.
OSPS_THREADS_SUMThe average number of threads active for one process.
OSPS_IO_SUMThe total OS I/O consumption on the server, specified in

...

megabytes.
OSPS_PHY_MEM_SUMThe physical memory consumption, specified in

...

megabytes.
OSPS_VIR_MEM_SUMThe virtual memory consumption, specified in

...

megabytes.
OSPS_PAGING_SUMThe total OS paging on the server.

...

OSPS_LOAD_SUMThe total server load.
OSPS_PROC_START_SUMThe total number of processes started in this time summary.
OSPS_PROC_SUMThe total number of processes running in this time summary.

PW_OSLS_LCPU_STATISTICS_T

The OS statistics for the logical processor summarized by each aggregated invocation.

Column NameColumn Description
OSLS_TIMESTAMPThe time summary.
OSLS_PWHG_IDThe hour group ID.
OSLS_PWII_INSTANCE_IDThe ID of the instance running the OS process.
OSLS_SLICES_SUMThe number of 15-minute slices in the time summary that data was reported by the OS agent for this instance.
OSLS_LOGICAL_CPUThe processor ID (if it is on a virtual server, then we talk about the logical processor).
OSLS_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.
OSLS_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.
OSLS_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.
OSLS_OTHER_CPU_SUMThe miscellaneous non-idle processor time, specified in seconds.

Expressions

OracleSQL ServerExpression

...

Description
(sum(OSLS_USER_CPU_

...

SUM / OSLS_NUM_CPUS) / (sum(OSLS_SLICES_SUM)

...

* 900.0

...

* 100.0(sum(OSLS_USER_CPU_

...

SUM / OSLS_NUM_CPUS) / (sum(OSLS_SLICES_SUM)

...

* 900.0

...

* 100.0User

...

SPU utilization for logical processor

...

, in percentage from total available processor power

...

.

...

(sum(OSLS_SYS_CPU_SUM

...

/ OSLS_NUM_CPUS) / (sum(OSLS_SLICES_SUM)

...

* 900.0

...

* 100.0(sum(OSLS_SYS_CPU_SUM

...

/ OSLS_NUM_CPUS) / (sum(OSLS_SLICES_SUM)

...

* 900.0

...

* 100.0System CPU utilization for logical processor

...

, in percentage from total available processor power

...

.
(sum(OSLS_WAIT_CPU_

...

SUM / OSLS_NUM_CPUS) / (sum(OSLS_SLICES_SUM)

...

* 900.0

...

* 100.0(sum(OSLS_WAIT_CPU_

...

SUM / OSLS_NUM_CPUS) / (sum(OSLS_SLICES_SUM)

...

* 900.0

...

* 100.0Wait IO CPU utilization for logical processor

...

, in percentage from total available processor power

...

.
(sum(OSLS_OTHER_CPU_

...

SUM / OSLS_NUM_CPUS) / (sum(OSLS_SLICES_SUM)

...

* 900.0

...

* 100.0(sum(OSLS_OTHER_CPU_

...

SUM / OSLS_NUM_CPUS) / (sum(OSLS_SLICES_SUM)

...

* 900.0

...

* 100.0Other CPU utilization for logical processor

...

, in percentage from total available processor power

...

.
Sum of above four expressionsSum of above four expressionsTotal CPU utilization for logical processor

...

, in percentage from total available processor power

...

.

PW_OSLN_LCPU_N

The process statistics logical processor normalization table.

Column NameColumn Description
OSLN_IDThe ID of the logical processor.
OSLN_STRING_VALUEThe name of the logical processor.

PW_OSCS_CITRIX_STATISTICS_T

The Citrix performance counters summarized by each aggregated invocation.

Column NameColumn Description
OSCS_TIMESTAMPThe time summary.
OSCS_PWHG_IDThe hour group ID.
OSCS_PWII_INSTANCE_IDThe ID of the instance running the OS process.
OSCS_PUB_APPThe ID of the Citrix application running the OS process.
OSCS_APP_USERThe ID of the Citrix user running the OS process.
OSCS_CONSUMER_IPThe ID of the Citrix client IP running the OS process.
OSCS_CONSUMER_IP_GIDThe ID of the Citrix location running the OS process.
OSCS_CONSUMERThe ID of the Citrix client running the OS process.
OSCS_SESSIONS_SUMThe number of Citrix sessions.
OSCS_CLIENT_LAT_SUMThe Citrix client average latency.

Expressions

OracleSQL ServerExpression

...

Description
sum(OSCS_CLIENT_LAT_

...

SUM / OSCS_SESSIONS_SUM)sum(OSCS_CLIENT_LAT_

...

SUM / OSCS_SESSIONS_SUM)Average client latency per Citrix session.
Scroll Ignore
scroll-pdftrue
scroll-officetrue
scroll-chmtrue
scroll-docbooktrue
scroll-eclipsehelptrue
scroll-epubtrue
scroll-htmltrue
Newtabfooter
aliasIDERA
urlhttp://www.idera.com
 | 
Newtabfooter
aliasProducts
urlhttps://www.idera.com/productssolutions/sqlserver
 
Newtabfooter
aliasPurchase
urlhttps://www.idera.com/buynow/onlinestore
 | 
Newtabfooter
aliasSupport
urlhttps://idera.secure.force.com/precise/
 | 
Newtabfooter
aliasCommunity
urlhttp://community.idera.com
 
|
 
Newtabfooter
aliasResources
urlhttp://www.idera.com/resourcecentral
 | 
Newtabfooter
aliasAbout Us
urlhttp://www.idera.com/about/aboutus
 
Newtabfooter
aliasLegal
urlhttps://www.idera.com/legal/termsofuse