On this Page:
RDK PROC ANALYZER is a tool that helps in analyzing the CPU and memory utilization of the processes that run on top of RDK framework. It helps us in detecting the memory leaks, cpu and memory performance regressions. This tool is implemented as a service and is also highly configurable( Parameters like period , time interval and processes to be monitored can be configured).
RDK PROC ANALYZER supported in RDK-B and RDK-V environment . This is page focus more on RDK-B specific .
By default, it should be in InActive State
root@Filogic-GW:~# systemctl status cpuproc* * cpuprocanalyzer.path - CPU Proc Analyzer Deamon Loaded: loa[ 66.640696] systemd-journald[1055]: Data hash table of /run/log/journal/9850c497841644c9a3fd0d6d25f6e965/system.journal ha. ded (8;;file:/[ 66.662876] systemd-journald[1055]: /run/log/journal/9850c497841644c9a3fd0d6d25f6e965/system.journal: Journal header limits . /Filogic-GW/lib/systemd/system/cpuprocanalyzer.path/lib/systemd/system/cpuprocanalyzer.path8;;; enabled; vendor preset: enabled) Active: active (waiting) since Thu 2022-04-28 17:42:28 UTC; 2 years 6 months ago Until: Thu 2022-04-28 17:42:28 UTC; 2 years 6 months ago Triggers: * cpuprocanalyzer.service 2022 Apr 28 17:42:28 Filogic-GW systemd[1]: Started CPU Proc Analyzer Deamon root@Filogic-GW:~# systemctl status cpuprocanalyzer.service * cpuprocanalyzer.service - CPU Proc Analyzer Deamon Loaded: loaded (8;;file://Filogic-GW/lib/systemd/system/cpuprocanalyzer.service/lib/systemd/system/cpuprocanalyzer.service8;;; disabled;) Active: inactive (dead) TriggeredBy: * cpuprocanalyzer.path root@Filogic-GW:~# |
Dmcli's to configure Procanalyzer:
1. dmcli eRT setv Device.SelfHeal.CPUProcAnalyzer.SleepInterval uint 60
- Interval of time in seconds, for which the tool records the information. DEFAULT VALUE : 60secs
2. dmcli eRT setv Device.SelfHeal.CPUProcAnalyzer.TimeToRun uint 600
- Amount of time, in seconds, the tool runs. DEFAULT VALUE : 600secs
3. dmcli eRT setv Device.SelfHeal.CPUProcAnalyzer.MemoryLimit uint 1536
- To set the maximum memory limit(in KB) for the proc analyzer, since some platform has memory constraints. DEFAULT VALUE : 1.5MB
4. dmcli eRT setv Device.SelfHeal.CPUProcAnalyzer.MonitorAllProcess bool 0
- This flag is set in order to monitor all the processes running in the device. DEFAULT VALUE : 0
Monitor All process = 1 → indicates the tool to monitor all the processes.
Monitor All process = 0 → indicates NOT TO monitor all the processes.
5. dmcli eRT setv Device.SelfHeal.CPUProcAnalyzer.DynamicProcess bool 0
- This is a flag to disable and enable the capturing of dynamic processes, like some scripts or something that runs for a short span.
DEFAULT VALUE : 0
DynamicProcess = 1 -> enable monitoring dynamic process
DynamicProcess = 0 -> disable monitoring dynamic process
6. dmcli eRT setv Device.SelfHeal.CPUProcAnalyzer.ProcessList string CcspLMLite,CcspPandMSsp
- List of Processes that needs to be monitored. If the list of processes is not configured, then only the system level data will get captured.
7. dmcli eRT setv Device.SelfHeal.CPUProcAnalyzer.ProcessStatsToMonitor string cpu,memory,fd,thread
- List of resources that needs to monitored on process level. This also provides flexibility in configuring whatever is required. Any combination is allowed.
Example : If this is set to cpu,fd - then only the cpu usage of the process and the number of File descriptors will get captured.
DEFAULT VALUE : cpu,memory,fd,thread
cpu - cpu usage of a process
memory - memory consumed by a process
fd - Number of file descriptors opened for a process
thread - Number of threads created under a process
8. dmcli eRT setv Device.SelfHeal.CPUProcAnalyzer.SystemStatsToMonitor string cpu,memory,fd,loadavg,cliconnected
- List of resources that needs to monitored on the system level. This also provides flexibility in configuring whatever is needed. Any combination is allowed.
Example : If this is set to cpu,loadavg - then only the cpu usage of the system and the load average of the system will get captured.
DEFAULT VALUE : cpu,memory,fd,loadavg,cliconnected
cpu - cpu usage of the device
memory - memory consumed by the device
fd - Number of file descriptors opened for the entire system
loadavg - Load average of the system
cliconnected - Total number of clients connected to the device
9. dmcli eRT setv Device.SelfHeal.CPUProcAnalyzer.TelemetryOnly bool 0
- Enabling this flag will upload the data captured with a telemetry marker. Data will not be stored in the device. .data file will be empty.
This settings will generate configuration file in Bpi
root@Filogic-GW:~# ls /nvram/proc* /nvram/procanalyzerconfig.ini /nvram/processes.list root@Filogic-GW:~# cat /nvram/procanalyzerconfig.ini FEATURE.CPUPROCANALYZER.DynamicExclusionList = qwcfg_test,sysevent,busybox,syscfg,dmcli FEATURE.CPUPROCANALYZER.SleepInterval = 60 FEATURE.CPUPROCANALYZER.TimeToRun = 600 FEATURE.CPUPROCANALYZER.MemoryLimit = 1536 FEATURE.CPUPROCANALYZER.MonitorAllProcess = 0 FEATURE.CPUPROCANALYZER.DynamicProcess = 0 FEATURE.CPUPROCANALYZER.ProcessStatsToMonitor = cpu,memory,fd,thread FEATURE.CPUPROCANALYZER.SystemStatsToMonitor = cpu,memory,fd,loadavg,cliconnected FEATURE.CPUPROCANALYZER.TelemetryOnly = 0 |
To start cpuprocanalyzer, enable the tr181 with below command
dmcli eRT setv Device.SelfHeal.CPUProcAnalyzer.Enable bool true
root@Filogic-GW:/rdklogs/logs# dmcli eRT getv Device.SelfHeal.CPUProcAnalyzer.Enable CR component name is: eRT.com.cisco.spvtg.ccsp.CR subsystem_prefix eRT. Execution succeed. Parameter 1 name: Device.SelfHeal.CPUProcAnalyzer.Enable type: bool, value: true root@Filogic-GW:/rdklogs/logs# root@Filogic-GW:/rdklogs/logs# root@Filogic-GW:/rdklogs/logs# pidof cpuprocanalyzer 118166 root@Filogic-GW:/rdklogs/logs# root@Filogic-GW:/rdklogs/logs# systemctl status cpuproc* * cpuprocanalyzer.path - CPU Proc Analyzer Deamon Loaded: loaded (8;;file://Filogic-GW/lib/systemd/system/cpuprocanalyzer.path/lib/systemd/system/cpuprocanalyzer.path8;;; enabled; vendor preset: enabled) Active: active (running) since Thu 2022-04-28 17:42:28 UTC; 2 years 5 months ago Until: Thu 2022-04-28 17:42:28 UTC; 2 years 5 months ago Triggers: * cpuprocanalyzer.service 2022 Apr 28 17:42:28 Filogic-GW systemd[1]: Started CPU Proc Analyzer Deamon. * cpuprocanalyzer.service - CPU Proc Analyzer Deamon Loaded: loaded (8;;file://Filogic-GW/lib/systemd/system/cpuprocanalyzer.service/lib/systemd/system/cpuprocanalyzer.service8;;; disabled; vendor preset: disabled) Active: active (running) since Sun 2024-10-13 10:34:38 UTC; 10min ago TriggeredBy: * cpuprocanalyzer.path Main PID: 118166 (cpuprocanalyzer) CGroup: /system.slice/cpuprocanalyzer.service |- 118166 /usr/bin/cpuprocanalyzer |- 283958 /bin/sh /lib/rdk/RunCPUProcAnalyzer.sh stop 1 |- 283998 /bin/sh /rdklogger/uploadRDKBLogs.sh "" HTTP "" false "" /tmp/10-13-24-10-44AM `- 284163 sleep 25 2024 Oct 13 10:44:39 Filogic-GW sh[283968]: tmp/cpuprocanalyzer/4682_CcspPandMSsp/threads/4693_CcspPandMSsp.data 2024 Oct 13 10:44:39 Filogic-GW sh[283968]: tmp/cpuprocanalyzer/4682_CcspPandMSsp/threads/4684_CcspPandMSsp.data 2024 Oct 13 10:44:39 Filogic-GW sh[283968]: tmp/cpuprocanalyzer/4682_CcspPandMSsp/threads/4683_CcspPandMSsp.data 2024 Oct 13 10:44:39 Filogic-GW sh[283968]: tmp/cpuprocanalyzer/4682_CcspPandMSsp/threads.list 2024 Oct 13 10:44:39 Filogic-GW sh[283968]: tmp/cpuprocanalyzer/4682_CcspPandMSsp/4682_CcspPandMSsp.data 2024 Oct 13 10:44:39 Filogic-GW sh[283968]: tmp/cpuprocanalyzer/selectedps.list 2024 Oct 13 10:44:39 Filogic-GW sh[283968]: tmp/cpuprocanalyzer/loadandmem.data 2024 Oct 13 10:44:39 Filogic-GW sh[283968]: tmp/cpuprocanalyzer/deviceinfo.data 2024 Oct 13 10:44:39 Filogic-GW sh[283968]: tmp/cpuprocanalyzer/dynamic/ 2024 Oct 13 10:44:40 Filogic-GW sh[283998]: urn:settings:LogUploadSettings:UploadRepository' is not found in DCMSettings.conf root@Filogic-GW:/rdklogs/logs# |
Report will be generated in below path in Bpi
root@Filogic-GW:/tmp/cpuprocanalyzer# root@Filogic-GW:/tmp/cpuprocanalyzer# root@Filogic-GW:/tmp/cpuprocanalyzer# root@Filogic-GW:/tmp/cpuprocanalyzer# ls 4563_CcspPandMSsp deviceinfo.data dynamic loadandmem.data selectedps.list root@Filogic-GW:/tmp/cpuprocanalyzer# cat deviceinfo.data DEVICE_NAME:rpi BUILD_NAME:rdkb-generic-broadband-image_rdk-next_20241013102832 root@Filogic-GW:/tmp/cpuprocanalyzer# ls dynamic/ root@Filogic-GW:/tmp/cpuprocanalyzer# cat loadandmem.data TimeStamp LoadAvg UsedMem Idle% FDCountSystem ClientCount 2024-10-13 10:33:00 0.52 502784 14.33 576 0 2024-10-13 10:34:00 0.57 504044 12.44 576 0 2024-10-13 10:35:00 0.64 499544 11.46 576 0 2024-10-13 10:36:01 0.44 505296 11.48 576 0 2024-10-13 10:37:01 0.70 505284 11.51 576 1 2024-10-13 10:38:01 0.57 507812 11.54 608 1 2024-10-13 10:39:01 0.91 506280 11.57 544 1 2024-10-13 10:40:01 0.69 508160 11.44 576 1 2024-10-13 10:41:01 0.72 509792 11.47 608 1 2024-10-13 10:42:01 0.69 512640 11.45 576 1 root@Filogic-GW:/tmp/cpuprocanalyzer# root@Filogic-GW:/tmp/cpuprocanalyzer# pidof CcspPandMSsp 4563 root@Filogic-GW:/tmp/cpuprocanalyzer# ls 4563_CcspPandMSsp deviceinfo.data dynamic loadandmem.data selectedps.list root@Filogic-GW:/tmp/cpuprocanalyzer# cd 4563_CcspPandMSsp/ root@Filogic-GW:/tmp/cpuprocanalyzer/4563_CcspPandMSsp# root@Filogic-GW:/tmp/cpuprocanalyzer/4563_CcspPandMSsp# ls 4563_CcspPandMSsp.data threads threads.list root@Filogic-GW:/tmp/cpuprocanalyzer/4563_CcspPandMSsp# root@Filogic-GW:/tmp/cpuprocanalyzer/4563_CcspPandMSsp# root@Filogic-GW:/tmp/cpuprocanalyzer/4563_CcspPandMSsp# cat 4563_CcspPandMSsp.data Command-Line : /usr/bin/CcspPandMSsp -subsys eRT. El-Time TimeStamp CPU% CPU%:U CPU%:S MjrFlts VmSize VmRSS VmStk ThreadCount FDCount 60 2024-10-13 10:34:00 0.30 0.17 0.13 0 1151368 18756 132 14 22 120 2024-10-13 10:35:00 0.28 0.10 0.18 0 1151368 18756 132 14 22 180 2024-10-13 10:36:01 0.27 0.12 0.15 0 1151368 18756 132 14 22 240 2024-10-13 10:37:01 0.25 0.08 0.17 0 1151368 18756 132 14 22 300 2024-10-13 10:38:01 0.27 0.08 0.18 0 1151368 18756 132 14 22 360 2024-10-13 10:39:01 0.28 0.10 0.18 0 1151368 18756 132 14 22 420 2024-10-13 10:40:01 0.30 0.15 0.15 0 1151368 18756 132 14 22 480 2024-10-13 10:41:01 0.32 0.10 0.22 0 1151368 18756 132 14 22 540 2024-10-13 10:42:01 0.28 0.10 0.18 0 1151368 18756 132 14 22 600 2024-10-13 10:43:01 0.32 0.15 0.17 0 1151368 18756 132 14 22 root@Filogic-GW:/tmp/cpuprocanalyzer/4563_CcspPandMSsp# root@Filogic-GW:/tmp/cpuprocanalyzer/4563_CcspPandMSsp# cat threads.list 4563 4564 4565 4578 4643 4735 4749 4751 4757 4759 4760 4762 4769 4798 4799 root@Filogic-GW:/tmp/cpuprocanalyzer/4563_CcspPandMSsp# cd threads root@Filogic-GW:/tmp/cpuprocanalyzer/4563_CcspPandMSsp/threads# ls 4564_CcspPandMSsp.data 4578_CcspPandMSsp.data 4735_CcspPandMSsp.data 4751_CcspPandMSsp.data 4759_CcspPandMSsp.data 4761_CcspPandMSsp.data 4769_CcspPandMSsp.data 4799_CcspPandMSsp.data 4565_CcspPandMSsp.data 4643_CcspPandMSsp.data 4749_CcspPandMSsp.data 4757_CcspPandMSsp.data 4760_CcspPandMSsp.data 4762_CcspPandMSsp.data 4798_CcspPandMSsp.data root@Filogic-GW:/tmp/cpuprocanalyzer/4563_CcspPandMSsp/threads# cat 4564_CcspPandMSsp.data Command-Line : /usr/bin/CcspPandMSsp -subsys eRT. El-Time TimeStamp CPU% CPU%:U CPU%:S MjrFlts VmSize VmRSS VmStk ThreadCount FDCount 60 2024-10-13 10:34:00 0.02 0.02 0.00 0 1151368 18756 132 14 22 120 2024-10-13 10:35:00 0.00 0.00 0.00 0 1151368 18756 132 14 22 180 2024-10-13 10:36:01 0.02 0.02 0.00 0 1151368 18756 132 14 22 240 2024-10-13 10:37:01 0.02 0.00 0.02 0 1151368 18756 132 14 22 300 2024-10-13 10:38:01 0.02 0.00 0.02 0 1151368 18756 132 14 22 360 2024-10-13 10:39:01 0.00 0.00 0.00 0 1151368 18756 132 14 22 420 2024-10-13 10:40:01 0.00 0.00 0.00 0 1151368 18756 132 14 22 480 2024-10-13 10:41:01 0.02 0.00 0.02 0 1151368 18756 132 14 22 540 2024-10-13 10:42:01 0.03 0.02 0.02 0 1151368 18756 132 14 22 600 2024-10-13 10:43:01 0.02 0.02 0.00 0 1151368 18756 132 14 22 root@Filogic-GW:/tmp/cpuprocanalyzer/4563_CcspPandMSsp/threads# ########## LOGS OF CPUPROCANALYZER ########## root@Filogic-GW:/rdklogs/logs# cat CPUPROCANALYZERlog.txt.0 241013-10:35:00.961229 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Mem Limits curr : 80 | prev : 80 | diff : 0 241013-10:35:00.961281 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] SYS MASK NOT NULL, 31 241013-10:35:00.961399 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1880): Idle: 11.46 241013-10:35:00.961489 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1885): Mem: 499544 241013-10:35:00.961535 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1890): FDCountSystem: 576 241013-10:35:00.961572 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1895): Load: 0.64 241013-10:35:00.979944 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Number of Clients connected : 0 241013-10:35:00.980377 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1900): ClientCount: 0 241013-10:35:00.980513 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Read from process list and populate Selected ps file 241013-10:35:00.987336 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Calling LogProcData 241013-10:35:00.991450 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Event : CPA_INFO_CcspPandMSsp, Value : 18756,0.28,22,14 241013-10:35:01.052453 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] MAP erase logic 241013-10:35:01.052480 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4563 241013-10:35:01.052491 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4564 241013-10:35:01.052500 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4565 241013-10:35:01.052509 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4578 241013-10:35:01.052517 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4643 241013-10:35:01.052525 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4735 241013-10:35:01.052533 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4749 241013-10:35:01.052541 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4751 241013-10:35:01.052549 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4757 241013-10:35:01.052556 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4759 241013-10:35:01.052564 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4760 241013-10:35:01.052571 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4761 241013-10:35:01.052579 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4762 241013-10:35:01.052586 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4769 241013-10:35:01.052594 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4798 241013-10:35:01.052602 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4799 241013-10:35:01.052610 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] [3]No. of process monitored : 1 241013-10:35:01.052618 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Check time to run... 241013-10:35:01.052629 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Terminate NOT TRUE, sleep 241013-10:36:01.056211 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Mem Limits curr : 80 | prev : 80 | diff : 0 241013-10:36:01.056255 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] SYS MASK NOT NULL, 31 241013-10:36:01.056367 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1880): Idle: 11.48 241013-10:36:01.056458 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1885): Mem: 505296 241013-10:36:01.056504 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1890): FDCountSystem: 576 241013-10:36:01.056542 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1895): Load: 0.44 241013-10:36:01.077111 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Number of Clients connected : 0 241013-10:36:01.077513 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1900): ClientCount: 0 241013-10:36:01.077645 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Read from process list and populate Selected ps file 241013-10:36:01.084433 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Calling LogProcData 241013-10:36:01.088514 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Event : CPA_INFO_CcspPandMSsp, Value : 18756,0.27,22,14 241013-10:36:01.149788 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] MAP erase logic 241013-10:36:01.149826 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4563 241013-10:36:01.149837 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4564 241013-10:36:01.149847 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4565 241013-10:36:01.149855 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4578 241013-10:36:01.149863 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4643 241013-10:36:01.149871 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4735 241013-10:36:01.149878 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4749 241013-10:36:01.149886 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4751 241013-10:36:01.149894 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4757 241013-10:36:01.149901 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4759 241013-10:36:01.149908 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4760 241013-10:36:01.149916 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4761 241013-10:36:01.149923 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4762 241013-10:36:01.149930 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4769 241013-10:36:01.149938 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4798 241013-10:36:01.149945 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4799 241013-10:36:01.149953 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] [4]No. of process monitored : 1 241013-10:36:01.149960 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Check time to run... 241013-10:36:01.149972 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Terminate NOT TRUE, sleep 241013-10:37:01.153487 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Mem Limits curr : 80 | prev : 80 | diff : 0 241013-10:37:01.153530 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] SYS MASK NOT NULL, 31 241013-10:37:01.153647 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1880): Idle: 11.51 241013-10:37:01.153739 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1885): Mem: 505284 241013-10:37:01.153783 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1890): FDCountSystem: 576 241013-10:37:01.153821 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1895): Load: 0.70 241013-10:37:01.174387 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Number of Clients connected : 1 241013-10:37:01.174764 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1900): ClientCount: 1 241013-10:37:01.174892 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Read from process list and populate Selected ps file 241013-10:37:01.181684 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Calling LogProcData 241013-10:37:01.185832 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Event : CPA_INFO_CcspPandMSsp, Value : 18756,0.25,22,14 241013-10:37:01.247120 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] MAP erase logic 241013-10:37:01.247148 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4563 241013-10:37:01.247159 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4564 241013-10:37:01.247169 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4565 241013-10:37:01.247178 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4578 241013-10:37:01.247186 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4643 241013-10:37:01.247194 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4735 241013-10:37:01.247202 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 474 9 241013-10:37:01.247210 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4751 241013-10:37:01.247217 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4757 241013-10:37:01.247225 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4759 241013-10:37:01.247232 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4760 241013-10:37:01.247249 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4761 241013-10:37:01.247257 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4762 241013-10:37:01.247265 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4769 241013-10:37:01.247272 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4798 241013-10:37:01.247280 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4799 241013-10:37:01.247288 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] [5]No. of process monitored : 1 241013-10:37:01.247295 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Check time to run... 241013-10:37:01.247307 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Terminate NOT TRUE, sleep 241013-10:38:01.250880 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Mem Limits curr : 80 | prev : 80 | diff : 0 241013-10:38:01.250924 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] SYS MASK NOT NULL, 31 241013-10:38:01.251040 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1880): Idle: 11.54 241013-10:38:01.251131 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1885): Mem: 507812 241013-10:38:01.251177 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1890): FDCountSystem: 608 241013-10:38:01.251215 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1895): Load: 0.57 241013-10:38:01.271876 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Number of Clients connected : 1 241013-10:38:01.272277 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1900): ClientCount: 1 241013-10:38:01.272405 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Read from process list and populate Selected ps file 241013-10:38:01.279172 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Calling LogProcData 241013-10:38:01.283281 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Event : CPA_INFO_CcspPandMSsp, Value : 18756,0.27,22,14 241013-10:38:01.343805 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] MAP erase logic 241013-10:38:01.343832 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4563 241013-10:38:01.343843 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4564 241013-10:38:01.343852 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4565 241013-10:38:01.343861 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4578 241013-10:38:01.343869 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4643 241013-10:38:01.343877 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4735 241013-10:38:01.343884 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4749 241013-10:38:01.343892 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4751 241013-10:38:01.343900 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4757 241013-10:38:01.343908 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4759 241013-10:38:01.343915 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4760 241013-10:38:01.343923 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4761 241013-10:38:01.343930 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4762 241013-10:38:01.343938 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4769 241013-10:38:01.343945 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4798 241013-10:38:01.343953 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4799 241013-10:38:01.343961 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] [6]No. of process monitored : 1 241013-10:38:01.343969 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Check time to run... 241013-10:38:01.343981 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Terminate NOT TRUE, sleep 241013-10:39:01.347482 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Mem Limits curr : 80 | prev : 80 | diff : 0 241013-10:39:01.347526 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] SYS MASK NOT NULL, 31 241013-10:39:01.347643 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1880): Idle: 11.57 241013-10:39:01.347734 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1885): Mem: 506280 241013-10:39:01.347788 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1890): FDCountSystem: 544 241013-10:39:01.347826 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1895): Load: 0.91 241013-10:39:01.368488 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Number of Clients connected : 1 241013-10:39:01.368868 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1900): ClientCount: 1 241013-10:39:01.368996 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Read from process list and populate Selected ps file 241013-10:39:01.375683 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Calling LogProcData 241013-10:39:01.379778 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Event : CPA_INFO_CcspPandMSsp, Value : 18756,0.28,22,14 241013-10:39:01.440715 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] MAP erase logic 241013-10:39:01.440743 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4563 241013-10:39:01.440755 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4564 241013-10:39:01.440765 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4565 241013-10:39:01.440773 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4578 241013-10:39:01.440782 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4643 241013-10:39:01.440789 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4735 241013-10:39:01.440798 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4749 241013-10:39:01.440806 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4751 241013-10:39:01.440814 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4757 241013-10:39:01.440822 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4759 241013-10:39:01.440830 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4760 241013-10:39:01.440837 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4761 241013-10:39:01.440845 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4762 241013-10:39:01.440853 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4769 241013-10:39:01.440861 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4798 241013-10:39:01.440868 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4799 241013-10:39:01.440876 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] [7]No. of process monitored : 1 241013-10:39:01.440883 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Check time to run... 241013-10:39:01.440893 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Terminate NOT TRUE, sleep 241013-10:40:01.444448 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Mem Limits curr : 80 | prev : 80 | diff : 0 241013-10:40:01.444492 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] SYS MASK NOT NULL, 31 241013-10:40:01.444609 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1880): Idle: 11.44 241013-10:40:01.444698 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1885): Mem: 508160 241013-10:40:01.444744 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1890): FDCountSystem: 576 241013-10:40:01.444781 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1895): Load: 0.69 241013-10:40:01.464046 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Number of Clients connected : 1 241013-10:40:01.464502 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1900): ClientCount: 1 241013-10:40:01.464646 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Read from process list and populate Selected ps file 241013-10:40:01.471381 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Calling LogProcData 241013-10:40:01.475551 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Event : CPA_INFO_CcspPandMSsp, Value : 18756,0.30,22,14 241013-10:40:01.537032 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] MAP erase logic 241013-10:40:01.537060 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4563 241013-10:40:01.537071 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4564 241013-10:40:01.537081 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4565 241013-10:40:01.537099 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4578 241013-10:40:01.537107 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4643 241013-10:40:01.537115 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4735 241013-10:40:01.537123 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4749 241013-10:40:01.537130 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4751 241013-10:40:01.537138 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4757 241013-10:40:01.537145 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4759 241013-10:40:01.537153 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4760 241013-10:40:01.537160 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4761 241013-10:40:01.537168 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4762 241013-10:40:01.537175 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4769 241013-10:40:01.537182 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4798 241013-10:40:01.537190 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4799 241013-10:40:01.537197 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] [8]No. of process monitored : 1 241013-10:40:01.537205 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Check time to run... 241013-10:40:01.537216 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Terminate NOT TRUE, sleep 241013-10:41:01.540742 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Mem Limits curr : 80 | prev : 80 | diff : 0 241013-10:41:01.540786 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] SYS MASK NOT NULL, 31 241013-10:41:01.540902 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1880): Idle: 11.47 241013-10:41:01.540994 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1885): Mem: 509792 241013-10:41:01.541039 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1890): FDCountSystem: 608 241013-10:41:01.541078 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1895): Load: 0.72 241013-10:41:01.561688 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Number of Clients connected : 1 241013-10:41:01.562055 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1900): ClientCount: 1 241013-10:41:01.562183 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Read from process list and populate Selected ps file 241013-10:41:01.568891 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Calling LogProcData 241013-10:41:01.572989 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Event : CPA_INFO_CcspPandMSsp, Value : 18756,0.32,22,14 241013-10:41:01.633486 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] MAP erase logic 241013-10:41:01.633513 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4563 241013-10:41:01.633524 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4564 241013-10:41:01.633534 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4565 241013-10:41:01.633543 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4578 241013-10:41:01.633551 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4643 241013-10:41:01.633559 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4735 241013-10:41:01.633567 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4749 241013-10:41:01.633574 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4751 241013-10:41:01.633582 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4757 241013-10:41:01.633590 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4759 241013-10:41:01.633597 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4760 241013-10:41:01.633605 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4761 241013-10:41:01.633612 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4762 241013-10:41:01.633620 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4769 241013-10:41:01.633627 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4798 241013-10:41:01.633645 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4799 241013-10:41:01.633653 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] [9]No. of process monitored : 1 241013-10:41:01.633661 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Check time to run... 241013-10:41:01.633673 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Terminate NOT TRUE, sleep 241013-10:42:01.637607 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Mem Limits curr : 80 | prev : 80 | diff : 0 241013-10:42:01.637653 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] SYS MASK NOT NULL, 31 241013-10:42:01.637782 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1880): Idle: 11.45 241013-10:42:01.637884 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1885): Mem: 512640 241013-10:42:01.637934 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1890): FDCountSystem: 576 241013-10:42:01.637974 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1895): Load: 0.69 241013-10:42:01.665445 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Number of Clients connected : 1 241013-10:42:01.666545 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1900): ClientCount: 1 241013-10:42:01.666715 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Read from process list and populate Selected ps file 241013-10:42:01.674542 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Calling LogProcData 241013-10:42:01.679221 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Event : CPA_INFO_CcspPandMSsp, Value : 18756,0.28,22,14 241013-10:42:01.754253 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] MAP erase logic 241013-10:42:01.754287 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4563 241013-10:42:01.754299 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4564 241013-10:42:01.754308 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4565 241013-10:42:01.754317 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4578 241013-10:42:01.754325 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4643 241013-10:42:01.754333 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4735 241013-10:42:01.754340 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4749 241013-10:42:01.754348 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4751 241013-10:42:01.754356 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4757 241013-10:42:01.754364 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4759 241013-10:42:01.754371 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4760 241013-10:42:01.754378 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4761 241013-10:42:01.754386 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4762 241013-10:42:01.754394 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4769 241013-10:42:01.754401 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4798 241013-10:42:01.754409 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4799 241013-10:42:01.754417 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] [10]No. of process monitored : 1 241013-10:42:01.754424 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Check time to run... 241013-10:42:01.754436 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Terminate NOT TRUE, sleep 241013-10:43:01.757884 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Mem Limits curr : 80 | prev : 80 | diff : 0 241013-10:43:01.757930 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] SYS MASK NOT NULL, 31 241013-10:43:01.758057 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1880): Idle: 11.58 241013-10:43:01.758164 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1885): Mem: 513836 241013-10:43:01.758220 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1890): FDCountSystem: 640 241013-10:43:01.758393 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1895): Load: 0.72 241013-10:43:01.787981 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Number of Clients connected : 1 241013-10:43:01.788450 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] main(1900): ClientCount: 1 241013-10:43:01.788593 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Read from process list and populate Selected ps file 241013-10:43:01.796336 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Calling LogProcData 241013-10:43:01.800601 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Event : CPA_INFO_CcspPandMSsp, Value : 18756,0.32,22,14 241013-10:43:01.885772 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] MAP erase logic 241013-10:43:01.885803 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4563 241013-10:43:01.885814 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4564 241013-10:43:01.885825 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4565 241013-10:43:01.885833 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4578 241013-10:43:01.885841 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4643 241013-10:43:01.885849 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4735 241013-10:43:01.885857 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4749 241013-10:43:01.885866 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4751 241013-10:43:01.885874 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4757 241013-10:43:01.885882 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4759 241013-10:43:01.885889 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4760 241013-10:43:01.885897 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4761 241013-10:43:01.885905 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4762 241013-10:43:01.885913 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4769 241013-10:43:01.885921 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4798 241013-10:43:01.885928 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Set status to 0, PID = 4799 241013-10:43:01.885936 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] [11]No. of process monitored : 1 241013-10:43:01.885944 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Check time to run... 241013-10:43:01.885956 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Time elapsed, Terminate = true 241013-10:43:01.885964 [mod=CPUPROCANALYZER, lvl=INFO] [tid=85739] Triggering RunCPUProcAnalyzer.sh stop... root@Filogic-GW:/rdklogs/logs# root@Filogic-GW:/rdklogs/logs# ######## END OF LOG FILE ############ |