This article describes how to check number of NSPPEs running on Netscaler
stat cpu
. This CLI command will provide NSPPE CPU statistics, including information about the active NSPPEs.
> stat cpu CPU statistics ID Usage 3 1 2 1 1 1 DoneOption 2:sysctl Command on FreeBSD Shell
`
sysctl -a | grep num_pe_running`
command to retrieve the number of active NSPPEs.
> shell root@ns# sysctl -a | grep num_pe_running netscaler.num_pe_running: 3Option 3: top Command on FreeBSD Shell
top
command. By running this command, you can gather details regarding the NSPPEs and ascertain the exact number of NSPPEs currently running.
root@ns# top PID USERNAME PRI NICE SIZE RES STATE C TIME WCPU COMMAND 460 root 103 0 1221M 1222M CPU2 2 39:29 99.11% NSPPE-01 459 root 103 0 1222M 1222M CPU1 1 39:29 99.11% NSPPE-00 458 root 103 0 1221M 1222M CPU3 3 39:29 99.11% NSPPE-02