OSHI Daemon

RealLoad 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",