DEV Community

OEL Linux iperf3 for Network Latency Monitoring

{ Abhilash Kumar Bhattaram : Follow on LinkedIn }

OEL Linux has built in network monitoring tool to monitor latency ,
I found this tool very useful and handy while working on Om Prem to cloud migrations to understand the network throughput.

The official Oracle Linux Documentation for iperf3 is here
https://docs.oracle.com/en-us/iaas/Content/Network/Concepts/networkperformance.htm

In case iperf3 is not installed in your OEL , the below can be used , it basically runs on 5201 TCP ports

sudo yum install -y iperf3
Enter fullscreen mode Exit fullscreen mode

Oracle recommends the use of iPerf3, an industry-standard network testing utility, to measure throughput between compute instances within OCI. By establishing a client-server connection between two Linux hosts, administrators can accurately benchmark available bandwidth, identify network constraints, and validate that their infrastructure is delivering the expected performance levels. Oracle’s network performance methodology uses iPerf3 to measure throughput between instances and compare the results against OCI’s documented network capabilities and service-level objectives.

iperf3 as a server mode

If you would like to collect network performance metrics on the server side , the following can be user

[root@instance-20260614-1905 ~]# iperf3 -s
-----------------------------------------------------------
Server listening on 5201 (test #1)
-----------------------------------------------------------
Accepted connection from 10.10.3.88, port 56520
[  5] local 10.10.3.88 port 5201 connected to 10.10.3.88 port 56528
[ ID] Interval           Transfer     Bitrate
[  5]   0.00-1.00   sec  7.40 GBytes  63.4 Gbits/sec                  
[  5]   1.00-2.00   sec  7.48 GBytes  64.3 Gbits/sec                  
[  5]   2.00-3.00   sec  7.88 GBytes  67.7 Gbits/sec                  
[  5]   3.00-4.00   sec  7.86 GBytes  67.5 Gbits/sec                  
[  5]   4.00-5.00   sec  7.77 GBytes  66.6 Gbits/sec                  
[  5]   5.00-6.00   sec  7.40 GBytes  63.7 Gbits/sec                  
[  5]   6.00-7.00   sec  7.03 GBytes  60.3 Gbits/sec                  
[  5]   7.00-8.00   sec  7.87 GBytes  67.7 Gbits/sec                  
[  5]   8.00-9.00   sec  7.95 GBytes  68.3 Gbits/sec                  
[  5]   9.00-10.00  sec  7.89 GBytes  67.9 Gbits/sec                  
[  5]  10.00-10.00  sec  8.38 MBytes  53.0 Gbits/sec                  
- - - - - - - - - - - - - - - - - - - - - - - - -
[ ID] Interval           Transfer     Bitrate
[  5]   0.00-10.00  sec  76.5 GBytes  65.7 Gbits/sec                  receiver
-----------------------------------------------------------
Server listening on 5201 (test #2)
-----------------------------------------------------------
Enter fullscreen mode Exit fullscreen mode

iperf3 for remote host network monitoring

I found the remote betwork monitoring very useful while data is in transit

Syntax :

iperf3 -c <your remote IP>
Enter fullscreen mode Exit fullscreen mode

Example :

[opc@instance-20260614-1905 ~]$ iperf3 -c 10.10.3.88
Connecting to host 10.10.3.88, port 5201
[  5] local 10.10.3.88 port 56528 connected to 10.10.3.88 port 5201
[ ID] Interval           Transfer     Bitrate         Retr  Cwnd
[  5]   0.00-1.00   sec  7.40 GBytes  63.4 Gbits/sec   54   2.69 MBytes       
[  5]   1.00-2.00   sec  7.48 GBytes  64.3 Gbits/sec   32   2.81 MBytes       
[  5]   2.00-3.00   sec  7.88 GBytes  67.7 Gbits/sec   18   2.81 MBytes       
[  5]   3.00-4.00   sec  7.86 GBytes  67.5 Gbits/sec    4   2.81 MBytes       
[  5]   4.00-5.00   sec  7.76 GBytes  66.7 Gbits/sec   19   2.12 MBytes       
[  5]   5.00-6.00   sec  6.92 GBytes  59.4 Gbits/sec   18   1.69 MBytes       
[  5]   6.00-7.00   sec  7.01 GBytes  60.3 Gbits/sec   90   2.12 MBytes       
[  5]   7.00-8.00   sec  7.66 GBytes  65.6 Gbits/sec    5   2.25 MBytes       
[  5]   8.00-9.00   sec  7.93 GBytes  68.3 Gbits/sec    0   2.25 MBytes       
[  5]   9.00-10.00  sec  7.81 GBytes  67.0 Gbits/sec    3   2.00 MBytes       
- - - - - - - - - - - - - - - - - - - - - - - - -
[ ID] Interval           Transfer     Bitrate         Retr
[  5]   0.00-10.00  sec  76.5 GBytes  65.7 Gbits/sec  243             sender
[  5]   0.00-10.00  sec  76.5 GBytes  65.7 Gbits/sec                  receiver

iperf Done.
[opc@instance-20260614-1905 ~]$ 

Enter fullscreen mode Exit fullscreen mode

perf-check.py - Advanced Usage with MOS (My Oracle Support)

iperf3 is one the most regularly used commands Oracle Support uses for troubleshooting , there is also an advance version of it in the
forrm of pythin scripts for its usage.

https://docs.oracle.com/iaas/Content/Resources/Assets/perf-check.zip

root@instance-20260614-1905 script]# python perf-check.py --help
/root/scripts/script/perf-check.py:244: SyntaxWarning: invalid escape sequence '\.'
  version_regex = re.search("[0-9]\.[0-9]\.[0-9]", iperf_version)
usage: perf-check.py [-h] [--bind ADDRESS] [--output-file FILE] [--iperf IPERF] [--include-metadata] {client,server} ...

OCI Network Performance Analyzer

This tool assists with gathering network performance measurements
between OCI instances by running 'iperf' captures.  Run the tool
on two instances (i.e. 'client' and 'server') to perform a capture.

The 'iperf3' tool must be installed and tcp/udp port 5201 must be open.

positional arguments:
  {client,server}
    client            Start performance test in client mode
    server            Start performance test in server mode

options:
  -h, --help          show this help message and exit
  --bind ADDRESS      Bind test to given host address
  --output-file FILE  Archive to store test results
  --iperf IPERF       Path to iperf executable
  --include-metadata  Collect system metadata

To perform a capture:
Start the tool in 'server' mode:
    perf-check.py server
On another OCI instance. Start a 'client':
    perf-check.py client <server address>
Provide generated capture archives to OCI Support upon completion.
    Defaults: perf-results-client.tar.gz, perf-results-server.tar.gz
[root@instance-20260614-1905 script]# 

Enter fullscreen mode Exit fullscreen mode

perf-check.py - Server Mode

[root@instance-20260614-1905 script]# python perf-check.py server
/root/scripts/script/perf-check.py:244: SyntaxWarning: invalid escape sequence '\.'
  version_regex = re.search("[0-9]\.[0-9]\.[0-9]", iperf_version)
Running test in server mode...
/root/scripts/script/perf-check.py:246: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead.
  curr_ver = LooseVersion(version_regex.group(0))
/root/scripts/script/perf-check.py:247: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead.
  min_ver = LooseVersion("3.3.0")

###############################################################
Installed iperf version (1.7.1) is lower than recommended (3.3.0)

UDP test results may be unreliable
###############################################################

Beginning iperf TCP test...

TCP Performance Results:
iperf 3.17.1
Linux instance-20260614-1905 6.12.0-203.76.7.3.el10uek.x86_64 #2 SMP PREEMPT_DYNAMIC Fri Jun  5 00:17:00 PDT 2026 x86_64



Beginning iperf UDP test...

UDP Performance Results:
iperf 3.17.1
Linux instance-20260614-1905 6.12.0-203.76.7.3.el10uek.x86_64 #2 SMP PREEMPT_DYNAMIC Fri Jun  5 00:17:00 PDT 2026 x86_64



Performance test completed.  Please provide the 'perf-results-server.tar.gz' archive to Oracle Support.

Enter fullscreen mode Exit fullscreen mode

perf-check.py - Client Mode - Probably the most useful usecase for this tool

[root@instance-20260614-1905 script]# python perf-check.py client 10.10.3.88
/root/scripts/script/perf-check.py:244: SyntaxWarning: invalid escape sequence '\.'
  version_regex = re.search("[0-9]\.[0-9]\.[0-9]", iperf_version)
Running test in client mode...
/root/scripts/script/perf-check.py:246: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead.
  curr_ver = LooseVersion(version_regex.group(0))
/root/scripts/script/perf-check.py:247: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead.
  min_ver = LooseVersion("3.3.0")

###############################################################
Installed iperf version (1.7.1) is lower than recommended (3.3.0)

UDP test results may be unreliable
###############################################################

Beginning TCP performance test...


TCP performance results:
iperf 3.17.1
Linux instance-20260614-1905 6.12.0-203.76.7.3.el10uek.x86_64 #2 SMP PREEMPT_DYNAMIC Fri Jun  5 00:17:00 PDT 2026 x86_64
Control connection MSS 32768
Time: Mon, 15 Jun 2026 07:31:51 GMT
Connecting to host 10.10.3.88, port 5201
      Cookie: cnedljaqiiih7ldlv3hfe46nlazengnyxo2a
      TCP MSS: 32768 (default)
[  5] local 10.10.3.88 port 51720 connected to 10.10.3.88 port 5201
Starting Test: protocol: TCP, 1 streams, 131072 byte blocks, omitting 0 seconds, 10 second test, tos 0
[ ID] Interval           Transfer     Bitrate         Retr  Cwnd
[  5]   0.00-1.00   sec  7.10 GBytes  60.9 Gbits/sec   11   2.06 MBytes       
[  5]   1.00-2.00   sec  6.89 GBytes  59.1 Gbits/sec   73   2.44 MBytes       
[  5]   2.00-3.00   sec  7.41 GBytes  63.7 Gbits/sec    8   2.87 MBytes       
[  5]   3.00-4.00   sec  7.79 GBytes  67.0 Gbits/sec    6   2.12 MBytes       
[  5]   4.00-5.00   sec  7.87 GBytes  67.6 Gbits/sec    0   2.12 MBytes       
[  5]   5.00-6.00   sec  7.88 GBytes  67.7 Gbits/sec    0   2.37 MBytes       
[  5]   6.00-7.00   sec  7.00 GBytes  60.1 Gbits/sec    5   2.94 MBytes       
[  5]   7.00-8.00   sec  7.83 GBytes  67.3 Gbits/sec    0   3.25 MBytes       
[  5]   8.00-9.00   sec  7.95 GBytes  68.3 Gbits/sec    0   3.37 MBytes       
[  5]   9.00-10.00  sec  7.83 GBytes  67.2 Gbits/sec    0   3.37 MBytes       
- - - - - - - - - - - - - - - - - - - - - - - - -
Test Complete. Summary Results:
[ ID] Interval           Transfer     Bitrate         Retr
[  5]   0.00-10.00  sec  76.5 GBytes  65.7 Gbits/sec  103             sender
[  5]   0.00-10.00  sec  76.5 GBytes  65.7 Gbits/sec                  receiver
CPU Utilization: local/sender 78.9% (1.0%u/77.9%s), remote/receiver 74.9% (1.9%u/73.0%s)
snd_tcp_congestion cubic
rcv_tcp_congestion cubic

iperf Done.



Beginning UDP performance test...

UDP performance results:
iperf 3.17.1
Linux instance-20260614-1905 6.12.0-203.76.7.3.el10uek.x86_64 #2 SMP PREEMPT_DYNAMIC Fri Jun  5 00:17:00 PDT 2026 x86_64
Control connection MSS 32768
Setting UDP block size to 32768
Time: Mon, 15 Jun 2026 07:32:07 GMT
Connecting to host 10.10.3.88, port 5201
      Cookie: o6e2xygr3e3w2aee5v4m6k2oq7rjmvqb7jgf
      Target Bitrate: 2000000000
[  5] local 10.10.3.88 port 53831 connected to 10.10.3.88 port 5201
Starting Test: protocol: UDP, 1 streams, 32768 byte blocks, omitting 0 seconds, 10 second test, tos 0
[ ID] Interval           Transfer     Bitrate         Total Datagrams
[  5]   0.00-1.00   sec   238 MBytes  2.00 Gbits/sec  7623  
[  5]   1.00-2.00   sec   238 MBytes  2.00 Gbits/sec  7623  
[  5]   2.00-3.00   sec   239 MBytes  2.00 Gbits/sec  7636  
[  5]   3.00-4.00   sec   238 MBytes  2.00 Gbits/sec  7629  
[  5]   4.00-5.00   sec   238 MBytes  2.00 Gbits/sec  7630  
[  5]   5.00-6.00   sec   238 MBytes  2.00 Gbits/sec  7629  
[  5]   6.00-7.00   sec   238 MBytes  2.00 Gbits/sec  7629  
[  5]   7.00-8.00   sec   238 MBytes  2.00 Gbits/sec  7630  
[  5]   8.00-9.00   sec   238 MBytes  2.00 Gbits/sec  7629  
[  5]   9.00-10.00  sec   238 MBytes  2.00 Gbits/sec  7630  
- - - - - - - - - - - - - - - - - - - - - - - - -
Test Complete. Summary Results:
[ ID] Interval           Transfer     Bitrate         Jitter    Lost/Total Datagrams
[  5]   0.00-10.00  sec  2.33 GBytes  2.00 Gbits/sec  0.000 ms  0/76288 (0%)  sender
[  5]   0.00-10.00  sec  2.07 GBytes  1.78 Gbits/sec  0.041 ms  8373/76288 (11%)  receiver
CPU Utilization: local/sender 95.5% (94.3%u/1.2%s), remote/receiver 41.9% (7.4%u/34.6%s)

iperf Done.



Performance test completed.  Please provide the 'perf-results-client.tar.gz' archive to Oracle Support.
[root@instance-20260614-1905 script]# 


Enter fullscreen mode Exit fullscreen mode

perf-check.py - Logs

You could see the logs generated as below

[root@instance-20260614-1905 script]# ls -l
total 32
-rw-r--r--. 1 root root  1828 Jun 14  2021 LICENSE.txt
-rwxr-xr-x. 1 root root 14296 Jun 14  2021 perf-check.py
-rw-r--r--. 1 root root  5497 Jun 15 07:32 perf-results-client.tar.gz
-rw-r--r--. 1 root root  3820 Jun 15 07:31 perf-results-server.tar.gz
[root@instance-20260614-1905 script]# 
Enter fullscreen mode Exit fullscreen mode

Understanding perf-check.py client metrics

A typical example of perf-check.py client metrics is shown below , this super useful for understanding latency asssociated with TCP / UDP.

[root@instance-20260614-1905 perf-results-client]# ls -l
total 84
-rw-r--r--. 1 root root  1797 Jun 15 07:32 iperf3_tcp.out
-rw-r--r--. 1 root root  1651 Jun 15 07:32 iperf3_udp.out
-rw-r--r--. 1 root root   368 Jun 15 07:31 iperf3_version.out
-rw-r--r--. 1 root root   432 Jun 15 07:31 ping.out
-rw-r--r--. 1 root root 15475 Jun 15 07:32 top_posttcp.out
-rw-r--r--. 1 root root 15475 Jun 15 07:32 top_postudp.out
-rw-r--r--. 1 root root 15475 Jun 15 07:31 top_pretcp.out
-rw-r--r--. 1 root root 15475 Jun 15 07:32 top_preudp.out
-rw-r--r--. 1 root root   139 Jun 15 07:32 tracepath.out
Enter fullscreen mode Exit fullscreen mode


plaintext

An example of all perf-results-client is below , this is what typically MOS support logs would need to troubleshoot.

[root@instance-20260614-1905 perf-results-client]# cat *.out
iperf 3.17.1
Linux instance-20260614-1905 6.12.0-203.76.7.3.el10uek.x86_64 #2 SMP PREEMPT_DYNAMIC Fri Jun  5 00:17:00 PDT 2026 x86_64
Control connection MSS 32768
Time: Mon, 15 Jun 2026 07:31:51 GMT
Connecting to host 10.10.3.88, port 5201
      Cookie: cnedljaqiiih7ldlv3hfe46nlazengnyxo2a
      TCP MSS: 32768 (default)
[  5] local 10.10.3.88 port 51720 connected to 10.10.3.88 port 5201
Starting Test: protocol: TCP, 1 streams, 131072 byte blocks, omitting 0 seconds, 10 second test, tos 0
[ ID] Interval           Transfer     Bitrate         Retr  Cwnd
[  5]   0.00-1.00   sec  7.10 GBytes  60.9 Gbits/sec   11   2.06 MBytes       
[  5]   1.00-2.00   sec  6.89 GBytes  59.1 Gbits/sec   73   2.44 MBytes       
[  5]   2.00-3.00   sec  7.41 GBytes  63.7 Gbits/sec    8   2.87 MBytes       
[  5]   3.00-4.00   sec  7.79 GBytes  67.0 Gbits/sec    6   2.12 MBytes       
[  5]   4.00-5.00   sec  7.87 GBytes  67.6 Gbits/sec    0   2.12 MBytes       
[  5]   5.00-6.00   sec  7.88 GBytes  67.7 Gbits/sec    0   2.37 MBytes       
[  5]   6.00-7.00   sec  7.00 GBytes  60.1 Gbits/sec    5   2.94 MBytes       
[  5]   7.00-8.00   sec  7.83 GBytes  67.3 Gbits/sec    0   3.25 MBytes       
[  5]   8.00-9.00   sec  7.95 GBytes  68.3 Gbits/sec    0   3.37 MBytes       
[  5]   9.00-10.00  sec  7.83 GBytes  67.2 Gbits/sec    0   3.37 MBytes       
- - - - - - - - - - - - - - - - - - - - - - - - -
Test Complete. Summary Results:
[ ID] Interval           Transfer     Bitrate         Retr
[  5]   0.00-10.00  sec  76.5 GBytes  65.7 Gbits/sec  103             sender
[  5]   0.00-10.00  sec  76.5 GBytes  65.7 Gbits/sec                  receiver
CPU Utilization: local/sender 78.9% (1.0%u/77.9%s), remote/receiver 74.9% (1.9%u/73.0%s)
snd_tcp_congestion cubic
rcv_tcp_congestion cubic

iperf Done.
iperf 3.17.1
Linux instance-20260614-1905 6.12.0-203.76.7.3.el10uek.x86_64 #2 SMP PREEMPT_DYNAMIC Fri Jun  5 00:17:00 PDT 2026 x86_64
Control connection MSS 32768
Setting UDP block size to 32768
Time: Mon, 15 Jun 2026 07:32:07 GMT
Connecting to host 10.10.3.88, port 5201
      Cookie: o6e2xygr3e3w2aee5v4m6k2oq7rjmvqb7jgf
      Target Bitrate: 2000000000
[  5] local 10.10.3.88 port 53831 connected to 10.10.3.88 port 5201
Starting Test: protocol: UDP, 1 streams, 32768 byte blocks, omitting 0 seconds, 10 second test, tos 0
[ ID] Interval           Transfer     Bitrate         Total Datagrams
[  5]   0.00-1.00   sec   238 MBytes  2.00 Gbits/sec  7623  
[  5]   1.00-2.00   sec   238 MBytes  2.00 Gbits/sec  7623  
[  5]   2.00-3.00   sec   239 MBytes  2.00 Gbits/sec  7636  
[  5]   3.00-4.00   sec   238 MBytes  2.00 Gbits/sec  7629  
[  5]   4.00-5.00   sec   238 MBytes  2.00 Gbits/sec  7630  
[  5]   5.00-6.00   sec   238 MBytes  2.00 Gbits/sec  7629  
[  5]   6.00-7.00   sec   238 MBytes  2.00 Gbits/sec  7629  
[  5]   7.00-8.00   sec   238 MBytes  2.00 Gbits/sec  7630  
[  5]   8.00-9.00   sec   238 MBytes  2.00 Gbits/sec  7629  
[  5]   9.00-10.00  sec   238 MBytes  2.00 Gbits/sec  7630  
- - - - - - - - - - - - - - - - - - - - - - - - -
Test Complete. Summary Results:
[ ID] Interval           Transfer     Bitrate         Jitter    Lost/Total Datagrams
[  5]   0.00-10.00  sec  2.33 GBytes  2.00 Gbits/sec  0.000 ms  0/76288 (0%)  sender
[  5]   0.00-10.00  sec  2.07 GBytes  1.78 Gbits/sec  0.041 ms  8373/76288 (11%)  receiver
CPU Utilization: local/sender 95.5% (94.3%u/1.2%s), remote/receiver 41.9% (7.4%u/34.6%s)

iperf Done.
iperf 3.17.1 (cJSON 1.7.15)
Linux instance-20260614-1905 6.12.0-203.76.7.3.el10uek.x86_64 #2 SMP PREEMPT_DYNAMIC Fri Jun  5 00:17:00 PDT 2026 x86_64
Optional features available: CPU affinity setting, IPv6 flow label, SCTP, TCP congestion algorithm setting, sendfile / zerocopy, socket pacing, authentication, bind to device, support IPv4 don't fragment, POSIX threads
PING 10.10.3.88 (10.10.3.88) 56(84) bytes of data.
64 bytes from 10.10.3.88: icmp_seq=1 ttl=64 time=0.020 ms
64 bytes from 10.10.3.88: icmp_seq=2 ttl=64 time=0.021 ms
64 bytes from 10.10.3.88: icmp_seq=3 ttl=64 time=0.026 ms
64 bytes from 10.10.3.88: icmp_seq=4 ttl=64 time=0.043 ms

--- 10.10.3.88 ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3077ms
rtt min/avg/max/mdev = 0.020/0.027/0.043/0.009 ms
top - 07:32:02 up 8 min,  5 users,  load average: 0.31, 0.12, 0.05
Tasks: 189 total,   1 running, 188 sleeping,   0 stopped,   0 zombie
%Cpu(s):  0.0 us,  4.5 sy,  0.0 ni, 95.5 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st 
MiB Mem :   9480.8 total,   8338.1 free,    695.9 used,    711.9 buff/cache     
MiB Swap:   4096.0 total,   4096.0 free,      0.0 used.   8785.0 avail Mem 

    PID USER      PR  NI    VIRT    RES    SHR S  %CPU  %MEM     TIME+ COMMAND
      1 root      20   0   49620  41764  10832 S   0.0   0.4   0:02.53 systemd
      2 root      20   0       0      0      0 S   0.0   0.0   0:00.00 kthreadd
      3 root      20   0       0      0      0 S   0.0   0.0   0:00.00 pool_wo+
      4 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
      5 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
      6 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
      7 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
      8 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
      9 root      20   0       0      0      0 I   0.0   0.0   0:00.00 kworker+
     10 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     11 root      20   0       0      0      0 I   0.0   0.0   0:00.03 kworker+
     13 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     14 root      20   0       0      0      0 I   0.0   0.0   0:00.60 kworker+
     15 root      20   0       0      0      0 I   0.0   0.0   0:00.00 rcu_tas+
     16 root      20   0       0      0      0 I   0.0   0.0   0:00.00 rcu_tas+
     17 root      20   0       0      0      0 I   0.0   0.0   0:00.00 rcu_tas+
     18 root      20   0       0      0      0 S   0.0   0.0   0:00.04 ksoftir+
     19 root      20   0       0      0      0 I   0.0   0.0   0:00.06 rcu_pre+
     20 root      20   0       0      0      0 S   0.0   0.0   0:00.00 rcu_exp+
     21 root      20   0       0      0      0 S   0.0   0.0   0:00.00 rcu_exp+
     22 root      rt   0       0      0      0 S   0.0   0.0   0:00.00 migrati+
     23 root     -51   0       0      0      0 S   0.0   0.0   0:00.00 idle_in+
     24 root      20   0       0      0      0 S   0.0   0.0   0:00.00 cpuhp/0
     25 root      20   0       0      0      0 S   0.0   0.0   0:00.00 cpuhp/1
     26 root     -51   0       0      0      0 S   0.0   0.0   0:00.00 idle_in+
     27 root      rt   0       0      0      0 S   0.0   0.0   0:00.17 migrati+
     28 root      20   0       0      0      0 S   0.0   0.0   0:00.04 ksoftir+
     29 root      20   0       0      0      0 I   0.0   0.0   0:00.01 kworker+
     30 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     32 root      20   0       0      0      0 S   0.0   0.0   0:00.00 kdevtmp+
     33 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     34 root      20   0       0      0      0 S   0.0   0.0   0:00.00 kauditd
     35 root      20   0       0      0      0 S   0.0   0.0   0:00.00 khungta+
     36 root      20   0       0      0      0 I   0.0   0.0   0:00.00 kworker+
     37 root      20   0       0      0      0 S   0.0   0.0   0:00.00 oom_rea+
     38 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     39 root      20   0       0      0      0 S   0.0   0.0   0:00.00 kcompac+
     40 root      25   5       0      0      0 S   0.0   0.0   0:00.00 ksmd
     41 root      39  19       0      0      0 S   0.0   0.0   0:00.05 khugepa+
     42 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     43 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     44 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     45 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     46 root     -51   0       0      0      0 S   0.0   0.0   0:00.00 irq/9-a+
     47 root      20   0       0      0      0 I   0.0   0.0   0:00.03 kworker+
     48 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     49 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     50 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     51 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     52 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     53 root     -51   0       0      0      0 S   0.0   0.0   0:00.00 watchdo+
     54 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     55 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     56 root      20   0       0      0      0 S   0.0   0.0   0:00.00 kswapd0
     74 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     79 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     80 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     81 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     82 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     83 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     84 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     85 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     86 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     87 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     88 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     89 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     95 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    130 root      20   0       0      0      0 I   0.0   0.0   0:00.04 kworker+
    138 root      20   0       0      0      0 I   0.0   0.0   0:00.00 kworker+
    231 root      20   0       0      0      0 I   0.0   0.0   0:00.00 kworker+
    232 root      20   0       0      0      0 I   0.0   0.0   0:00.03 kworker+
    233 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    234 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    235 root      20   0       0      0      0 I   0.0   0.0   0:00.00 kworker+
    281 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    283 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    418 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    422 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    424 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    425 root       0 -20       0      0      0 S   0.0   0.0   0:00.00 bnx2i_t+
    426 root       0 -20       0      0      0 S   0.0   0.0   0:00.00 bnx2i_t+
    511 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    512 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    638 root      20   0       0      0      0 S   0.0   0.0   0:00.00 scsi_eh+
    639 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    648 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    658 root      20   0       0      0      0 S   0.0   0.0   0:00.00 scsi_eh+
    659 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    660 root      20   0       0      0      0 S   0.0   0.0   0:00.00 scsi_eh+
    666 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    724 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    725 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    726 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    727 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    728 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1059 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1068 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1097 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1098 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1099 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1100 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1101 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1102 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1103 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1104 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1105 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1106 root      20   0       0      0      0 S   0.0   0.0   0:00.05 xfsaild+
   1222 root      20   0   25364  10208   8828 S   0.0   0.1   0:00.15 systemd+
   1275 root      20   0   15860   6228   5248 S   0.0   0.1   0:00.02 systemd+
   1287 root      20   0   35372  12648   8652 S   0.0   0.1   0:00.07 systemd+
   1549 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1550 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1551 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1552 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1553 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1555 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1557 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1559 root      20   0       0      0      0 S   0.0   0.0   0:00.00 xfsaild+
   1599 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1662 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1666 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1667 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1668 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1669 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1670 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1671 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1672 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1673 root      20   0       0      0      0 S   0.0   0.0   0:00.00 xfsaild+
   1719 rpc       20   0   12624   4920   4004 S   0.0   0.1   0:00.01 rpcbind
   1720 root      16  -4   20440   2912   1952 S   0.0   0.0   0:00.01 auditd
   1749 dbus      20   0    8812   4224   3604 S   0.0   0.0   0:00.01 dbus-br+
   1750 root      20   0    4836   2348   2156 S   0.0   0.0   0:00.00 dtprobed
   1758 root      20   0 1052380    896    708 S   0.0   0.0   0:00.00 dtprobed
   1760 dbus      20   0    4912   2984   2472 S   0.0   0.0   0:00.09 dbus-br+
   1764 root      20   0   80408   3756   3432 S   0.0   0.0   0:00.03 irqbala+
   1766 root      20   0   18880  10136   7660 S   0.0   0.1   0:00.10 systemd+
   1804 root      20   0  330264  18248  15364 S   0.0   0.2   0:00.06 Network+
   1816 root      20   0   57140   7700   6524 S   0.0   0.1   0:00.02 gssproxy
   1817 root      20   0  256604  27680  13112 S   0.0   0.3   0:00.18 tuned
   1916 polkitd   20   0  305736   7404   6552 S   0.0   0.1   0:00.06 polkitd
   2194 root      10 -10   13852  13836  12004 S   0.0   0.1   0:00.00 iscsid
   2223 oracle-+  20   0 1241748  24116  13376 S   0.0   0.2   0:00.32 updater
   2235 root      20   0  163276   7392   5908 S   0.0   0.1   0:00.11 rsyslogd
   2241 root      20   0    8760   6524   5348 S   0.0   0.1   0:00.00 sshd
   2250 root      20   0  535832  45340  13392 S   0.0   0.5   0:00.68 fluentd
   2255 oracle-+  20   0 1241480  25716  15412 S   0.0   0.3   0:00.35 agent
   2300 chrony    20   0   10400   2984   2392 S   0.0   0.0   0:00.00 chronyd
   2351 root      20   0    8296   3472   2596 S   0.0   0.0   0:00.00 crond
   2353 root      20   0    4980   2344   2108 S   0.0   0.0   0:00.00 agetty
   2355 root      20   0    7548   2616   2360 S   0.0   0.0   0:00.00 agetty
   2365 oracle-+  20   0 1241292  25904  15344 S   0.0   0.3   0:00.31 gomon
   2415 root      20   0   18544   7936   6460 S   0.0   0.1   0:00.01 sudo
   2445 ocarun    20   0   22240  13464  10324 S   0.0   0.1   0:00.11 systemd
   2456 ocarun    20   0   14432   2904   1548 S   0.0   0.0   0:00.00 (sd-pam)
   2530 ocarun    20   0 1245024  28932  18520 S   0.0   0.3   0:00.18 runcomm+
   2537 pcp       20   0   14012   7688   5820 S   0.0   0.1   0:00.17 pmcd
   2551 root      20   0   13900   5096   4132 S   0.0   0.1   0:00.00 pmdaroot
   2566 root      20   0   14308   6448   4420 S   0.0   0.1   0:00.18 pmdaproc
   2579 root      20   0   13116   4828   3908 S   0.0   0.0   0:00.00 pmdaxfs
   2580 root      20   0   14032   6348   4668 S   0.0   0.1   0:00.15 pmdalin+
   2581 oracle-+  20   0 1241956  26044  15824 S   0.0   0.3   0:00.60 unified+
   2585 root      20   0   31304  23008  11324 S   0.0   0.2   0:00.05 python3
   2639 root      20   0   13096   4812   3896 S   0.0   0.0   0:00.00 pmdakvm
   2642 root      20   0   14636   5584   4544 S   0.0   0.1   0:00.00 pmdadm
   2647 pcp       20   0  262712  33464  13272 S   0.0   0.3   0:00.14 python3
   3356 pcp       20   0   15600   8292   5300 S   0.0   0.1   0:00.13 pmlogger
   3365 pcp       20   0   13916   6584   5328 S   0.0   0.1   0:00.00 pmie
   3381 pcp       20   0   12808   4160   3304 S   0.0   0.0   0:00.00 pmpause
   3493 pcp       20   0   12808   4168   3308 S   0.0   0.0   0:00.00 pmpause
   3957 root      20   0  526092  39020  13264 S   0.0   0.4   0:00.48 ruby
  10377 root      20   0   15496  10656   8632 S   0.0   0.1   0:00.00 sshd-se+
  10382 opc       20   0   22248  13480  10352 S   0.0   0.1   0:00.06 systemd
  10384 root      20   0   16612   7336   6260 S   0.0   0.1   0:00.00 systemd+
  10385 opc       20   0   14432   2912   1560 S   0.0   0.0   0:00.00 (sd-pam)
  10394 opc       20   0   15884   8120   5800 S   0.0   0.1   0:00.57 sshd-se+
  10395 opc       20   0    7212   6176   5496 S   0.0   0.1   0:00.00 bash
  10425 root      20   0   18552   9944   8460 S   0.0   0.1   0:00.03 sudo
  10427 root      20   0   16612   7464   6384 S   0.0   0.1   0:00.00 systemd+
  10428 root      20   0   18552   2832   1352 S   0.0   0.0   0:00.00 sudo
  10429 root      20   0   10088   7140   6324 S   0.0   0.1   0:00.00 su
  10430 root      20   0    7328   6220   5508 S   0.0   0.1   0:00.03 bash
  10512 root      20   0       0      0      0 I   0.0   0.0   0:00.00 kworker+
  10721 root      20   0   15628  10648   8624 S   0.0   0.1   0:00.01 sshd-se+
  10724 root      20   0   16448   6920   5888 S   0.0   0.1   0:00.00 systemd+
  10725 opc       20   0   15888   8120   5800 S   0.0   0.1   0:00.00 sshd-se+
  10726 opc       20   0    7212   6156   5476 S   0.0   0.1   0:00.00 bash
  10756 opc       20   0   18036   3768   3048 S   0.0   0.0   0:07.49 iperf3
  10784 root      20   0   31752  26324   9788 S   0.0   0.3   0:00.10 python
  10798 root      20   0   10172   7088   4992 R   0.0   0.1   0:00.00 top
top - 07:32:17 up 8 min,  5 users,  load average: 0.86, 0.24, 0.09
Tasks: 189 total,   1 running, 188 sleeping,   0 stopped,   0 zombie
%Cpu(s):  0.0 us,  0.0 sy,  0.0 ni,100.0 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st 
MiB Mem :   9480.8 total,   8338.7 free,    695.1 used,    712.0 buff/cache     
MiB Swap:   4096.0 total,   4096.0 free,      0.0 used.   8785.7 avail Mem 

    PID USER      PR  NI    VIRT    RES    SHR S  %CPU  %MEM     TIME+ COMMAND
      1 root      20   0   49620  41764  10832 S   0.0   0.4   0:02.53 systemd
      2 root      20   0       0      0      0 S   0.0   0.0   0:00.00 kthreadd
      3 root      20   0       0      0      0 S   0.0   0.0   0:00.00 pool_wo+
      4 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
      5 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
      6 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
      7 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
      8 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
      9 root      20   0       0      0      0 I   0.0   0.0   0:00.00 kworker+
     10 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     11 root      20   0       0      0      0 I   0.0   0.0   0:00.03 kworker+
     13 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     14 root      20   0       0      0      0 I   0.0   0.0   0:00.60 kworker+
     15 root      20   0       0      0      0 I   0.0   0.0   0:00.00 rcu_tas+
     16 root      20   0       0      0      0 I   0.0   0.0   0:00.00 rcu_tas+
     17 root      20   0       0      0      0 I   0.0   0.0   0:00.00 rcu_tas+
     18 root      20   0       0      0      0 S   0.0   0.0   0:00.04 ksoftir+
     19 root      20   0       0      0      0 I   0.0   0.0   0:00.06 rcu_pre+
     20 root      20   0       0      0      0 S   0.0   0.0   0:00.00 rcu_exp+
     21 root      20   0       0      0      0 S   0.0   0.0   0:00.00 rcu_exp+
     22 root      rt   0       0      0      0 S   0.0   0.0   0:00.00 migrati+
     23 root     -51   0       0      0      0 S   0.0   0.0   0:00.00 idle_in+
     24 root      20   0       0      0      0 S   0.0   0.0   0:00.00 cpuhp/0
     25 root      20   0       0      0      0 S   0.0   0.0   0:00.00 cpuhp/1
     26 root     -51   0       0      0      0 S   0.0   0.0   0:00.00 idle_in+
     27 root      rt   0       0      0      0 S   0.0   0.0   0:00.17 migrati+
     28 root      20   0       0      0      0 S   0.0   0.0   0:00.04 ksoftir+
     29 root      20   0       0      0      0 I   0.0   0.0   0:00.01 kworker+
     30 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     32 root      20   0       0      0      0 S   0.0   0.0   0:00.00 kdevtmp+
     33 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     34 root      20   0       0      0      0 S   0.0   0.0   0:00.00 kauditd
     35 root      20   0       0      0      0 S   0.0   0.0   0:00.00 khungta+
     36 root      20   0       0      0      0 I   0.0   0.0   0:00.00 kworker+
     37 root      20   0       0      0      0 S   0.0   0.0   0:00.00 oom_rea+
     38 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     39 root      20   0       0      0      0 S   0.0   0.0   0:00.00 kcompac+
     40 root      25   5       0      0      0 S   0.0   0.0   0:00.00 ksmd
     41 root      39  19       0      0      0 S   0.0   0.0   0:00.05 khugepa+
     42 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     43 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     44 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     45 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     46 root     -51   0       0      0      0 S   0.0   0.0   0:00.00 irq/9-a+
     47 root      20   0       0      0      0 I   0.0   0.0   0:00.03 kworker+
     48 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     49 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     50 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     51 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     52 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     53 root     -51   0       0      0      0 S   0.0   0.0   0:00.00 watchdo+
     54 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     55 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     56 root      20   0       0      0      0 S   0.0   0.0   0:00.00 kswapd0
     74 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     79 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     80 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     81 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     82 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     83 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     84 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     85 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     86 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     87 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     88 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     89 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     95 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    130 root      20   0       0      0      0 I   0.0   0.0   0:00.04 kworker+
    138 root      20   0       0      0      0 I   0.0   0.0   0:00.00 kworker+
    231 root      20   0       0      0      0 I   0.0   0.0   0:00.00 kworker+
    232 root      20   0       0      0      0 I   0.0   0.0   0:00.03 kworker+
    233 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    234 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    235 root      20   0       0      0      0 I   0.0   0.0   0:00.00 kworker+
    281 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    283 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    418 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    422 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    424 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    425 root       0 -20       0      0      0 S   0.0   0.0   0:00.00 bnx2i_t+
    426 root       0 -20       0      0      0 S   0.0   0.0   0:00.00 bnx2i_t+
    511 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    512 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    638 root      20   0       0      0      0 S   0.0   0.0   0:00.00 scsi_eh+
    639 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    648 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    658 root      20   0       0      0      0 S   0.0   0.0   0:00.00 scsi_eh+
    659 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    660 root      20   0       0      0      0 S   0.0   0.0   0:00.00 scsi_eh+
    666 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    724 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    725 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    726 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    727 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    728 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1059 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1068 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1097 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1098 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1099 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1100 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1101 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1102 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1103 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1104 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1105 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1106 root      20   0       0      0      0 S   0.0   0.0   0:00.05 xfsaild+
   1222 root      20   0   25364  10208   8828 S   0.0   0.1   0:00.15 systemd+
   1275 root      20   0   15860   6228   5248 S   0.0   0.1   0:00.02 systemd+
   1287 root      20   0   35372  12648   8652 S   0.0   0.1   0:00.07 systemd+
   1549 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1550 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1551 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1552 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1553 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1555 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1557 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1559 root      20   0       0      0      0 S   0.0   0.0   0:00.00 xfsaild+
   1599 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1662 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1666 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1667 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1668 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1669 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1670 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1671 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1672 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1673 root      20   0       0      0      0 S   0.0   0.0   0:00.00 xfsaild+
   1719 rpc       20   0   12624   4920   4004 S   0.0   0.1   0:00.01 rpcbind
   1720 root      16  -4   20440   2912   1952 S   0.0   0.0   0:00.01 auditd
   1749 dbus      20   0    8812   4224   3604 S   0.0   0.0   0:00.01 dbus-br+
   1750 root      20   0    4836   2348   2156 S   0.0   0.0   0:00.00 dtprobed
   1758 root      20   0 1052380    896    708 S   0.0   0.0   0:00.00 dtprobed
   1760 dbus      20   0    4912   2984   2472 S   0.0   0.0   0:00.09 dbus-br+
   1764 root      20   0   80408   3756   3432 S   0.0   0.0   0:00.03 irqbala+
   1766 root      20   0   18880  10136   7660 S   0.0   0.1   0:00.10 systemd+
   1804 root      20   0  330264  18248  15364 S   0.0   0.2   0:00.06 Network+
   1816 root      20   0   57140   7700   6524 S   0.0   0.1   0:00.02 gssproxy
   1817 root      20   0  256604  27680  13112 S   0.0   0.3   0:00.19 tuned
   1916 polkitd   20   0  305736   7404   6552 S   0.0   0.1   0:00.06 polkitd
   2194 root      10 -10   13852  13836  12004 S   0.0   0.1   0:00.00 iscsid
   2223 oracle-+  20   0 1241748  24116  13376 S   0.0   0.2   0:00.32 updater
   2235 root      20   0  163276   7392   5908 S   0.0   0.1   0:00.11 rsyslogd
   2241 root      20   0    8760   6524   5348 S   0.0   0.1   0:00.00 sshd
   2250 root      20   0  535832  45340  13392 S   0.0   0.5   0:00.68 fluentd
   2255 oracle-+  20   0 1241480  26164  15412 S   0.0   0.3   0:00.35 agent
   2300 chrony    20   0   10400   2984   2392 S   0.0   0.0   0:00.00 chronyd
   2351 root      20   0    8296   3472   2596 S   0.0   0.0   0:00.00 crond
   2353 root      20   0    4980   2344   2108 S   0.0   0.0   0:00.00 agetty
   2355 root      20   0    7548   2616   2360 S   0.0   0.0   0:00.00 agetty
   2365 oracle-+  20   0 1241292  25904  15344 S   0.0   0.3   0:00.31 gomon
   2415 root      20   0   18544   7936   6460 S   0.0   0.1   0:00.01 sudo
   2445 ocarun    20   0   22240  13464  10324 S   0.0   0.1   0:00.11 systemd
   2456 ocarun    20   0   14432   2904   1548 S   0.0   0.0   0:00.00 (sd-pam)
   2530 ocarun    20   0 1245024  28932  18520 S   0.0   0.3   0:00.18 runcomm+
   2537 pcp       20   0   14012   7688   5820 S   0.0   0.1   0:00.17 pmcd
   2551 root      20   0   13900   5096   4132 S   0.0   0.1   0:00.00 pmdaroot
   2566 root      20   0   14308   6448   4420 S   0.0   0.1   0:00.19 pmdaproc
   2579 root      20   0   13116   4828   3908 S   0.0   0.0   0:00.00 pmdaxfs
   2580 root      20   0   14032   6348   4668 S   0.0   0.1   0:00.15 pmdalin+
   2581 oracle-+  20   0 1241956  26044  15824 S   0.0   0.3   0:00.60 unified+
   2585 root      20   0   31304  23008  11324 S   0.0   0.2   0:00.05 python3
   2639 root      20   0   13096   4812   3896 S   0.0   0.0   0:00.00 pmdakvm
   2642 root      20   0   14636   5584   4544 S   0.0   0.1   0:00.00 pmdadm
   2647 pcp       20   0  262712  33464  13272 S   0.0   0.3   0:00.14 python3
   3356 pcp       20   0   15600   8292   5300 S   0.0   0.1   0:00.13 pmlogger
   3365 pcp       20   0   13916   6584   5328 S   0.0   0.1   0:00.00 pmie
   3381 pcp       20   0   12808   4160   3304 S   0.0   0.0   0:00.00 pmpause
   3493 pcp       20   0   12808   4168   3308 S   0.0   0.0   0:00.00 pmpause
   3957 root      20   0  526092  39020  13264 S   0.0   0.4   0:00.48 ruby
  10377 root      20   0   15496  10656   8632 S   0.0   0.1   0:00.00 sshd-se+
  10382 opc       20   0   22248  13480  10352 S   0.0   0.1   0:00.06 systemd
  10385 opc       20   0   14432   2912   1560 S   0.0   0.0   0:00.00 (sd-pam)
  10394 opc       20   0   15884   8120   5800 S   0.0   0.1   0:00.57 sshd-se+
  10395 opc       20   0    7212   6176   5496 S   0.0   0.1   0:00.00 bash
  10425 root      20   0   18552   9944   8460 S   0.0   0.1   0:00.03 sudo
  10428 root      20   0   18552   2832   1352 S   0.0   0.0   0:00.00 sudo
  10429 root      20   0   10088   7140   6324 S   0.0   0.1   0:00.00 su
  10430 root      20   0    7328   6220   5508 S   0.0   0.1   0:00.03 bash
  10512 root      20   0       0      0      0 I   0.0   0.0   0:00.00 kworker+
  10721 root      20   0   15628  10648   8624 S   0.0   0.1   0:00.01 sshd-se+
  10724 root      20   0   16448   6920   5888 S   0.0   0.1   0:00.00 systemd+
  10725 opc       20   0   15888   8120   5800 S   0.0   0.1   0:00.00 sshd-se+
  10726 opc       20   0    7212   6156   5476 S   0.0   0.1   0:00.00 bash
  10756 opc       20   0   18216   4052   3316 S   0.0   0.0   0:11.67 iperf3
  10784 root      20   0   31896  26416   9788 S   0.0   0.3   0:00.10 python
  10803 root      20   0   16304   6188   5184 S   0.0   0.1   0:00.00 systemd+
  10804 root      20   0   16304   6188   5180 S   0.0   0.1   0:00.00 systemd+
  10805 root      20   0   10172   7208   5116 R   0.0   0.1   0:00.00 top
top - 07:31:51 up 8 min,  5 users,  load average: 0.01, 0.05, 0.02
Tasks: 189 total,   1 running, 188 sleeping,   0 stopped,   0 zombie
%Cpu(s):  0.0 us,  0.0 sy,  0.0 ni,100.0 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st 
MiB Mem :   9480.8 total,   8313.6 free,    720.3 used,    711.9 buff/cache     
MiB Swap:   4096.0 total,   4096.0 free,      0.0 used.   8760.5 avail Mem 

    PID USER      PR  NI    VIRT    RES    SHR S  %CPU  %MEM     TIME+ COMMAND
      1 root      20   0   49620  41764  10832 S   0.0   0.4   0:02.53 systemd
      2 root      20   0       0      0      0 S   0.0   0.0   0:00.00 kthreadd
      3 root      20   0       0      0      0 S   0.0   0.0   0:00.00 pool_wo+
      4 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
      5 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
      6 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
      7 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
      8 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
      9 root      20   0       0      0      0 I   0.0   0.0   0:00.00 kworker+
     10 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     11 root      20   0       0      0      0 I   0.0   0.0   0:00.03 kworker+
     13 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     14 root      20   0       0      0      0 I   0.0   0.0   0:00.60 kworker+
     15 root      20   0       0      0      0 I   0.0   0.0   0:00.00 rcu_tas+
     16 root      20   0       0      0      0 I   0.0   0.0   0:00.00 rcu_tas+
     17 root      20   0       0      0      0 I   0.0   0.0   0:00.00 rcu_tas+
     18 root      20   0       0      0      0 S   0.0   0.0   0:00.04 ksoftir+
     19 root      20   0       0      0      0 I   0.0   0.0   0:00.06 rcu_pre+
     20 root      20   0       0      0      0 S   0.0   0.0   0:00.00 rcu_exp+
     21 root      20   0       0      0      0 S   0.0   0.0   0:00.00 rcu_exp+
     22 root      rt   0       0      0      0 S   0.0   0.0   0:00.00 migrati+
     23 root     -51   0       0      0      0 S   0.0   0.0   0:00.00 idle_in+
     24 root      20   0       0      0      0 S   0.0   0.0   0:00.00 cpuhp/0
     25 root      20   0       0      0      0 S   0.0   0.0   0:00.00 cpuhp/1
     26 root     -51   0       0      0      0 S   0.0   0.0   0:00.00 idle_in+
     27 root      rt   0       0      0      0 S   0.0   0.0   0:00.17 migrati+
     28 root      20   0       0      0      0 S   0.0   0.0   0:00.04 ksoftir+
     29 root      20   0       0      0      0 I   0.0   0.0   0:00.01 kworker+
     30 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     32 root      20   0       0      0      0 S   0.0   0.0   0:00.00 kdevtmp+
     33 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     34 root      20   0       0      0      0 S   0.0   0.0   0:00.00 kauditd
     35 root      20   0       0      0      0 S   0.0   0.0   0:00.00 khungta+
     36 root      20   0       0      0      0 I   0.0   0.0   0:00.00 kworker+
     37 root      20   0       0      0      0 S   0.0   0.0   0:00.00 oom_rea+
     38 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     39 root      20   0       0      0      0 S   0.0   0.0   0:00.00 kcompac+
     40 root      25   5       0      0      0 S   0.0   0.0   0:00.00 ksmd
     41 root      39  19       0      0      0 S   0.0   0.0   0:00.05 khugepa+
     42 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     43 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     44 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     45 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     46 root     -51   0       0      0      0 S   0.0   0.0   0:00.00 irq/9-a+
     47 root      20   0       0      0      0 I   0.0   0.0   0:00.03 kworker+
     48 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     49 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     50 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     51 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     52 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     53 root     -51   0       0      0      0 S   0.0   0.0   0:00.00 watchdo+
     54 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     55 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     56 root      20   0       0      0      0 S   0.0   0.0   0:00.00 kswapd0
     74 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     79 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     80 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     81 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     82 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     83 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     84 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     85 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     86 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     87 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     88 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     89 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     95 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    130 root      20   0       0      0      0 I   0.0   0.0   0:00.04 kworker+
    138 root      20   0       0      0      0 I   0.0   0.0   0:00.00 kworker+
    231 root      20   0       0      0      0 I   0.0   0.0   0:00.00 kworker+
    232 root      20   0       0      0      0 I   0.0   0.0   0:00.03 kworker+
    233 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    234 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    235 root      20   0       0      0      0 I   0.0   0.0   0:00.00 kworker+
    281 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    283 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    418 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    422 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    424 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    425 root       0 -20       0      0      0 S   0.0   0.0   0:00.00 bnx2i_t+
    426 root       0 -20       0      0      0 S   0.0   0.0   0:00.00 bnx2i_t+
    511 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    512 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    638 root      20   0       0      0      0 S   0.0   0.0   0:00.00 scsi_eh+
    639 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    648 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    658 root      20   0       0      0      0 S   0.0   0.0   0:00.00 scsi_eh+
    659 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    660 root      20   0       0      0      0 S   0.0   0.0   0:00.00 scsi_eh+
    666 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    724 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    725 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    726 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    727 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    728 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1059 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1068 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1097 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1098 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1099 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1100 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1101 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1102 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1103 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1104 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1105 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1106 root      20   0       0      0      0 S   0.0   0.0   0:00.04 xfsaild+
   1222 root      20   0   25364  10208   8828 S   0.0   0.1   0:00.15 systemd+
   1275 root      20   0   15860   6228   5248 S   0.0   0.1   0:00.02 systemd+
   1287 root      20   0   35372  12648   8652 S   0.0   0.1   0:00.07 systemd+
   1549 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1550 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1551 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1552 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1553 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1555 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1557 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1559 root      20   0       0      0      0 S   0.0   0.0   0:00.00 xfsaild+
   1599 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1662 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1666 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1667 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1668 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1669 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1670 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1671 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1672 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1673 root      20   0       0      0      0 S   0.0   0.0   0:00.00 xfsaild+
   1719 rpc       20   0   12624   4920   4004 S   0.0   0.1   0:00.01 rpcbind
   1720 root      16  -4   20440   2912   1952 S   0.0   0.0   0:00.01 auditd
   1749 dbus      20   0    8812   4224   3604 S   0.0   0.0   0:00.01 dbus-br+
   1750 root      20   0    4836   2348   2156 S   0.0   0.0   0:00.00 dtprobed
   1758 root      20   0 1052380    896    708 S   0.0   0.0   0:00.00 dtprobed
   1760 dbus      20   0    4912   2984   2472 S   0.0   0.0   0:00.09 dbus-br+
   1764 root      20   0   80408   3756   3432 S   0.0   0.0   0:00.03 irqbala+
   1766 root      20   0   18880  10136   7660 S   0.0   0.1   0:00.10 systemd+
   1804 root      20   0  330264  18248  15364 S   0.0   0.2   0:00.06 Network+
   1816 root      20   0   57140   7700   6524 S   0.0   0.1   0:00.02 gssproxy
   1817 root      20   0  256604  27680  13112 S   0.0   0.3   0:00.18 tuned
   1916 polkitd   20   0  305736   7404   6552 S   0.0   0.1   0:00.06 polkitd
   2194 root      10 -10   13852  13836  12004 S   0.0   0.1   0:00.00 iscsid
   2223 oracle-+  20   0 1241748  24116  13376 S   0.0   0.2   0:00.32 updater
   2235 root      20   0  163276   7392   5908 S   0.0   0.1   0:00.11 rsyslogd
   2241 root      20   0    8760   6524   5348 S   0.0   0.1   0:00.00 sshd
   2250 root      20   0  535832  45340  13392 S   0.0   0.5   0:00.68 fluentd
   2255 oracle-+  20   0 1241480  25716  15412 S   0.0   0.3   0:00.35 agent
   2300 chrony    20   0   10400   2984   2392 S   0.0   0.0   0:00.00 chronyd
   2351 root      20   0    8296   3472   2596 S   0.0   0.0   0:00.00 crond
   2353 root      20   0    4980   2344   2108 S   0.0   0.0   0:00.00 agetty
   2355 root      20   0    7548   2616   2360 S   0.0   0.0   0:00.00 agetty
   2365 oracle-+  20   0 1241292  25904  15344 S   0.0   0.3   0:00.31 gomon
   2415 root      20   0   18544   7936   6460 S   0.0   0.1   0:00.01 sudo
   2445 ocarun    20   0   22240  13464  10324 S   0.0   0.1   0:00.11 systemd
   2456 ocarun    20   0   14432   2904   1548 S   0.0   0.0   0:00.00 (sd-pam)
   2530 ocarun    20   0 1245024  28932  18520 S   0.0   0.3   0:00.18 runcomm+
   2537 pcp       20   0   14012   7688   5820 S   0.0   0.1   0:00.17 pmcd
   2551 root      20   0   13900   5096   4132 S   0.0   0.1   0:00.00 pmdaroot
   2566 root      20   0   14308   6448   4420 S   0.0   0.1   0:00.18 pmdaproc
   2579 root      20   0   13116   4828   3908 S   0.0   0.0   0:00.00 pmdaxfs
   2580 root      20   0   14032   6348   4668 S   0.0   0.1   0:00.14 pmdalin+
   2581 oracle-+  20   0 1241956  26044  15824 S   0.0   0.3   0:00.60 unified+
   2585 root      20   0   31304  23008  11324 S   0.0   0.2   0:00.05 python3
   2639 root      20   0   13096   4812   3896 S   0.0   0.0   0:00.00 pmdakvm
   2642 root      20   0   14636   5584   4544 S   0.0   0.1   0:00.00 pmdadm
   2647 pcp       20   0  262712  33464  13272 S   0.0   0.3   0:00.14 python3
   3356 pcp       20   0   15600   8292   5300 S   0.0   0.1   0:00.13 pmlogger
   3365 pcp       20   0   13916   6584   5328 S   0.0   0.1   0:00.00 pmie
   3381 pcp       20   0   12808   4160   3304 S   0.0   0.0   0:00.00 pmpause
   3493 pcp       20   0   12808   4168   3308 S   0.0   0.0   0:00.00 pmpause
   3957 root      20   0  526092  39020  13264 S   0.0   0.4   0:00.48 ruby
  10377 root      20   0   15496  10656   8632 S   0.0   0.1   0:00.00 sshd-se+
  10382 opc       20   0   22248  13480  10352 S   0.0   0.1   0:00.06 systemd
  10384 root      20   0   16612   7336   6260 S   0.0   0.1   0:00.00 systemd+
  10385 opc       20   0   14432   2912   1560 S   0.0   0.0   0:00.00 (sd-pam)
  10394 opc       20   0   15884   8120   5800 S   0.0   0.1   0:00.57 sshd-se+
  10395 opc       20   0    7212   6176   5496 S   0.0   0.1   0:00.00 bash
  10425 root      20   0   18552   9944   8460 S   0.0   0.1   0:00.03 sudo
  10427 root      20   0   16612   7464   6384 S   0.0   0.1   0:00.00 systemd+
  10428 root      20   0   18552   2832   1352 S   0.0   0.0   0:00.00 sudo
  10429 root      20   0   10088   7140   6324 S   0.0   0.1   0:00.00 su
  10430 root      20   0    7328   6220   5508 S   0.0   0.1   0:00.03 bash
  10512 root      20   0       0      0      0 I   0.0   0.0   0:00.00 kworker+
  10721 root      20   0   15628  10648   8624 S   0.0   0.1   0:00.01 sshd-se+
  10724 root      20   0   16448   6920   5888 S   0.0   0.1   0:00.00 systemd+
  10725 opc       20   0   15888   8120   5800 S   0.0   0.1   0:00.00 sshd-se+
  10726 opc       20   0    7212   6156   5476 S   0.0   0.1   0:00.00 bash
  10756 opc       20   0    9840   3616   2920 S   0.0   0.0   0:00.00 iperf3
  10784 root      20   0   31752  26308   9788 S   0.0   0.3   0:00.09 python
  10794 root      20   0   10172   7128   5036 R   0.0   0.1   0:00.00 top
top - 07:32:07 up 8 min,  5 users,  load average: 0.29, 0.12, 0.05
Tasks: 189 total,   1 running, 188 sleeping,   0 stopped,   0 zombie
%Cpu(s):  0.0 us,  0.0 sy,  0.0 ni,100.0 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st 
MiB Mem :   9480.8 total,   8337.0 free,    696.7 used,    712.0 buff/cache     
MiB Swap:   4096.0 total,   4096.0 free,      0.0 used.   8784.1 avail Mem 

    PID USER      PR  NI    VIRT    RES    SHR S  %CPU  %MEM     TIME+ COMMAND
      1 root      20   0   49620  41764  10832 S   0.0   0.4   0:02.53 systemd
      2 root      20   0       0      0      0 S   0.0   0.0   0:00.00 kthreadd
      3 root      20   0       0      0      0 S   0.0   0.0   0:00.00 pool_wo+
      4 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
      5 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
      6 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
      7 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
      8 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
      9 root      20   0       0      0      0 I   0.0   0.0   0:00.00 kworker+
     10 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     11 root      20   0       0      0      0 I   0.0   0.0   0:00.03 kworker+
     13 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     14 root      20   0       0      0      0 I   0.0   0.0   0:00.60 kworker+
     15 root      20   0       0      0      0 I   0.0   0.0   0:00.00 rcu_tas+
     16 root      20   0       0      0      0 I   0.0   0.0   0:00.00 rcu_tas+
     17 root      20   0       0      0      0 I   0.0   0.0   0:00.00 rcu_tas+
     18 root      20   0       0      0      0 S   0.0   0.0   0:00.04 ksoftir+
     19 root      20   0       0      0      0 I   0.0   0.0   0:00.06 rcu_pre+
     20 root      20   0       0      0      0 S   0.0   0.0   0:00.00 rcu_exp+
     21 root      20   0       0      0      0 S   0.0   0.0   0:00.00 rcu_exp+
     22 root      rt   0       0      0      0 S   0.0   0.0   0:00.00 migrati+
     23 root     -51   0       0      0      0 S   0.0   0.0   0:00.00 idle_in+
     24 root      20   0       0      0      0 S   0.0   0.0   0:00.00 cpuhp/0
     25 root      20   0       0      0      0 S   0.0   0.0   0:00.00 cpuhp/1
     26 root     -51   0       0      0      0 S   0.0   0.0   0:00.00 idle_in+
     27 root      rt   0       0      0      0 S   0.0   0.0   0:00.17 migrati+
     28 root      20   0       0      0      0 S   0.0   0.0   0:00.04 ksoftir+
     29 root      20   0       0      0      0 I   0.0   0.0   0:00.01 kworker+
     30 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     32 root      20   0       0      0      0 S   0.0   0.0   0:00.00 kdevtmp+
     33 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     34 root      20   0       0      0      0 S   0.0   0.0   0:00.00 kauditd
     35 root      20   0       0      0      0 S   0.0   0.0   0:00.00 khungta+
     36 root      20   0       0      0      0 I   0.0   0.0   0:00.00 kworker+
     37 root      20   0       0      0      0 S   0.0   0.0   0:00.00 oom_rea+
     38 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     39 root      20   0       0      0      0 S   0.0   0.0   0:00.00 kcompac+
     40 root      25   5       0      0      0 S   0.0   0.0   0:00.00 ksmd
     41 root      39  19       0      0      0 S   0.0   0.0   0:00.05 khugepa+
     42 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     43 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     44 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     45 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     46 root     -51   0       0      0      0 S   0.0   0.0   0:00.00 irq/9-a+
     47 root      20   0       0      0      0 I   0.0   0.0   0:00.03 kworker+
     48 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     49 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     50 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     51 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     52 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     53 root     -51   0       0      0      0 S   0.0   0.0   0:00.00 watchdo+
     54 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     55 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     56 root      20   0       0      0      0 S   0.0   0.0   0:00.00 kswapd0
     74 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     79 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     80 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     81 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     82 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     83 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     84 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     85 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     86 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     87 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     88 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     89 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
     95 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    130 root      20   0       0      0      0 I   0.0   0.0   0:00.04 kworker+
    138 root      20   0       0      0      0 I   0.0   0.0   0:00.00 kworker+
    231 root      20   0       0      0      0 I   0.0   0.0   0:00.00 kworker+
    232 root      20   0       0      0      0 I   0.0   0.0   0:00.03 kworker+
    233 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    234 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    235 root      20   0       0      0      0 I   0.0   0.0   0:00.00 kworker+
    281 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    283 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    418 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    422 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    424 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    425 root       0 -20       0      0      0 S   0.0   0.0   0:00.00 bnx2i_t+
    426 root       0 -20       0      0      0 S   0.0   0.0   0:00.00 bnx2i_t+
    511 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    512 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    638 root      20   0       0      0      0 S   0.0   0.0   0:00.00 scsi_eh+
    639 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    648 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    658 root      20   0       0      0      0 S   0.0   0.0   0:00.00 scsi_eh+
    659 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    660 root      20   0       0      0      0 S   0.0   0.0   0:00.00 scsi_eh+
    666 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    724 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    725 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    726 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    727 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
    728 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1059 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1068 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1097 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1098 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1099 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1100 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1101 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1102 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1103 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1104 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1105 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1106 root      20   0       0      0      0 S   0.0   0.0   0:00.05 xfsaild+
   1222 root      20   0   25364  10208   8828 S   0.0   0.1   0:00.15 systemd+
   1275 root      20   0   15860   6228   5248 S   0.0   0.1   0:00.02 systemd+
   1287 root      20   0   35372  12648   8652 S   0.0   0.1   0:00.07 systemd+
   1549 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1550 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1551 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1552 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1553 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1555 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1557 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1559 root      20   0       0      0      0 S   0.0   0.0   0:00.00 xfsaild+
   1599 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1662 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1666 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1667 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1668 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1669 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1670 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1671 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1672 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 kworker+
   1673 root      20   0       0      0      0 S   0.0   0.0   0:00.00 xfsaild+
   1719 rpc       20   0   12624   4920   4004 S   0.0   0.1   0:00.01 rpcbind
   1720 root      16  -4   20440   2912   1952 S   0.0   0.0   0:00.01 auditd
   1749 dbus      20   0    8812   4224   3604 S   0.0   0.0   0:00.01 dbus-br+
   1750 root      20   0    4836   2348   2156 S   0.0   0.0   0:00.00 dtprobed
   1758 root      20   0 1052380    896    708 S   0.0   0.0   0:00.00 dtprobed
   1760 dbus      20   0    4912   2984   2472 S   0.0   0.0   0:00.09 dbus-br+
   1764 root      20   0   80408   3756   3432 S   0.0   0.0   0:00.03 irqbala+
   1766 root      20   0   18880  10136   7660 S   0.0   0.1   0:00.10 systemd+
   1804 root      20   0  330264  18248  15364 S   0.0   0.2   0:00.06 Network+
   1816 root      20   0   57140   7700   6524 S   0.0   0.1   0:00.02 gssproxy
   1817 root      20   0  256604  27680  13112 S   0.0   0.3   0:00.18 tuned
   1916 polkitd   20   0  305736   7404   6552 S   0.0   0.1   0:00.06 polkitd
   2194 root      10 -10   13852  13836  12004 S   0.0   0.1   0:00.00 iscsid
   2223 oracle-+  20   0 1241748  24116  13376 S   0.0   0.2   0:00.32 updater
   2235 root      20   0  163276   7392   5908 S   0.0   0.1   0:00.11 rsyslogd
   2241 root      20   0    8760   6524   5348 S   0.0   0.1   0:00.00 sshd
   2250 root      20   0  535832  45340  13392 S   0.0   0.5   0:00.68 fluentd
   2255 oracle-+  20   0 1241480  25716  15412 S   0.0   0.3   0:00.35 agent
   2300 chrony    20   0   10400   2984   2392 S   0.0   0.0   0:00.00 chronyd
   2351 root      20   0    8296   3472   2596 S   0.0   0.0   0:00.00 crond
   2353 root      20   0    4980   2344   2108 S   0.0   0.0   0:00.00 agetty
   2355 root      20   0    7548   2616   2360 S   0.0   0.0   0:00.00 agetty
   2365 oracle-+  20   0 1241292  25904  15344 S   0.0   0.3   0:00.31 gomon
   2415 root      20   0   18544   7936   6460 S   0.0   0.1   0:00.01 sudo
   2445 ocarun    20   0   22240  13464  10324 S   0.0   0.1   0:00.11 systemd
   2456 ocarun    20   0   14432   2904   1548 S   0.0   0.0   0:00.00 (sd-pam)
   2530 ocarun    20   0 1245024  28932  18520 S   0.0   0.3   0:00.18 runcomm+
   2537 pcp       20   0   14012   7688   5820 S   0.0   0.1   0:00.17 pmcd
   2551 root      20   0   13900   5096   4132 S   0.0   0.1   0:00.00 pmdaroot
   2566 root      20   0   14308   6448   4420 S   0.0   0.1   0:00.19 pmdaproc
   2579 root      20   0   13116   4828   3908 S   0.0   0.0   0:00.00 pmdaxfs
   2580 root      20   0   14032   6348   4668 S   0.0   0.1   0:00.15 pmdalin+
   2581 oracle-+  20   0 1241956  26044  15824 S   0.0   0.3   0:00.60 unified+
   2585 root      20   0   31304  23008  11324 S   0.0   0.2   0:00.05 python3
   2639 root      20   0   13096   4812   3896 S   0.0   0.0   0:00.00 pmdakvm
   2642 root      20   0   14636   5584   4544 S   0.0   0.1   0:00.00 pmdadm
   2647 pcp       20   0  262712  33464  13272 S   0.0   0.3   0:00.14 python3
   3356 pcp       20   0   15600   8292   5300 S   0.0   0.1   0:00.13 pmlogger
   3365 pcp       20   0   13916   6584   5328 S   0.0   0.1   0:00.00 pmie
   3381 pcp       20   0   12808   4160   3304 S   0.0   0.0   0:00.00 pmpause
   3493 pcp       20   0   12808   4168   3308 S   0.0   0.0   0:00.00 pmpause
   3957 root      20   0  526092  39020  13264 S   0.0   0.4   0:00.48 ruby
  10377 root      20   0   15496  10656   8632 S   0.0   0.1   0:00.00 sshd-se+
  10382 opc       20   0   22248  13480  10352 S   0.0   0.1   0:00.06 systemd
  10384 root      20   0   16612   7336   6260 S   0.0   0.1   0:00.00 systemd+
  10385 opc       20   0   14432   2912   1560 S   0.0   0.0   0:00.00 (sd-pam)
  10394 opc       20   0   15884   8120   5800 S   0.0   0.1   0:00.57 sshd-se+
  10395 opc       20   0    7212   6176   5496 S   0.0   0.1   0:00.00 bash
  10425 root      20   0   18552   9944   8460 S   0.0   0.1   0:00.03 sudo
  10427 root      20   0   16612   7464   6384 S   0.0   0.1   0:00.00 systemd+
  10428 root      20   0   18552   2832   1352 S   0.0   0.0   0:00.00 sudo
  10429 root      20   0   10088   7140   6324 S   0.0   0.1   0:00.00 su
  10430 root      20   0    7328   6220   5508 S   0.0   0.1   0:00.03 bash
  10512 root      20   0       0      0      0 I   0.0   0.0   0:00.00 kworker+
  10721 root      20   0   15628  10648   8624 S   0.0   0.1   0:00.01 sshd-se+
  10724 root      20   0   16448   6920   5888 S   0.0   0.1   0:00.00 systemd+
  10725 opc       20   0   15888   8120   5800 S   0.0   0.1   0:00.00 sshd-se+
  10726 opc       20   0    7212   6156   5476 S   0.0   0.1   0:00.00 bash
  10756 opc       20   0   18036   3768   3048 S   0.0   0.0   0:07.49 iperf3
  10784 root      20   0   31896  26376   9788 S   0.0   0.3   0:00.10 python
  10799 root      20   0   10172   7220   5124 R   0.0   0.1   0:00.00 top
 1:  instance-20260614-1905.nabhaaspublicsu.nabhaasvcn.oraclevcn.com (10.10.3.88)   0.036ms reached
     Resume: pmtu 65535 hops 1 back 1 
[root@instance-20260614-1905 perf-results-client]# 

Enter fullscreen mode Exit fullscreen mode

Top comments (0)