curl --request GET \
--url http://localhost:2468/v1/processes{
"processes": [
{
"args": [
"<string>"
],
"command": "<string>",
"createdAtMs": 123,
"id": "<string>",
"interactive": true,
"owner": "user",
"status": "running",
"tty": true,
"cwd": "<string>",
"exitCode": 123,
"exitedAtMs": 123,
"pid": 1
}
]
}Returns a list of all processes (running and exited) currently tracked by the runtime, sorted by process ID.
curl --request GET \
--url http://localhost:2468/v1/processes{
"processes": [
{
"args": [
"<string>"
],
"command": "<string>",
"createdAtMs": 123,
"id": "<string>",
"interactive": true,
"owner": "user",
"status": "running",
"tty": true,
"cwd": "<string>",
"exitCode": 123,
"exitedAtMs": 123,
"pid": 1
}
]
}