OSHI Daemon
Abstract
The OSHI daemon measures and collects operating system and hardware information and can be installed on Linux and Windows systems.
Access to the measurement data is via a WebSocket API, whereby the authentication token of the OSHI daemon must be provided.
API Functions
The API supports the following functions (so-called “actions”):
- getAboutRealLoadOshiDaemon : Provides general information about the OSHI daemon, including its product version.
- getOperatingSystemInfo : Get general information about the operating system.
- getCpuInfo : Get a snapshot of the CPU information.
- getMemoryInfo : Get a snapshot of the memory information.
- getNetworkInfo : Get a snapshot of the network information.
- getNetworkConnectionsListInfo : Get a list of all TCP and UDP connections
- getDiskInfo: Get a snapshot of the local disks information.
- getFileSystemInfo : Get a snapshot of the file system information.
- getProcessListInfo : Get a list of all OS processes.
- getProcessInfo : Get a snapshot of a specific OS process information.
- getInternalLog : Get the last 2000 lines of the OSHI daemon log.
- getOshiInformationLastHistoricalSnapshot : Get a snapshot of the latest collected OSHI data without any overhead.
- subscribeToOshiInformation : Subscribe to OSHI real-time information.
- unsubscribeFromOshiInformation : Unsubscribe from OSHI real-time information.
WebSocket URL |
---|
wss://<oshi-daemon-host>:<oshi-daemon-port>/api |
The authentication token can either be passed as a HTTP request header field or as a query string parameter.
HTTP Request Header Fields | |
---|---|
authToken: <Authentication Token> | required |
subscribeToHeartbeat: true | optional, “true” or “false” |
Query String Parameters | |
---|---|
authToken | required |
subscribeToHeartbeat | optional, “true” or “false” |
Example: wss://192.168.1.27:8087/api?authToken=aaa&subscribeToHeartbeat=true
All API data are send and received in JSON data format. Numeric values of -1 (minus one) means “no such data available”. The API responses will never contain null values.
Runtime Behavior
- When the WebSocket connection is closed, all subscriptions are terminated.
- When you send an “action”, the action is confirmed with a response frame with the name of the action repeated.
- If you send an invalid “action”, the WebSocket connection will be closed.
- The WebSocket connection doesn’t last forever. It will be closed after a few hours. You then have to reestablish the WebSocket connection and renew the subscriptions.
Received Periodic Heartbeat
{
"action": "realtimeHeartbeat",
"timestamp": 1718904334079,
"isError": false
}
getAboutRealLoadOshiDaemon
- Send action : “getAboutRealLoadOshiDaemon”
{
"action":"getAboutRealLoadOshiDaemon"
}
- Received action: “getAboutRealLoadOshiDaemon”
{
"action": "getAboutRealLoadOshiDaemon",
"timestamp": 1719597333886,
"productVersion": "1.0.2",
"productReleaseDate": "25 Jun 2024",
"aboutThisOshiDaemonText": "This daemon runs in unprivileged mode, so some detailed values may not be captured or displayed.",
"aboutThisOshiDaemonSupportEmailAddress": "support@realload.com",
"collectOshiSubjectsList": "CPU,MEMORY,NETWORK",
"collectOshiSubjectsIntervalSeconds": 5,
"CollectOshiSubjectsMaxStorageTimeSeconds": 43200,
"isError": false
}
getOperatingSystemInfo
- Send action : “getOperatingSystemInfo”
{
"action":"getOperatingSystemInfo"
}
- Received action: “getOperatingSystemInfo”
{
"action": "getOperatingSystemInfo",
"operatingSystemInfo": {
"oshiSubject": "OPERATING_SYSTEM",
"infoTimestamp": 1718896045383,
"osManufacturer": "GNU/Linux",
"osFamily": "Ubuntu",
"osVersion": "20.04.6 LTS",
"osBuildNumber": "5.4.0-176-generic",
"systemBootTimestamp": 1715870847,
"systemUpTimeSeconds": 3025197,
"processCount": 145,
"threadCount": 243
},
"isError": false
}
getCpuInfo
- Send action : “getCpuInfo”
{
"action":"getCpuInfo"
}
- Received action: “getCpuInfo”
{
"action": "getCpuInfo",
"cpuInfo": {
"oshiSubject": "CPU",
"infoTimestamp": 1718896380637,
"infoDeltaMillis": 1217,
"physicalProcessorCount": 4,
"logicalProcessorCount": 4,
"logicalProcessorsCurrentFrequencyHz": 1129519488,
"logicalProcessorsMaxFrequencyHz": 2900000000,
"systemCpuLoadPercent": 3.3268101,
"totalContextSwitches": 1232984118,
"deltaContextSwitches": 891,
"contextSwitchesPerSecond": 732,
"totalInterrupts": 665000639,
"deltaInterrupts": 517,
"interruptsPerSecond": 425
},
"isError": false
}
getMemoryInfo
- Send action : “getMemoryInfo”
{
"action":"getMemoryInfo"
}
- Received action: “getMemoryInfo”
{
"action": "getMemoryInfo",
"memoryInfo": {
"oshiSubject": "MEMORY",
"infoTimestamp": 1718896700858,
"infoDeltaMillis": 1001,
"totalPhysicalMemoryGib": 15.372253,
"usedPhysicalMemoryGib": 1.142189,
"availablePhysicalMemoryGib": 14.230064,
"availablePhysicalMemoryPercent": 92.5698,
"maxVirtualMemoryGib": 11.686123,
"totalVirtualMemoryGib": 3.9999962,
"usedVirtualMemoryGib": 0,
"availableVirtualMemoryGib": 3.9999962,
"totalHardPageFaults": 0,
"deltaHardPageFaults": 0,
"hardPageFaultsPerSecond": 0,
"totalPagesWrittenToSwap": 0,
"deltaPagesWrittenToSwap": 0,
"pagesWrittenToSwapPerSecond": 0
},
"isError": false
}
getNetworkInfo
- Send action : “getNetworkInfo”
{
"action":"getNetworkInfo"
}
- Received action: “getNetworkInfo”
{
"action": "getNetworkInfo",
"networkInfo": {
"oshiSubject": "NETWORK",
"infoTimestamp": 1718897010024,
"infoDeltaMillis": 1017,
"hostName": "testsrv2",
"ipv4DefaultGateway": "192.168.1.1",
"ipv6DefaultGateway": "fe80::1",
"dnsServers": "127.0.0.53",
"networkInterfacesArray": [
{
"infoTimestamp": 1718897010036,
"infoDeltaMillis": 1014,
"interfaceName": "eno1",
"ipv4addresses": "192.168.1.27",
"ipv6addresses": "fe80:0:0:0:8aae:ddff:fe61:c693;2405:9800:b660:49c2:8aae:ddff:fe61:c693",
"totalBytesReceived": 1175037829,
"deltaBytesReceived": 0,
"receivedBytesPerSecond": 0,
"totalBytesSent": 337521916,
"deltaBytesSent": 54,
"sentBytesPerSecond": 53,
"totalInputErrors": 0,
"deltaInputErrors": 0,
"inputErrorsPerSecond": 0,
"totalOutputErrors": 0,
"deltaOutputErrors": 0,
"outputErrorsPerSecond": 0
},
{
"infoTimestamp": 1718897010036,
"infoDeltaMillis": 1012,
"interfaceName": "lo",
"ipv4addresses": "127.0.0.1",
"ipv6addresses": "0:0:0:0:0:0:0:1",
"totalBytesReceived": 489898,
"deltaBytesReceived": 0,
"receivedBytesPerSecond": 0,
"totalBytesSent": 489898,
"deltaBytesSent": 0,
"sentBytesPerSecond": 0,
"totalInputErrors": 0,
"deltaInputErrors": 0,
"inputErrorsPerSecond": 0,
"totalOutputErrors": 0,
"deltaOutputErrors": 0,
"outputErrorsPerSecond": 0
}
]
},
"isError": false
}
dnsServers, ipv4addresses and ipv6addresses are separated by semicolon “;”
getNetworkConnectionsListInfo
- Send action : “getNetworkConnectionsListInfo”
{
"action":"getNetworkConnectionsListInfo"
}
- Received action: “getNetworkConnectionsListInfo”
{
"action": "getNetworkConnectionsListInfo",
"networkConnectionsListInfo": {
"oshiSubject": "NETWORK_CONNECTIONS_LIST",
"infoTimestamp": 1718897492619,
"networkConnectionsStatisticArray": [
{
"protocolType": "tcp4",
"totalConnections": 6,
"connectionStatesArray": [
{
"connectionState": "UNKNOWN",
"numberOfConnections": 0
},
{
"connectionState": "CLOSED",
"numberOfConnections": 0
},
{
"connectionState": "LISTEN",
"numberOfConnections": 4
},
{
"connectionState": "SYN_SENT",
"numberOfConnections": 0
},
{
"connectionState": "SYN_RECV",
"numberOfConnections": 0
},
{
"connectionState": "ESTABLISHED",
"numberOfConnections": 2
},
{
"connectionState": "FIN_WAIT_1",
"numberOfConnections": 0
},
{
"connectionState": "FIN_WAIT_2",
"numberOfConnections": 0
},
{
"connectionState": "CLOSE_WAIT",
"numberOfConnections": 0
},
{
"connectionState": "CLOSING",
"numberOfConnections": 0
},
{
"connectionState": "LAST_ACK",
"numberOfConnections": 0
},
{
"connectionState": "TIME_WAIT",
"numberOfConnections": 0
},
{
"connectionState": "NONE",
"numberOfConnections": 0
}
]
},
{
"protocolType": "tcp6",
"totalConnections": 5,
"connectionStatesArray": [
{
"connectionState": "UNKNOWN",
"numberOfConnections": 0
},
{
"connectionState": "CLOSED",
"numberOfConnections": 0
},
{
"connectionState": "LISTEN",
"numberOfConnections": 4
},
{
"connectionState": "SYN_SENT",
"numberOfConnections": 0
},
{
"connectionState": "SYN_RECV",
"numberOfConnections": 0
},
{
"connectionState": "ESTABLISHED",
"numberOfConnections": 1
},
{
"connectionState": "FIN_WAIT_1",
"numberOfConnections": 0
},
{
"connectionState": "FIN_WAIT_2",
"numberOfConnections": 0
},
{
"connectionState": "CLOSE_WAIT",
"numberOfConnections": 0
},
{
"connectionState": "CLOSING",
"numberOfConnections": 0
},
{
"connectionState": "LAST_ACK",
"numberOfConnections": 0
},
{
"connectionState": "TIME_WAIT",
"numberOfConnections": 0
},
{
"connectionState": "NONE",
"numberOfConnections": 0
}
]
},
{
"protocolType": "udp4",
"totalConnections": 1
},
{
"protocolType": "udp6",
"totalConnections": 1
}
],
"networkConnectionsArray": [
{
"infoTimestamp": 1718897492639,
"protocolType": "tcp4",
"localAddress": "0.0.0.0",
"localPort": 22,
"remoteAddress": "0.0.0.0",
"remotePort": 0,
"hasConnectionState": true,
"connectionState": "LISTEN",
"ownerProcessId": -1
},
{
"infoTimestamp": 1718897492639,
"protocolType": "tcp4",
"localAddress": "127.0.0.1",
"localPort": 445,
"remoteAddress": "0.0.0.0",
"remotePort": 0,
"hasConnectionState": true,
"connectionState": "LISTEN",
"ownerProcessId": -1
},
{
"infoTimestamp": 1718897492639,
"protocolType": "tcp4",
"localAddress": "127.0.0.53",
"localPort": 53,
"remoteAddress": "0.0.0.0",
"remotePort": 0,
"hasConnectionState": true,
"connectionState": "LISTEN",
"ownerProcessId": -1
},
{
"infoTimestamp": 1718897492639,
"protocolType": "tcp4",
"localAddress": "192.168.1.27",
"localPort": 445,
"remoteAddress": "0.0.0.0",
"remotePort": 0,
"hasConnectionState": true,
"connectionState": "LISTEN",
"ownerProcessId": -1
},
{
"infoTimestamp": 1718897492639,
"protocolType": "tcp4",
"localAddress": "192.168.1.27",
"localPort": 445,
"remoteAddress": "192.168.1.111",
"remotePort": 50264,
"hasConnectionState": true,
"connectionState": "ESTABLISHED",
"ownerProcessId": -1
},
{
"infoTimestamp": 1718897492639,
"protocolType": "tcp4",
"localAddress": "192.168.1.27",
"localPort": 22,
"remoteAddress": "192.168.1.111",
"remotePort": 50271,
"hasConnectionState": true,
"connectionState": "ESTABLISHED",
"ownerProcessId": -1
},
{
"infoTimestamp": 1718897492639,
"protocolType": "tcp6",
"localAddress": "0:0:0:0:0:0:0:0",
"localPort": 22,
"remoteAddress": "0:0:0:0:0:0:0:0",
"remotePort": 0,
"hasConnectionState": true,
"connectionState": "LISTEN",
"ownerProcessId": -1
},
{
"infoTimestamp": 1718897492639,
"protocolType": "tcp6",
"localAddress": "0:0:0:0:0:0:0:0",
"localPort": 8080,
"remoteAddress": "0:0:0:0:0:0:0:0",
"remotePort": 0,
"hasConnectionState": true,
"connectionState": "LISTEN",
"ownerProcessId": 538572
},
{
"infoTimestamp": 1718897492639,
"protocolType": "tcp6",
"localAddress": "0:0:0:0:0:0:0:0",
"localPort": 8087,
"remoteAddress": "0:0:0:0:0:0:0:0",
"remotePort": 0,
"hasConnectionState": true,
"connectionState": "LISTEN",
"ownerProcessId": 908934
},
{
"infoTimestamp": 1718897492639,
"protocolType": "tcp6",
"localAddress": "0:0:0:0:0:0:0:1",
"localPort": 445,
"remoteAddress": "0:0:0:0:0:0:0:0",
"remotePort": 0,
"hasConnectionState": true,
"connectionState": "LISTEN",
"ownerProcessId": -1
},
{
"infoTimestamp": 1718897492639,
"protocolType": "tcp6",
"localAddress": "192.168.1.27",
"localPort": 8087,
"remoteAddress": "192.168.1.111",
"remotePort": 50436,
"hasConnectionState": true,
"connectionState": "ESTABLISHED",
"ownerProcessId": 908934
},
{
"infoTimestamp": 1718897492639,
"protocolType": "udp4",
"localAddress": "127.0.0.53",
"localPort": 53,
"remoteAddress": "0.0.0.0",
"remotePort": 0,
"hasConnectionState": true,
"connectionState": "CLOSED",
"ownerProcessId": -1
},
{
"infoTimestamp": 1718897492639,
"protocolType": "udp6",
"localAddress": "fe80:0:0:0:8aae:ddff:fe61:c693",
"localPort": 546,
"remoteAddress": "0:0:0:0:0:0:0:0",
"remotePort": 0,
"hasConnectionState": true,
"connectionState": "CLOSED",
"ownerProcessId": -1
}
]
},
"isError": false
}
getDiskInfo
- Send action : “getDiskInfo”
{
"action":"getDiskInfo"
}
- Received action: “getDiskInfo”
{
"action": "getDiskInfo",
"diskInfo": {
"oshiSubject": "DISK",
"infoTimestamp": 1718897951366,
"infoDeltaMillis": 1019,
"diskStoresArray": [
{
"infoTimestamp": 1718897951374,
"infoDeltaMillis": 1008,
"diskStoreName": "/dev/nvme0n1",
"diskModel": "TS256GMTE110S",
"diskSizeBytes": 256060514304,
"diskSizeGiB": 238.47495,
"totalReads": 46638,
"deltaReads": 0,
"readsPerSecond": 0,
"totalWrites": 1845791,
"deltaWrites": 9,
"writesPerSecond": 9,
"currentQueueLength": 0,
"totalTransferTimeMillis": 28982448,
"averageTransferTimeMillis": 15
}
]
},
"isError": false
}
getFileSystemInfo
- Send action : “getFileSystemInfo”
{
"action":"getFileSystemInfo"
}
- Received action: “getFileSystemInfo”
{
"action": "getFileSystemInfo",
"fileSystemInfo": {
"oshiSubject": "FILE_SYSTEM",
"infoTimestamp": 1718898323480,
"fileStoresArray": [
{
"infoTimestamp": 1718898323510,
"fileStoreName": "/",
"mountPoint": "/",
"totalSpaceBytes": 250374057984,
"totalSpaceGiB": 233.17902,
"freeSpaceBytes": 228211507200,
"freeSpaceGiB": 212.53853,
"freeSpacePercent": 91.148224
},
{
"infoTimestamp": 1718898323518,
"fileStoreName": "/dev/nvme0n1p1",
"mountPoint": "/boot/efi",
"totalSpaceBytes": 535805952,
"totalSpaceGiB": 0.49900818,
"freeSpaceBytes": 529436672,
"freeSpaceGiB": 0.49307632,
"freeSpacePercent": 98.81127
}
]
},
"isError": false
}
getProcessListInfo
- Send action : “getProcessListInfo”
{
"action":"getProcessListInfo"
}
- Received action: “getProcessListInfo”
{
"action": "getProcessListInfo",
"processListInfo": {
"oshiSubject": "PROCESS_LIST",
"infoTimestamp": 1718898633165,
"infoDeltaMillis": -1,
"processStatesArray": [
{
"processState": "NEW",
"numberProcesses": 0
},
{
"processState": "RUNNING",
"numberProcesses": 0
},
{
"processState": "SLEEPING",
"numberProcesses": 89
},
{
"processState": "WAITING",
"numberProcesses": 0
},
{
"processState": "ZOMBIE",
"numberProcesses": 0
},
{
"processState": "STOPPED",
"numberProcesses": 0
},
{
"processState": "OTHER",
"numberProcesses": 55
},
{
"processState": "INVALID",
"numberProcesses": 0
},
{
"processState": "SUSPENDED",
"numberProcesses": 0
}
],
"osProcessesArray": [
{
"infoTimestamp": 1718898633236,
"infoDeltaMillis": -1,
"processId": 1,
"parentProcessId": 0,
"processStartTimestamp": 1715870847120,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "systemd",
"commandLine": "/sbin/init",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.0015222344,
"totalSoftPageFaults": 231198,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 100,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 173506560,
"virtualMemoryMiB": 165.46875,
"physicalMemoryBytes": 13393920,
"physicalMemoryMiB": 12.7734375,
"physicalMemoryPercent": 0.08114659,
"totalKernelTimeMillis": 20310,
"totalUserTimeMillis": 25780,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633237,
"infoDeltaMillis": -1,
"processId": 2,
"parentProcessId": 0,
"processStartTimestamp": 1715870847120,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "kthreadd",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.000011889875,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 360,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633237,
"infoDeltaMillis": -1,
"processId": 3,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "rcu_gp",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633238,
"infoDeltaMillis": -1,
"processId": 4,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "rcu_par_gp",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633238,
"infoDeltaMillis": -1,
"processId": 6,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "kworker/0:0H-kblockd",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633238,
"infoDeltaMillis": -1,
"processId": 8,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "mm_percpu_wq",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633239,
"infoDeltaMillis": -1,
"processId": 9,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "ksoftirqd/0",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.00023911861,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 7230,
"totalUserTimeMillis": 10,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633240,
"infoDeltaMillis": -1,
"processId": 10,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": 20,
"processState": "OTHER",
"userId": "0",
"processName": "rcu_sched",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.016911367,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 512010,
"totalUserTimeMillis": 30,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633240,
"infoDeltaMillis": -1,
"processId": 11,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": -100,
"processState": "SLEEPING",
"userId": "0",
"processName": "migration/0",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.00063709915,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 19290,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633241,
"infoDeltaMillis": -1,
"processId": 12,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": -51,
"processState": "SLEEPING",
"userId": "0",
"processName": "idle_inject/0",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633241,
"infoDeltaMillis": -1,
"processId": 14,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "cpuhp/0",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633242,
"infoDeltaMillis": -1,
"processId": 15,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "cpuhp/1",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633243,
"infoDeltaMillis": -1,
"processId": 16,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": -51,
"processState": "SLEEPING",
"userId": "0",
"processName": "idle_inject/1",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633243,
"infoDeltaMillis": -1,
"processId": 17,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": -100,
"processState": "SLEEPING",
"userId": "0",
"processName": "migration/1",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.00064007164,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 6030,
"totalUserTimeMillis": 13350,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633244,
"infoDeltaMillis": -1,
"processId": 18,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "ksoftirqd/1",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.00022029298,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 6670,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633245,
"infoDeltaMillis": -1,
"processId": 20,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "kworker/1:0H-kblockd",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633246,
"infoDeltaMillis": -1,
"processId": 21,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "cpuhp/2",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633246,
"infoDeltaMillis": -1,
"processId": 22,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": -51,
"processState": "SLEEPING",
"userId": "0",
"processName": "idle_inject/2",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633247,
"infoDeltaMillis": -1,
"processId": 23,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": -100,
"processState": "SLEEPING",
"userId": "0",
"processName": "migration/2",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.000645356,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 19420,
"totalUserTimeMillis": 120,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633247,
"infoDeltaMillis": -1,
"processId": 24,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "ksoftirqd/2",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.00020179761,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 6090,
"totalUserTimeMillis": 20,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633247,
"infoDeltaMillis": -1,
"processId": 26,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "kworker/2:0H-kblockd",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633247,
"infoDeltaMillis": -1,
"processId": 27,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "cpuhp/3",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633248,
"infoDeltaMillis": -1,
"processId": 28,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": -51,
"processState": "SLEEPING",
"userId": "0",
"processName": "idle_inject/3",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633248,
"infoDeltaMillis": -1,
"processId": 29,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": -100,
"processState": "SLEEPING",
"userId": "0",
"processName": "migration/3",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.0006470074,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 19470,
"totalUserTimeMillis": 120,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633249,
"infoDeltaMillis": -1,
"processId": 30,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "ksoftirqd/3",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.00025001765,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 7550,
"totalUserTimeMillis": 20,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633249,
"infoDeltaMillis": -1,
"processId": 32,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "kworker/3:0H-kblockd",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633249,
"infoDeltaMillis": -1,
"processId": 33,
"parentProcessId": 2,
"processStartTimestamp": 1715870847120,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "kdevtmpfs",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633249,
"infoDeltaMillis": -1,
"processId": 34,
"parentProcessId": 2,
"processStartTimestamp": 1715870847130,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "netns",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633249,
"infoDeltaMillis": -1,
"processId": 35,
"parentProcessId": 2,
"processStartTimestamp": 1715870847130,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "rcu_tasks_kthre",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633250,
"infoDeltaMillis": -1,
"processId": 36,
"parentProcessId": 2,
"processStartTimestamp": 1715870847130,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "kauditd",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633250,
"infoDeltaMillis": -1,
"processId": 37,
"parentProcessId": 2,
"processStartTimestamp": 1715870847130,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "khungtaskd",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.00007166953,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 2170,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633250,
"infoDeltaMillis": -1,
"processId": 38,
"parentProcessId": 2,
"processStartTimestamp": 1715870847130,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "oom_reaper",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633250,
"infoDeltaMillis": -1,
"processId": 39,
"parentProcessId": 2,
"processStartTimestamp": 1715870847130,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "writeback",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633250,
"infoDeltaMillis": -1,
"processId": 40,
"parentProcessId": 2,
"processStartTimestamp": 1715870847130,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "kcompactd0",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633250,
"infoDeltaMillis": -1,
"processId": 41,
"parentProcessId": 2,
"processStartTimestamp": 1715870847130,
"processPriority": 25,
"processState": "SLEEPING",
"userId": "0",
"processName": "ksmd",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633251,
"infoDeltaMillis": -1,
"processId": 42,
"parentProcessId": 2,
"processStartTimestamp": 1715870847130,
"processPriority": 39,
"processState": "SLEEPING",
"userId": "0",
"processName": "khugepaged",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633254,
"infoDeltaMillis": -1,
"processId": 89,
"parentProcessId": 2,
"processStartTimestamp": 1715870847130,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "kintegrityd",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633255,
"infoDeltaMillis": -1,
"processId": 90,
"parentProcessId": 2,
"processStartTimestamp": 1715870847130,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "kblockd",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633255,
"infoDeltaMillis": -1,
"processId": 91,
"parentProcessId": 2,
"processStartTimestamp": 1715870847130,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "blkcg_punt_bio",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633256,
"infoDeltaMillis": -1,
"processId": 94,
"parentProcessId": 2,
"processStartTimestamp": 1715870848160,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "tpm_dev_wq",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633256,
"infoDeltaMillis": -1,
"processId": 95,
"parentProcessId": 2,
"processStartTimestamp": 1715870848160,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "ata_sff",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633256,
"infoDeltaMillis": -1,
"processId": 96,
"parentProcessId": 2,
"processStartTimestamp": 1715870848160,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "md",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633256,
"infoDeltaMillis": -1,
"processId": 97,
"parentProcessId": 2,
"processStartTimestamp": 1715870848160,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "edac-poller",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633257,
"infoDeltaMillis": -1,
"processId": 98,
"parentProcessId": 2,
"processStartTimestamp": 1715870848160,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "devfreq_wq",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633257,
"infoDeltaMillis": -1,
"processId": 99,
"parentProcessId": 2,
"processStartTimestamp": 1715870848180,
"processPriority": -100,
"processState": "SLEEPING",
"userId": "0",
"processName": "watchdogd",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633257,
"infoDeltaMillis": -1,
"processId": 102,
"parentProcessId": 2,
"processStartTimestamp": 1715870848440,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "kswapd0",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633257,
"infoDeltaMillis": -1,
"processId": 103,
"parentProcessId": 2,
"processStartTimestamp": 1715870848440,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "ecryptfs-kthrea",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633258,
"infoDeltaMillis": -1,
"processId": 105,
"parentProcessId": 2,
"processStartTimestamp": 1715870848440,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "kthrotld",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633258,
"infoDeltaMillis": -1,
"processId": 106,
"parentProcessId": 2,
"processStartTimestamp": 1715870848560,
"processPriority": -51,
"processState": "SLEEPING",
"userId": "0",
"processName": "irq/122-aerdrv",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633258,
"infoDeltaMillis": -1,
"processId": 107,
"parentProcessId": 2,
"processStartTimestamp": 1715870848560,
"processPriority": -51,
"processState": "SLEEPING",
"userId": "0",
"processName": "irq/122-pcie-dp",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633258,
"infoDeltaMillis": -1,
"processId": 108,
"parentProcessId": 2,
"processStartTimestamp": 1715870848560,
"processPriority": -51,
"processState": "SLEEPING",
"userId": "0",
"processName": "irq/123-aerdrv",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633258,
"infoDeltaMillis": -1,
"processId": 109,
"parentProcessId": 2,
"processStartTimestamp": 1715870848560,
"processPriority": -51,
"processState": "SLEEPING",
"userId": "0",
"processName": "irq/123-pcie-dp",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633259,
"infoDeltaMillis": -1,
"processId": 110,
"parentProcessId": 2,
"processStartTimestamp": 1715870848560,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "acpi_thermal_pm",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633259,
"infoDeltaMillis": -1,
"processId": 111,
"parentProcessId": 2,
"processStartTimestamp": 1715870848710,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "vfio-irqfd-clea",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633259,
"infoDeltaMillis": -1,
"processId": 112,
"parentProcessId": 2,
"processStartTimestamp": 1715870848730,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "ipv6_addrconf",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633261,
"infoDeltaMillis": -1,
"processId": 121,
"parentProcessId": 2,
"processStartTimestamp": 1715870848730,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "kstrp",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633261,
"infoDeltaMillis": -1,
"processId": 124,
"parentProcessId": 2,
"processStartTimestamp": 1715870848740,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "kworker/u9:0-hci0",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.000003963294,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 120,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633262,
"infoDeltaMillis": -1,
"processId": 139,
"parentProcessId": 2,
"processStartTimestamp": 1715870848770,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "charger_manager",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633268,
"infoDeltaMillis": -1,
"processId": 206,
"parentProcessId": 2,
"processStartTimestamp": 1715870848930,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "scsi_eh_0",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633268,
"infoDeltaMillis": -1,
"processId": 207,
"parentProcessId": 2,
"processStartTimestamp": 1715870848930,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "scsi_tmf_0",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633268,
"infoDeltaMillis": -1,
"processId": 208,
"parentProcessId": 2,
"processStartTimestamp": 1715870848930,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "scsi_eh_1",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633268,
"infoDeltaMillis": -1,
"processId": 209,
"parentProcessId": 2,
"processStartTimestamp": 1715870848930,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "nvme-wq",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633268,
"infoDeltaMillis": -1,
"processId": 210,
"parentProcessId": 2,
"processStartTimestamp": 1715870848930,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "sdhci",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633269,
"infoDeltaMillis": -1,
"processId": 211,
"parentProcessId": 2,
"processStartTimestamp": 1715870848930,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "nvme-reset-wq",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633269,
"infoDeltaMillis": -1,
"processId": 212,
"parentProcessId": 2,
"processStartTimestamp": 1715870848930,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "cryptd",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633269,
"infoDeltaMillis": -1,
"processId": 213,
"parentProcessId": 2,
"processStartTimestamp": 1715870848940,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "nvme-delete-wq",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633269,
"infoDeltaMillis": -1,
"processId": 214,
"parentProcessId": 2,
"processStartTimestamp": 1715870848940,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "scsi_tmf_1",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633271,
"infoDeltaMillis": -1,
"processId": 230,
"parentProcessId": 2,
"processStartTimestamp": 1715870848940,
"processPriority": -51,
"processState": "SLEEPING",
"userId": "0",
"processName": "irq/16-mmc0",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633239,
"infoDeltaMillis": -1,
"processId": 264,
"parentProcessId": 2,
"processStartTimestamp": 1715870851200,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "raid5wq",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633251,
"infoDeltaMillis": -1,
"processId": 306,
"parentProcessId": 2,
"processStartTimestamp": 1715870851310,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "kworker/1:1H-kblockd",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.00023350427,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 7050,
"totalUserTimeMillis": 20,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633252,
"infoDeltaMillis": -1,
"processId": 308,
"parentProcessId": 2,
"processStartTimestamp": 1715870851320,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "jbd2/nvme0n1p2-",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.0033569129,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 101640,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633252,
"infoDeltaMillis": -1,
"processId": 309,
"parentProcessId": 2,
"processStartTimestamp": 1715870851320,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "ext4-rsv-conver",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633261,
"infoDeltaMillis": -1,
"processId": 379,
"parentProcessId": 1,
"processStartTimestamp": 1715870853030,
"processPriority": 19,
"processState": "SLEEPING",
"userId": "0",
"processName": "systemd-journal",
"commandLine": "/lib/systemd/systemd-journald",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.00014862373,
"totalSoftPageFaults": 77311,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 102,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 63934464,
"virtualMemoryMiB": 60.972656,
"physicalMemoryBytes": 16384000,
"physicalMemoryMiB": 15.625,
"physicalMemoryPercent": 0.09926189,
"totalKernelTimeMillis": 3290,
"totalUserTimeMillis": 1210,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633264,
"infoDeltaMillis": -1,
"processId": 404,
"parentProcessId": 2,
"processStartTimestamp": 1715870853100,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "kworker/0:1H-kblockd",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.0002374677,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 7190,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633265,
"infoDeltaMillis": -1,
"processId": 416,
"parentProcessId": 2,
"processStartTimestamp": 1715870853150,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "kworker/3:1H-kblockd",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.00024704568,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 7480,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633265,
"infoDeltaMillis": -1,
"processId": 418,
"parentProcessId": 2,
"processStartTimestamp": 1715870853170,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "kworker/2:1H-kblockd",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.0002506787,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 7590,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633265,
"infoDeltaMillis": -1,
"processId": 421,
"parentProcessId": 1,
"processStartTimestamp": 1715870853230,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "systemd-udevd",
"commandLine": "/lib/systemd/systemd-udevd",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.000399963,
"totalSoftPageFaults": 278140,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 5,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 22634496,
"virtualMemoryMiB": 21.585938,
"physicalMemoryBytes": 5697536,
"physicalMemoryMiB": 5.4335938,
"physicalMemoryPercent": 0.03451832,
"totalKernelTimeMillis": 9460,
"totalUserTimeMillis": 2650,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633271,
"infoDeltaMillis": -1,
"processId": 492,
"parentProcessId": 2,
"processStartTimestamp": 1715870853650,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "kworker/u9:2-hci0",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633272,
"infoDeltaMillis": -1,
"processId": 505,
"parentProcessId": 2,
"processStartTimestamp": 1715870853690,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "kaluad",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633272,
"infoDeltaMillis": -1,
"processId": 507,
"parentProcessId": 2,
"processStartTimestamp": 1715870853690,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "kmpath_rdacd",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633272,
"infoDeltaMillis": -1,
"processId": 508,
"parentProcessId": 2,
"processStartTimestamp": 1715870853690,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "kmpathd",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633272,
"infoDeltaMillis": -1,
"processId": 509,
"parentProcessId": 2,
"processStartTimestamp": 1715870853690,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "kmpath_handlerd",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633273,
"infoDeltaMillis": -1,
"processId": 510,
"parentProcessId": 1,
"processStartTimestamp": 1715870853690,
"processPriority": -100,
"processState": "SLEEPING",
"userId": "0",
"processName": "multipathd",
"commandLine": "/sbin/multipathd -d -s",
"threadCount": 7,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.013510231,
"totalSoftPageFaults": 3016,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 6,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 286859264,
"virtualMemoryMiB": 273.5703,
"physicalMemoryBytes": 18378752,
"physicalMemoryMiB": 17.527344,
"physicalMemoryPercent": 0.11134703,
"totalKernelTimeMillis": 217010,
"totalUserTimeMillis": 192050,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633244,
"infoDeltaMillis": -1,
"processId": 530,
"parentProcessId": 2,
"processStartTimestamp": 1715870853740,
"processPriority": 0,
"processState": "SLEEPING",
"userId": "0",
"processName": "loop1",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633245,
"infoDeltaMillis": -1,
"processId": 532,
"parentProcessId": 2,
"processStartTimestamp": 1715870853760,
"processPriority": 0,
"processState": "SLEEPING",
"userId": "0",
"processName": "loop2",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633246,
"infoDeltaMillis": -1,
"processId": 534,
"parentProcessId": 2,
"processStartTimestamp": 1715870853780,
"processPriority": 0,
"processState": "SLEEPING",
"userId": "0",
"processName": "loop4",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633248,
"infoDeltaMillis": -1,
"processId": 539,
"parentProcessId": 2,
"processStartTimestamp": 1715870853900,
"processPriority": 0,
"processState": "SLEEPING",
"userId": "0",
"processName": "loop8",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 9.908251e-7,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 30,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633248,
"infoDeltaMillis": -1,
"processId": 541,
"parentProcessId": 2,
"processStartTimestamp": 1715870853940,
"processPriority": 0,
"processState": "SLEEPING",
"userId": "0",
"processName": "loop9",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633251,
"infoDeltaMillis": -1,
"processId": 562,
"parentProcessId": 1,
"processStartTimestamp": 1715870853990,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "102",
"processName": "systemd-timesyn",
"commandLine": "/lib/systemd/systemd-timesyncd",
"threadCount": 2,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.00037684385,
"totalSoftPageFaults": 813,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 2,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 93069312,
"virtualMemoryMiB": 88.75781,
"physicalMemoryBytes": 6275072,
"physicalMemoryMiB": 5.984375,
"physicalMemoryPercent": 0.038017303,
"totalKernelTimeMillis": 9110,
"totalUserTimeMillis": 2300,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633253,
"infoDeltaMillis": -1,
"processId": 573,
"parentProcessId": 1,
"processStartTimestamp": 1715870854020,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "haveged",
"commandLine": "/usr/sbin/haveged --Foreground --verbose=1 -w 1024",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.0000066055013,
"totalSoftPageFaults": 1324,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 2,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 8495104,
"virtualMemoryMiB": 8.1015625,
"physicalMemoryBytes": 5033984,
"physicalMemoryMiB": 4.8007812,
"physicalMemoryPercent": 0.030498216,
"totalKernelTimeMillis": 10,
"totalUserTimeMillis": 190,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633257,
"infoDeltaMillis": -1,
"processId": 610,
"parentProcessId": 1,
"processStartTimestamp": 1715870854760,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "100",
"processName": "systemd-network",
"commandLine": "/lib/systemd/systemd-networkd",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.0008395594,
"totalSoftPageFaults": 823,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 17,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 19537920,
"virtualMemoryMiB": 18.632812,
"physicalMemoryBytes": 7802880,
"physicalMemoryMiB": 7.4414062,
"physicalMemoryPercent": 0.047273476,
"totalKernelTimeMillis": 18110,
"totalUserTimeMillis": 7310,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633257,
"infoDeltaMillis": -1,
"processId": 612,
"parentProcessId": 1,
"processStartTimestamp": 1715870854810,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "101",
"processName": "systemd-resolve",
"commandLine": "/lib/systemd/systemd-resolved",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.0010555594,
"totalSoftPageFaults": 1739,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 27,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 25276416,
"virtualMemoryMiB": 24.105469,
"physicalMemoryBytes": 12636160,
"physicalMemoryMiB": 12.050781,
"physicalMemoryPercent": 0.07655573,
"totalKernelTimeMillis": 17670,
"totalUserTimeMillis": 14290,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633260,
"infoDeltaMillis": -1,
"processId": 624,
"parentProcessId": 1,
"processStartTimestamp": 1715870859170,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "accounts-daemon",
"commandLine": "/usr/lib/accountsservice/accounts-daemon",
"threadCount": 3,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.00295993,
"totalSoftPageFaults": 668,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 13,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 241311744,
"virtualMemoryMiB": 230.13281,
"physicalMemoryBytes": 7692288,
"physicalMemoryMiB": 7.3359375,
"physicalMemoryPercent": 0.046603456,
"totalKernelTimeMillis": 49760,
"totalUserTimeMillis": 39860,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633260,
"infoDeltaMillis": -1,
"processId": 627,
"parentProcessId": 1,
"processStartTimestamp": 1715870859180,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "cron",
"commandLine": "/usr/sbin/cron -f",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.00023713791,
"totalSoftPageFaults": 10782,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 1,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 6979584,
"virtualMemoryMiB": 6.65625,
"physicalMemoryBytes": 3178496,
"physicalMemoryMiB": 3.03125,
"physicalMemoryPercent": 0.019256806,
"totalKernelTimeMillis": 4670,
"totalUserTimeMillis": 2510,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633261,
"infoDeltaMillis": -1,
"processId": 629,
"parentProcessId": 1,
"processStartTimestamp": 1715870859180,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "103",
"processName": "dbus-daemon",
"commandLine": "/usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.0002873398,
"totalSoftPageFaults": 474,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 4,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 7888896,
"virtualMemoryMiB": 7.5234375,
"physicalMemoryBytes": 5087232,
"physicalMemoryMiB": 4.8515625,
"physicalMemoryPercent": 0.030820817,
"totalKernelTimeMillis": 1670,
"totalUserTimeMillis": 7030,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633262,
"infoDeltaMillis": -1,
"processId": 637,
"parentProcessId": 1,
"processStartTimestamp": 1715870859190,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "irqbalance",
"commandLine": "/usr/sbin/irqbalance --foreground",
"threadCount": 2,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.007629367,
"totalSoftPageFaults": 440,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 2,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 83849216,
"virtualMemoryMiB": 79.96484,
"physicalMemoryBytes": 3702784,
"physicalMemoryMiB": 3.53125,
"physicalMemoryPercent": 0.022433186,
"totalKernelTimeMillis": 159860,
"totalUserTimeMillis": 71140,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633262,
"infoDeltaMillis": -1,
"processId": 641,
"parentProcessId": 1,
"processStartTimestamp": 1715870859190,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "networkd-dispat",
"commandLine": "/usr/bin/python3 /usr/bin/networkd-dispatcher --run-startup-triggers",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.00031012882,
"totalSoftPageFaults": 3295,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 7,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 30355456,
"virtualMemoryMiB": 28.949219,
"physicalMemoryBytes": 19165184,
"physicalMemoryMiB": 18.277344,
"physicalMemoryPercent": 0.11611159,
"totalKernelTimeMillis": 880,
"totalUserTimeMillis": 8510,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633262,
"infoDeltaMillis": -1,
"processId": 644,
"parentProcessId": 1,
"processStartTimestamp": 1715870859200,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "104",
"processName": "rsyslogd",
"commandLine": "/usr/sbin/rsyslogd -n -iNONE",
"threadCount": 4,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.000038972525,
"totalSoftPageFaults": 660,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 10,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 229728256,
"virtualMemoryMiB": 219.08594,
"physicalMemoryBytes": 5111808,
"physicalMemoryMiB": 4.875,
"physicalMemoryPercent": 0.03096971,
"totalKernelTimeMillis": 700,
"totalUserTimeMillis": 480,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633263,
"infoDeltaMillis": -1,
"processId": 651,
"parentProcessId": 1,
"processStartTimestamp": 1715870859210,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "systemd-logind",
"commandLine": "/lib/systemd/systemd-logind",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.00024803702,
"totalSoftPageFaults": 886,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 2,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 18206720,
"virtualMemoryMiB": 17.363281,
"physicalMemoryBytes": 8396800,
"physicalMemoryMiB": 8.0078125,
"physicalMemoryPercent": 0.05087172,
"totalKernelTimeMillis": 6170,
"totalUserTimeMillis": 1340,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633263,
"infoDeltaMillis": -1,
"processId": 658,
"parentProcessId": 1,
"processStartTimestamp": 1715870859220,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "thermald",
"commandLine": "/usr/sbin/thermald --systemd --dbus-enable --adaptive",
"threadCount": 2,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.0072194953,
"totalSoftPageFaults": 557,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 35,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 126574592,
"virtualMemoryMiB": 120.71094,
"physicalMemoryBytes": 10469376,
"physicalMemoryMiB": 9.984375,
"physicalMemoryPercent": 0.06342835,
"totalKernelTimeMillis": 125740,
"totalUserTimeMillis": 92850,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633264,
"infoDeltaMillis": -1,
"processId": 662,
"parentProcessId": 1,
"processStartTimestamp": 1715870859220,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "atd",
"commandLine": "/usr/sbin/atd -f",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.000001981654,
"totalSoftPageFaults": 222,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 1,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 3887104,
"virtualMemoryMiB": 3.7070312,
"physicalMemoryBytes": 2363392,
"physicalMemoryMiB": 2.2539062,
"physicalMemoryPercent": 0.014318528,
"totalKernelTimeMillis": 60,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633265,
"infoDeltaMillis": -1,
"processId": 677,
"parentProcessId": 1,
"processStartTimestamp": 1715870859260,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "agetty",
"commandLine": "/sbin/agetty -o -p -- \\u --noclear tty1 linux",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 204,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 2,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 5967872,
"virtualMemoryMiB": 5.6914062,
"physicalMemoryBytes": 1916928,
"physicalMemoryMiB": 1.828125,
"physicalMemoryPercent": 0.011613641,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633266,
"infoDeltaMillis": -1,
"processId": 694,
"parentProcessId": 1,
"processStartTimestamp": 1715870859290,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "sshd",
"commandLine": "sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 3.3027564e-7,
"totalSoftPageFaults": 725,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 12480512,
"virtualMemoryMiB": 11.902344,
"physicalMemoryBytes": 7630848,
"physicalMemoryMiB": 7.2773438,
"physicalMemoryPercent": 0.046231225,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 10,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633267,
"infoDeltaMillis": -1,
"processId": 711,
"parentProcessId": 1,
"processStartTimestamp": 1715870859350,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "unattended-upgr",
"commandLine": "/usr/bin/python3 /usr/share/unattended-upgrades/unattended-upgrade-shutdown --wait-for-signal",
"threadCount": 2,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.0000023119296,
"totalSoftPageFaults": 2490,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 15,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 110485504,
"virtualMemoryMiB": 105.36719,
"physicalMemoryBytes": 21413888,
"physicalMemoryMiB": 20.421875,
"physicalMemoryPercent": 0.12973529,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 70,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633267,
"infoDeltaMillis": -1,
"processId": 712,
"parentProcessId": 1,
"processStartTimestamp": 1715870859350,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "polkitd",
"commandLine": "/usr/lib/policykit-1/polkitd --no-debug",
"threadCount": 3,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.0000062752374,
"totalSoftPageFaults": 506,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 2,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 238309376,
"virtualMemoryMiB": 227.26953,
"physicalMemoryBytes": 7217152,
"physicalMemoryMiB": 6.8828125,
"physicalMemoryPercent": 0.04372486,
"totalKernelTimeMillis": 20,
"totalUserTimeMillis": 170,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633270,
"infoDeltaMillis": -1,
"processId": 736,
"parentProcessId": 1,
"processStartTimestamp": 1715870859510,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "smbd",
"commandLine": "/usr/sbin/smbd --foreground --no-process-group",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.00026653247,
"totalSoftPageFaults": 87828,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 84,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 86765568,
"virtualMemoryMiB": 82.74609,
"physicalMemoryBytes": 26550272,
"physicalMemoryMiB": 25.320312,
"physicalMemoryPercent": 0.1608539,
"totalKernelTimeMillis": 7480,
"totalUserTimeMillis": 590,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633271,
"infoDeltaMillis": -1,
"processId": 760,
"parentProcessId": 736,
"processStartTimestamp": 1715870859950,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "smbd-notifyd",
"commandLine": "/usr/sbin/smbd --foreground --no-process-group",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.00023779852,
"totalSoftPageFaults": 309,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 1,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 84557824,
"virtualMemoryMiB": 80.640625,
"physicalMemoryBytes": 10928128,
"physicalMemoryMiB": 10.421875,
"physicalMemoryPercent": 0.06620768,
"totalKernelTimeMillis": 3990,
"totalUserTimeMillis": 3210,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633272,
"infoDeltaMillis": -1,
"processId": 761,
"parentProcessId": 736,
"processStartTimestamp": 1715870859950,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "cleanupd",
"commandLine": "/usr/sbin/smbd --foreground --no-process-group",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.00023086273,
"totalSoftPageFaults": 226,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 84566016,
"virtualMemoryMiB": 80.64844,
"physicalMemoryBytes": 8273920,
"physicalMemoryMiB": 7.890625,
"physicalMemoryPercent": 0.050127253,
"totalKernelTimeMillis": 4140,
"totalUserTimeMillis": 2850,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633259,
"infoDeltaMillis": -1,
"processId": 1389,
"parentProcessId": 2,
"processStartTimestamp": 1715871242570,
"processPriority": 0,
"processState": "SLEEPING",
"userId": "0",
"processName": "loop10",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 6.606349e-7,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 20,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633243,
"infoDeltaMillis": -1,
"processId": 1807,
"parentProcessId": 2,
"processStartTimestamp": 1715871292840,
"processPriority": 0,
"processState": "SLEEPING",
"userId": "0",
"processName": "loop6",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633256,
"infoDeltaMillis": -1,
"processId": 2145,
"parentProcessId": 2,
"processStartTimestamp": 1715871929840,
"processPriority": 0,
"processState": "SLEEPING",
"userId": "0",
"processName": "loop0",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633251,
"infoDeltaMillis": -1,
"processId": 27184,
"parentProcessId": 2,
"processStartTimestamp": 1715926278320,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "xfsalloc",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633251,
"infoDeltaMillis": -1,
"processId": 27185,
"parentProcessId": 2,
"processStartTimestamp": 1715926278320,
"processPriority": 0,
"processState": "OTHER",
"userId": "0",
"processName": "xfs_mru_cache",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633252,
"infoDeltaMillis": -1,
"processId": 27192,
"parentProcessId": 2,
"processStartTimestamp": 1715926278320,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "jfsIO",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633252,
"infoDeltaMillis": -1,
"processId": 27193,
"parentProcessId": 2,
"processStartTimestamp": 1715926278320,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "jfsCommit",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633252,
"infoDeltaMillis": -1,
"processId": 27194,
"parentProcessId": 2,
"processStartTimestamp": 1715926278320,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "jfsCommit",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633252,
"infoDeltaMillis": -1,
"processId": 27195,
"parentProcessId": 2,
"processStartTimestamp": 1715926278330,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "jfsCommit",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633253,
"infoDeltaMillis": -1,
"processId": 27196,
"parentProcessId": 2,
"processStartTimestamp": 1715926278330,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "jfsCommit",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633253,
"infoDeltaMillis": -1,
"processId": 27197,
"parentProcessId": 2,
"processStartTimestamp": 1715926278330,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "jfsSync",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633270,
"infoDeltaMillis": -1,
"processId": 27610,
"parentProcessId": 1,
"processStartTimestamp": 1715926284870,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "107",
"processName": "uuidd",
"commandLine": "/usr/sbin/uuidd --socket-activation",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.0000016821716,
"totalSoftPageFaults": 947,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 8183808,
"virtualMemoryMiB": 7.8046875,
"physicalMemoryBytes": 1093632,
"physicalMemoryMiB": 1.0429688,
"physicalMemoryPercent": 0.006625731,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 50,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633263,
"infoDeltaMillis": -1,
"processId": 38541,
"parentProcessId": 2,
"processStartTimestamp": 1716446671810,
"processPriority": 0,
"processState": "SLEEPING",
"userId": "0",
"processName": "loop3",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.0000012235103,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 30,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633266,
"infoDeltaMillis": -1,
"processId": 38582,
"parentProcessId": 1,
"processStartTimestamp": 1716446675370,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "snapd",
"commandLine": "/usr/lib/snapd/snapd",
"threadCount": 12,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.008435708,
"totalSoftPageFaults": 123767,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 131,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 1579307008,
"virtualMemoryMiB": 1506.1445,
"physicalMemoryBytes": 33124352,
"physicalMemoryMiB": 31.589844,
"physicalMemoryPercent": 0.20068273,
"totalKernelTimeMillis": 17350,
"totalUserTimeMillis": 189490,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633255,
"infoDeltaMillis": -1,
"processId": 45148,
"parentProcessId": 2,
"processStartTimestamp": 1716932995550,
"processPriority": 0,
"processState": "SLEEPING",
"userId": "0",
"processName": "loop11",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633264,
"infoDeltaMillis": -1,
"processId": 67478,
"parentProcessId": 1,
"processStartTimestamp": 1717668997810,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "1000",
"processName": "systemd",
"commandLine": "/lib/systemd/systemd --user",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.0000056927443,
"totalSoftPageFaults": 1423,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 19521536,
"virtualMemoryMiB": 18.617188,
"physicalMemoryBytes": 9900032,
"physicalMemoryMiB": 9.441406,
"physicalMemoryPercent": 0.059978995,
"totalKernelTimeMillis": 10,
"totalUserTimeMillis": 60,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633264,
"infoDeltaMillis": -1,
"processId": 67479,
"parentProcessId": 67478,
"processStartTimestamp": 1717668997810,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "1000",
"processName": "(sd-pam)",
"commandLine": "(sd-pam)",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 51,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 174751744,
"virtualMemoryMiB": 166.65625,
"physicalMemoryBytes": 4804608,
"physicalMemoryMiB": 4.5820312,
"physicalMemoryPercent": 0.029108549,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633267,
"infoDeltaMillis": -1,
"processId": 538572,
"parentProcessId": 1,
"processStartTimestamp": 1718293919050,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "1001",
"processName": "java",
"commandLine": "java -Xmx512m -DdkfqsMeasuringAgentProperties=/home/dkfqs/agent/config/measuringagent.properties -Dnashorn.args=--no-deprecation-warning com.dkfqs.measuringagent.internal.StartDKFQSMeasuringAgent -autoAdjustMemory -osReservedMemory 1GB",
"threadCount": 37,
"openFiles": 13,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 1.2679973,
"totalSoftPageFaults": 105010,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 4260786176,
"virtualMemoryMiB": 4063.4023,
"physicalMemoryBytes": 327462912,
"physicalMemoryMiB": 312.29297,
"physicalMemoryPercent": 1.9839226,
"totalKernelTimeMillis": 3230490,
"totalUserTimeMillis": 4437270,
"totalBytesRead": 155648,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 352325632,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633262,
"infoDeltaMillis": -1,
"processId": 859791,
"parentProcessId": 2,
"processStartTimestamp": 1718817931660,
"processPriority": 20,
"processState": "OTHER",
"userId": "0",
"processName": "kworker/3:1-events",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.004906966,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 3690,
"totalUserTimeMillis": 270,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633270,
"infoDeltaMillis": -1,
"processId": 870383,
"parentProcessId": 2,
"processStartTimestamp": 1718834970500,
"processPriority": 20,
"processState": "OTHER",
"userId": "0",
"processName": "kworker/0:0-events",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.008010961,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 5100,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633254,
"infoDeltaMillis": -1,
"processId": 902211,
"parentProcessId": 2,
"processStartTimestamp": 1718884504770,
"processPriority": 0,
"processState": "SLEEPING",
"userId": "0",
"processName": "loop5",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633254,
"infoDeltaMillis": -1,
"processId": 902237,
"parentProcessId": 2,
"processStartTimestamp": 1718884505140,
"processPriority": 20,
"processState": "OTHER",
"userId": "0",
"processName": "kworker/3:2-cgroup_destroy",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633254,
"infoDeltaMillis": -1,
"processId": 902239,
"parentProcessId": 2,
"processStartTimestamp": 1718884505160,
"processPriority": 20,
"processState": "OTHER",
"userId": "0",
"processName": "kworker/1:2-mm_percpu_wq",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.007148877,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 1010,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633267,
"infoDeltaMillis": -1,
"processId": 905925,
"parentProcessId": 2,
"processStartTimestamp": 1718890529780,
"processPriority": 20,
"processState": "OTHER",
"userId": "0",
"processName": "kworker/2:0-events",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.005182954,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 420,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633266,
"infoDeltaMillis": -1,
"processId": 908721,
"parentProcessId": 736,
"processStartTimestamp": 1718895160180,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "1001",
"processName": "smbd",
"commandLine": "/usr/sbin/smbd --foreground --no-process-group",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.029656623,
"totalSoftPageFaults": 1717,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 95805440,
"virtualMemoryMiB": 91.36719,
"physicalMemoryBytes": 18870272,
"physicalMemoryMiB": 17.996094,
"physicalMemoryPercent": 0.11432488,
"totalKernelTimeMillis": 600,
"totalUserTimeMillis": 430,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633270,
"infoDeltaMillis": -1,
"processId": 908752,
"parentProcessId": 694,
"processStartTimestamp": 1718895208410,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "sshd",
"commandLine": "sshd: mutong [priv]",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.00087594823,
"totalSoftPageFaults": 789,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 14274560,
"virtualMemoryMiB": 13.613281,
"physicalMemoryBytes": 9256960,
"physicalMemoryMiB": 8.828125,
"physicalMemoryPercent": 0.056082968,
"totalKernelTimeMillis": 10,
"totalUserTimeMillis": 20,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633254,
"infoDeltaMillis": -1,
"processId": 908867,
"parentProcessId": 908752,
"processStartTimestamp": 1718895219610,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "1000",
"processName": "sshd",
"commandLine": "sshd: mutong@pts/0",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.00058588415,
"totalSoftPageFaults": 273,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 14409728,
"virtualMemoryMiB": 13.7421875,
"physicalMemoryBytes": 6373376,
"physicalMemoryMiB": 6.078125,
"physicalMemoryPercent": 0.038612876,
"totalKernelTimeMillis": 20,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633253,
"infoDeltaMillis": -1,
"processId": 908868,
"parentProcessId": 908867,
"processStartTimestamp": 1718895219680,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "1000",
"processName": "bash",
"commandLine": "-bash",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.0011717927,
"totalSoftPageFaults": 1160,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 8474624,
"virtualMemoryMiB": 8.082031,
"physicalMemoryBytes": 5382144,
"physicalMemoryMiB": 5.1328125,
"physicalMemoryPercent": 0.03260753,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 40,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633255,
"infoDeltaMillis": -1,
"processId": 908884,
"parentProcessId": 908868,
"processStartTimestamp": 1718895232380,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "sudo",
"commandLine": "sudo bash",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.00029404197,
"totalSoftPageFaults": 387,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 9658368,
"virtualMemoryMiB": 9.2109375,
"physicalMemoryBytes": 4820992,
"physicalMemoryMiB": 4.5976562,
"physicalMemoryPercent": 0.02920781,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 10,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633254,
"infoDeltaMillis": -1,
"processId": 908889,
"parentProcessId": 908884,
"processStartTimestamp": 1718895236810,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "0",
"processName": "bash",
"commandLine": "bash",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.00029442558,
"totalSoftPageFaults": 494,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 7409664,
"virtualMemoryMiB": 7.0664062,
"physicalMemoryBytes": 4255744,
"physicalMemoryMiB": 4.0585938,
"physicalMemoryPercent": 0.025783276,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 10,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633260,
"infoDeltaMillis": -1,
"processId": 908925,
"parentProcessId": 2,
"processStartTimestamp": 1718895253040,
"processPriority": 20,
"processState": "OTHER",
"userId": "0",
"processName": "kworker/2:1-mm_percpu_wq",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.009171001,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 310,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633260,
"infoDeltaMillis": -1,
"processId": 908926,
"parentProcessId": 2,
"processStartTimestamp": 1718895253060,
"processPriority": 20,
"processState": "OTHER",
"userId": "0",
"processName": "kworker/0:1",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633263,
"infoDeltaMillis": -1,
"processId": 908934,
"parentProcessId": 1,
"processStartTimestamp": 1718895547100,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "1001",
"processName": "java",
"commandLine": "java -Xmx256m -DdkfqsOshiDaemonProperties=/home/dkfqs/oshi/config/oshi-daemon.properties -Dnashorn.args=--no-deprecation-warning com.dkfqs.oshidaemon.internal.StartDKFQSOshiDaemon",
"threadCount": 35,
"openFiles": 15,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 1.8770882,
"totalSoftPageFaults": 74770,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 3981627392,
"virtualMemoryMiB": 3797.1758,
"physicalMemoryBytes": 273760256,
"physicalMemoryMiB": 261.07812,
"physicalMemoryPercent": 1.658567,
"totalKernelTimeMillis": 17960,
"totalUserTimeMillis": 39970,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 2469888,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633256,
"infoDeltaMillis": -1,
"processId": 909904,
"parentProcessId": 2,
"processStartTimestamp": 1718897037700,
"processPriority": 20,
"processState": "OTHER",
"userId": "0",
"processName": "kworker/1:0",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633261,
"infoDeltaMillis": -1,
"processId": 909947,
"parentProcessId": 2,
"processStartTimestamp": 1718897105260,
"processPriority": 20,
"processState": "OTHER",
"userId": "0",
"processName": "kworker/u8:1-flush-259:0",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0.00065444986,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 10,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
},
{
"infoTimestamp": 1718898633271,
"infoDeltaMillis": -1,
"processId": 910561,
"parentProcessId": 2,
"processStartTimestamp": 1718898124140,
"processPriority": 20,
"processState": "OTHER",
"userId": "0",
"processName": "kworker/u8:0-events_power_efficient",
"commandLine": "",
"threadCount": 1,
"openFiles": 0,
"cpuLoadPercent": -1,
"cpuLoadCumulativePercent": 0,
"totalSoftPageFaults": 0,
"deltaSoftPageFaults": -1,
"softPageFaultsPerSecond": -1,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"virtualMemoryBytes": 0,
"virtualMemoryMiB": 0,
"physicalMemoryBytes": 0,
"physicalMemoryMiB": 0,
"physicalMemoryPercent": 0,
"totalKernelTimeMillis": 0,
"totalUserTimeMillis": 0,
"totalBytesRead": 0,
"deltaBytesRead": -1,
"bytesReadPerSecond": -1,
"totalBytesWritten": 0,
"deltaBytesWritten": -1,
"bytesWrittenPerSecond": -1
}
]
},
"isError": false
}
getProcessInfo
- Send action : “getProcessInfo”
{
"action":"getProcessInfo",
"pid":538572,
"collectDataMillis":1000,
"context":""
}
pid : the process ID.
collectDataMillis : the time in milliseconds to collect current process data such as hardPageFaultsPerSecond.
context : an optional context (text) which is repeted in the received response.
- Received action: “getProcessInfo”
{
"action": "getProcessInfo",
"context": "",
"processInfo": {
"infoTimestamp": 1718899418294,
"infoDeltaMillis": 1002,
"processId": 538572,
"parentProcessId": 1,
"processStartTimestamp": 1718293919050,
"processPriority": 20,
"processState": "SLEEPING",
"userId": "1001",
"processName": "java",
"commandLine": "java -Xmx512m -DdkfqsMeasuringAgentProperties=/home/dkfqs/agent/config/measuringagent.properties -Dnashorn.args=--no-deprecation-warning com.dkfqs.measuringagent.internal.StartDKFQSMeasuringAgent -autoAdjustMemory -osReservedMemory 1GB",
"threadCount": 37,
"openFiles": 13,
"cpuLoadPercent": 1.9880716,
"cpuLoadCumulativePercent": 1.2680049,
"totalSoftPageFaults": 105066,
"deltaSoftPageFaults": 0,
"softPageFaultsPerSecond": 0,
"totalHardPageFaults": 0,
"deltaHardPageFaults": 0,
"hardPageFaultsPerSecond": 0,
"virtualMemoryBytes": 4260786176,
"virtualMemoryMiB": 4063.4023,
"physicalMemoryBytes": 327462912,
"physicalMemoryMiB": 312.29297,
"physicalMemoryPercent": 1.9839226,
"totalKernelTimeMillis": 3234670,
"totalUserTimeMillis": 4443090,
"totalBytesRead": 155648,
"deltaBytesRead": 0,
"bytesReadPerSecond": 0,
"totalBytesWritten": 352878592,
"deltaBytesWritten": 0,
"bytesWrittenPerSecond": 0
},
"isError": false
}
- Error Case:
{
"action": "getProcessInfo",
"context": "",
"isError": true,
"genericErrorText": "Process no longer exist, PID = 8456"
}
getInternalLog
- Send action : “getInternalLog”
{
"action":"getInternalLog"
}
- Received action: “getInternalLog”
{
"action": "getInternalLog",
"timestamp": 1718900888240,
"logTimeZone": "Etc/UTC",
"maxLogLinesCapacity": 2000,
"logLinesArray": [
"2024-06-20 16:21:02.228 | main | INFO | Time Zone = Coordinated Universal Time +00:00",
"2024-06-20 16:21:02.238 | QAHTTPd | WARN | QAHTTPd V1.4-G started",
"2024-06-20 16:21:02.248 | QAHTTPd | INFO | HTTPS server starting at port 8087",
"2024-06-20 16:21:02.284 | QAHTTPd | INFO | HTTPS server ready at port 8087",
"2024-06-20 16:21:03.246 | main | INFO | Collect OSHI Subjects = CPU, MEMORY, NETWORK",
"2024-06-20 16:21:03.248 | main | INFO | Collect OSHI Subjects Interval = 5 seconds",
"2024-06-20 16:21:03.249 | main | INFO | Collect OSHI Subjects Max Storage Time = 43200 seconds",
"2024-06-20 16:21:03.254 | OSHI-Collector | INFO | Main thread started",
"2024-06-20 16:21:22.502 | 192.168.1.111 : 50671 | INFO | https GET /api?authToken=aaa HTTP/1.1",
"2024-06-20 16:21:22.546 | 192.168.1.111 : 50671 | INFO | HTTP/1.1 101 Switching Protocols []",
"2024-06-20 16:21:22.548 | 192.168.1.111 : 50671 | INFO | Connection upgraded to WebSocket communication",
"2024-06-20 16:21:27.598 | 192.168.1.111 : 50671-WebSocket | INFO | IP connection closed",
"2024-06-20 16:21:27.598 | 192.168.1.111 : 50671-WebSocket | INFO | [Thread terminated]",
"2024-06-20 16:28:08.224 | 192.168.1.111 : 50687 | INFO | https GET /api?authToken=aaa HTTP/1.1",
"2024-06-20 16:28:08.229 | 192.168.1.111 : 50687 | INFO | HTTP/1.1 101 Switching Protocols []",
"2024-06-20 16:28:08.230 | 192.168.1.111 : 50687 | INFO | Connection upgraded to WebSocket communication"
],
"isError": false
}
getOshiInformationLastHistoricalSnapshot
Note: you can use this API function to get latest collected OSHI data without any overhead.
- Send action : “getOshiInformationLastHistoricalSnapshot”
{
"action":"getOshiInformationLastHistoricalSnapshot",
"oshiSubjectsArray":["CPU","MEMORY","NETWORK"]
}
oshiSubjectsArray : only OSHI subjects that are listed in oshi-daemon.properties file at property CollectOshiSubjectsList can be specified. Possible values are OPERATING_SYSTEM, CPU, MEMORY, NETWORK, NETWORK_CONNECTIONS_LIST, DISK, FILE_SYSTEM and PROCESS_LIST.
- Received action: “getOshiInformationLastHistoricalSnapshot”
{
"action": "getOshiInformationLastHistoricalSnapshot",
"oshiInfoArray": [
{
"oshiSubject": "CPU",
"infoTimestamp": 1719084073650,
"infoDeltaMillis": 5014,
"physicalProcessorCount": 4,
"logicalProcessorCount": 4,
"logicalProcessorsCurrentFrequencyHz": 2147483647,
"logicalProcessorsMaxFrequencyHz": 3000000000,
"systemCpuLoadPercent": 21.822517,
"totalContextSwitches": 91385498,
"deltaContextSwitches": 37895,
"contextSwitchesPerSecond": 7558,
"totalInterrupts": 68279335,
"deltaInterrupts": 23480,
"interruptsPerSecond": 4683
},
{
"oshiSubject": "MEMORY",
"infoTimestamp": 1719084073619,
"infoDeltaMillis": 4998,
"totalPhysicalMemoryGib": 7.910187,
"usedPhysicalMemoryGib": 5.3517876,
"availablePhysicalMemoryGib": 2.5583992,
"availablePhysicalMemoryPercent": 32.343094,
"maxVirtualMemoryGib": 9.784245,
"totalVirtualMemoryGib": 1.8740578,
"usedVirtualMemoryGib": 0.32582855,
"availableVirtualMemoryGib": 1.5482292,
"totalHardPageFaults": 2713173,
"deltaHardPageFaults": 51,
"hardPageFaultsPerSecond": 10,
"totalPagesWrittenToSwap": 773902,
"deltaPagesWrittenToSwap": 0,
"pagesWrittenToSwapPerSecond": 0
},
{
"oshiSubject": "NETWORK",
"infoTimestamp": 1719084068661,
"infoDeltaMillis": 5008,
"hostName": "FISCHER",
"ipv4DefaultGateway": "192.168.0.1",
"ipv6DefaultGateway": "",
"dnsServers": "212.25.1.1;212.25.3.3",
"networkInterfacesArray": [
{
"infoTimestamp": 1719084069310,
"infoDeltaMillis": 5009,
"interfaceName": "eth16",
"ipv4addresses": "172.23.144.1",
"ipv6addresses": "fe80:0:0:0:233a:d408:e6e6:82c9",
"totalBytesReceived": 0,
"deltaBytesReceived": 0,
"receivedBytesPerSecond": 0,
"totalBytesSent": 1428913,
"deltaBytesSent": 0,
"sentBytesPerSecond": 0,
"totalInputErrors": 0,
"deltaInputErrors": 0,
"inputErrorsPerSecond": 0,
"totalOutputErrors": 0,
"deltaOutputErrors": 0,
"outputErrorsPerSecond": 0
},
{
"infoTimestamp": 1719084069310,
"infoDeltaMillis": 5009,
"interfaceName": "eth7",
"ipv4addresses": "192.168.0.100",
"ipv6addresses": "fe80:0:0:0:8770:daf2:949e:d69b",
"totalBytesReceived": 260065603,
"deltaBytesReceived": 7459,
"receivedBytesPerSecond": 1489,
"totalBytesSent": 139361208,
"deltaBytesSent": 486,
"sentBytesPerSecond": 97,
"totalInputErrors": 0,
"deltaInputErrors": 0,
"inputErrorsPerSecond": 0,
"totalOutputErrors": 0,
"deltaOutputErrors": 0,
"outputErrorsPerSecond": 0
},
{
"infoTimestamp": 1719084069310,
"infoDeltaMillis": 5009,
"interfaceName": "eth9",
"ipv4addresses": "10.8.0.1",
"ipv6addresses": "fe80:0:0:0:68cb:ab5f:447a:1e57",
"totalBytesReceived": 197100,
"deltaBytesReceived": 0,
"receivedBytesPerSecond": 0,
"totalBytesSent": 2004676,
"deltaBytesSent": 0,
"sentBytesPerSecond": 0,
"totalInputErrors": 0,
"deltaInputErrors": 0,
"inputErrorsPerSecond": 0,
"totalOutputErrors": 0,
"deltaOutputErrors": 0,
"outputErrorsPerSecond": 0
}
]
}
],
"isError": false
}
subscribeToOshiInformation
Subscribe to OSHI real-time information.
- Send action : “subscribeToOshiInformation”
{
"action":"subscribeToOshiInformation",
"subscribeToOshiSubjectsArray":["CPU","MEMORY","NETWORK"],
"includeHistoricalData": true
}
subscribeToOshiSubjectsArray : only OSHI subjects that are listed in oshi-daemon.properties file at property CollectOshiSubjectsList can be specified. Possible values are OPERATING_SYSTEM, CPU, MEMORY, NETWORK, NETWORK_CONNECTIONS_LIST, DISK, FILE_SYSTEM and PROCESS_LIST.
includeHistoricalData : true or false.
- Received actions:
- subscribeToOshiInformation
- onReceiveOshiHistoricalInfo (historical data received)
- onReceiveOshiInfo (real-time update received)
Received action subscribeToOshiInformation
{
"action": "subscribeToOshiInformation",
"isError": false
}
Received action onReceiveOshiHistoricalInfo - oshiSubject CPU
{
"action": "onReceiveOshiHistoricalInfo",
"timestamp": 1718901610684,
"oshiSubject": "CPU",
"maxDataStorageTimeSeconds": 43200,
"oshiInfoArray": [
{
"oshiSubject": "CPU",
"infoTimestamp": 1718901604493,
"infoDeltaMillis": -1,
"physicalProcessorCount": 4,
"logicalProcessorCount": 4,
"logicalProcessorsCurrentFrequencyHz": 2147483647,
"logicalProcessorsMaxFrequencyHz": 2900000000,
"systemCpuLoadPercent": 0.2512563,
"totalContextSwitches": 1236501625,
"deltaContextSwitches": -1,
"contextSwitchesPerSecond": -1,
"totalInterrupts": 666889836,
"deltaInterrupts": -1,
"interruptsPerSecond": -1
},
{
"oshiSubject": "CPU",
"infoTimestamp": 1718901609256,
"infoDeltaMillis": 4763,
"physicalProcessorCount": 4,
"logicalProcessorCount": 4,
"logicalProcessorsCurrentFrequencyHz": 1857880960,
"logicalProcessorsMaxFrequencyHz": 2900000000,
"systemCpuLoadPercent": 1.9037546,
"totalContextSwitches": 1236504525,
"deltaContextSwitches": 2900,
"contextSwitchesPerSecond": 609,
"totalInterrupts": 666891299,
"deltaInterrupts": 1463,
"interruptsPerSecond": 307
}
],
"isError": false
}
Received action onReceiveOshiHistoricalInfo - oshiSubject MEMORY
{
"action": "onReceiveOshiHistoricalInfo",
"timestamp": 1718901610683,
"oshiSubject": "MEMORY",
"maxDataStorageTimeSeconds": 43200,
"oshiInfoArray": [
{
"oshiSubject": "MEMORY",
"infoTimestamp": 1718901604434,
"infoDeltaMillis": -1,
"totalPhysicalMemoryGib": 15.372253,
"usedPhysicalMemoryGib": 1.0212631,
"availablePhysicalMemoryGib": 14.35099,
"availablePhysicalMemoryPercent": 93.35645,
"maxVirtualMemoryGib": 11.686123,
"totalVirtualMemoryGib": 3.9999962,
"usedVirtualMemoryGib": 0,
"availableVirtualMemoryGib": 3.9999962,
"totalHardPageFaults": 0,
"deltaHardPageFaults": -1,
"hardPageFaultsPerSecond": -1,
"totalPagesWrittenToSwap": 0,
"deltaPagesWrittenToSwap": -1,
"pagesWrittenToSwapPerSecond": -1
},
{
"oshiSubject": "MEMORY",
"infoTimestamp": 1718901609223,
"infoDeltaMillis": 4789,
"totalPhysicalMemoryGib": 15.372253,
"usedPhysicalMemoryGib": 1.0225639,
"availablePhysicalMemoryGib": 14.3496895,
"availablePhysicalMemoryPercent": 93.34799,
"maxVirtualMemoryGib": 11.686123,
"totalVirtualMemoryGib": 3.9999962,
"usedVirtualMemoryGib": 0,
"availableVirtualMemoryGib": 3.9999962,
"totalHardPageFaults": 0,
"deltaHardPageFaults": 0,
"hardPageFaultsPerSecond": 0,
"totalPagesWrittenToSwap": 0,
"deltaPagesWrittenToSwap": 0,
"pagesWrittenToSwapPerSecond": 0
}
],
"isError": false
}
Received action onReceiveOshiHistoricalInfo - oshiSubject NETWORK
{
"action": "onReceiveOshiHistoricalInfo",
"timestamp": 1718901610683,
"oshiSubject": "NETWORK",
"maxDataStorageTimeSeconds": 43200,
"oshiInfoArray": [
{
"oshiSubject": "NETWORK",
"infoTimestamp": 1718901604205,
"infoDeltaMillis": -1,
"hostName": "testsrv2",
"ipv4DefaultGateway": "192.168.1.1",
"ipv6DefaultGateway": "fe80::1",
"dnsServers": "127.0.0.53",
"networkInterfacesArray": [
{
"infoTimestamp": 1718901604414,
"infoDeltaMillis": -1,
"interfaceName": "eno1",
"ipv4addresses": "192.168.1.27",
"ipv6addresses": "fe80:0:0:0:8aae:ddff:fe61:c693;2405:9800:b660:49c2:8aae:ddff:fe61:c693",
"totalBytesReceived": 1206494812,
"deltaBytesReceived": -1,
"receivedBytesPerSecond": -1,
"totalBytesSent": 340530596,
"deltaBytesSent": -1,
"sentBytesPerSecond": -1,
"totalInputErrors": 0,
"deltaInputErrors": -1,
"inputErrorsPerSecond": -1,
"totalOutputErrors": 0,
"deltaOutputErrors": -1,
"outputErrorsPerSecond": -1
},
{
"infoTimestamp": 1718901604416,
"infoDeltaMillis": -1,
"interfaceName": "lo",
"ipv4addresses": "127.0.0.1",
"ipv6addresses": "0:0:0:0:0:0:0:1",
"totalBytesReceived": 489898,
"deltaBytesReceived": -1,
"receivedBytesPerSecond": -1,
"totalBytesSent": 489898,
"deltaBytesSent": -1,
"sentBytesPerSecond": -1,
"totalInputErrors": 0,
"deltaInputErrors": -1,
"inputErrorsPerSecond": -1,
"totalOutputErrors": 0,
"deltaOutputErrors": -1,
"outputErrorsPerSecond": -1
}
]
},
{
"oshiSubject": "NETWORK",
"infoTimestamp": 1718901609201,
"infoDeltaMillis": 4996,
"hostName": "testsrv2",
"ipv4DefaultGateway": "192.168.1.1",
"ipv6DefaultGateway": "fe80::1",
"dnsServers": "127.0.0.53",
"networkInterfacesArray": [
{
"infoTimestamp": 1718901609221,
"infoDeltaMillis": 4807,
"interfaceName": "eno1",
"ipv4addresses": "192.168.1.27",
"ipv6addresses": "fe80:0:0:0:8aae:ddff:fe61:c693;2405:9800:b660:49c2:8aae:ddff:fe61:c693",
"totalBytesReceived": 1206494812,
"deltaBytesReceived": 0,
"receivedBytesPerSecond": 0,
"totalBytesSent": 340530596,
"deltaBytesSent": 0,
"sentBytesPerSecond": 0,
"totalInputErrors": 0,
"deltaInputErrors": 0,
"inputErrorsPerSecond": 0,
"totalOutputErrors": 0,
"deltaOutputErrors": 0,
"outputErrorsPerSecond": 0
},
{
"infoTimestamp": 1718901609223,
"infoDeltaMillis": 4807,
"interfaceName": "lo",
"ipv4addresses": "127.0.0.1",
"ipv6addresses": "0:0:0:0:0:0:0:1",
"totalBytesReceived": 489898,
"deltaBytesReceived": 0,
"receivedBytesPerSecond": 0,
"totalBytesSent": 489898,
"deltaBytesSent": 0,
"sentBytesPerSecond": 0,
"totalInputErrors": 0,
"deltaInputErrors": 0,
"inputErrorsPerSecond": 0,
"totalOutputErrors": 0,
"deltaOutputErrors": 0,
"outputErrorsPerSecond": 0
}
]
}
],
"isError": false
}
Received action onReceiveOshiInfo - oshiSubject CPU
{
"action": "onReceiveOshiInfo",
"timestamp": 1718901614352,
"oshiSubject": "CPU",
"collectIntervalSeconds": 5,
"oshiInfo": {
"oshiSubject": "CPU",
"infoTimestamp": 1718901614252,
"infoDeltaMillis": 4996,
"physicalProcessorCount": 4,
"logicalProcessorCount": 4,
"logicalProcessorsCurrentFrequencyHz": 1893143040,
"logicalProcessorsMaxFrequencyHz": 2900000000,
"systemCpuLoadPercent": 4.2735043,
"totalContextSwitches": 1236509765,
"deltaContextSwitches": 5240,
"contextSwitchesPerSecond": 1049,
"totalInterrupts": 666893503,
"deltaInterrupts": 2204,
"interruptsPerSecond": 441
},
"isError": false
}
Received action onReceiveOshiInfo - oshiSubject MEMORY
{
"action": "onReceiveOshiInfo",
"timestamp": 1718901614221,
"oshiSubject": "MEMORY",
"collectIntervalSeconds": 5,
"oshiInfo": {
"oshiSubject": "MEMORY",
"infoTimestamp": 1718901614220,
"infoDeltaMillis": 4997,
"totalPhysicalMemoryGib": 15.372253,
"usedPhysicalMemoryGib": 1.0392838,
"availablePhysicalMemoryGib": 14.33297,
"availablePhysicalMemoryPercent": 93.23923,
"maxVirtualMemoryGib": 11.686123,
"totalVirtualMemoryGib": 3.9999962,
"usedVirtualMemoryGib": 0,
"availableVirtualMemoryGib": 3.9999962,
"totalHardPageFaults": 0,
"deltaHardPageFaults": 0,
"hardPageFaultsPerSecond": 0,
"totalPagesWrittenToSwap": 0,
"deltaPagesWrittenToSwap": 0,
"pagesWrittenToSwapPerSecond": 0
},
"isError": false
}
Received action onReceiveOshiInfo - oshiSubject NETWORK
{
"action": "onReceiveOshiInfo",
"timestamp": 1718901614220,
"oshiSubject": "NETWORK",
"collectIntervalSeconds": 5,
"oshiInfo": {
"oshiSubject": "NETWORK",
"infoTimestamp": 1718901614201,
"infoDeltaMillis": 5000,
"hostName": "testsrv2",
"ipv4DefaultGateway": "192.168.1.1",
"ipv6DefaultGateway": "fe80::1",
"dnsServers": "127.0.0.53",
"networkInterfacesArray": [
{
"infoTimestamp": 1718901614218,
"infoDeltaMillis": 4997,
"interfaceName": "eno1",
"ipv4addresses": "192.168.1.27",
"ipv6addresses": "fe80:0:0:0:8aae:ddff:fe61:c693;2405:9800:b660:49c2:8aae:ddff:fe61:c693",
"totalBytesReceived": 1206496317,
"deltaBytesReceived": 1505,
"receivedBytesPerSecond": 301,
"totalBytesSent": 340537883,
"deltaBytesSent": 7287,
"sentBytesPerSecond": 1458,
"totalInputErrors": 0,
"deltaInputErrors": 0,
"inputErrorsPerSecond": 0,
"totalOutputErrors": 0,
"deltaOutputErrors": 0,
"outputErrorsPerSecond": 0
},
{
"infoTimestamp": 1718901614220,
"infoDeltaMillis": 4997,
"interfaceName": "lo",
"ipv4addresses": "127.0.0.1",
"ipv6addresses": "0:0:0:0:0:0:0:1",
"totalBytesReceived": 489898,
"deltaBytesReceived": 0,
"receivedBytesPerSecond": 0,
"totalBytesSent": 489898,
"deltaBytesSent": 0,
"sentBytesPerSecond": 0,
"totalInputErrors": 0,
"deltaInputErrors": 0,
"inputErrorsPerSecond": 0,
"totalOutputErrors": 0,
"deltaOutputErrors": 0,
"outputErrorsPerSecond": 0
}
]
},
"isError": false
}
unsubscribeFromOshiInformation
- Send action : “unsubscribeFromOshiInformation”
{
"action":"unsubscribeFromOshiInformation",
"unsubscribeFromOshiSubjectsArray":["CPU","MEMORY","NETWORK"]
}
- Received action: “unsubscribeFromOshiInformation”
{
"action": "unsubscribeFromOshiInformation",
"isError": false
}