Skip to content
On this page

List all processes

Endpoint

GET /v1/processes

Returns a list of active processes running on a Raspberry Pi

Responses

json
{
   "type":"array",
   "items":{
      "type":"object",
      "properties":{
         "id":{
            "type":"int32"
         },
         "name":{
            "type":"string"
         },
         "username":{
            "type":"string"
         },
         "commandLine":{
            "type":"string"
         },
         "status":{
            "type":"string"
         },
         "creationTime":{
            "type":"int64"
         },
         "foreground":{
            "type":"bool"
         },
         "background":{
            "type":"bool"
         },
         "isRunning":{
            "type":"bool"
         },
         "cpuPercent":{
            "type":"float64"
         },
         "memPercent":{
            "type":"float32"
         },
         "parentPID":{
            "type":"int32"
         }
      }
   }
}