Skip to main content
GET
/
v1
/
processes
/
{id}
/
logs
Fetch process logs.
curl --request GET \
  --url http://localhost:2468/v1/processes/{id}/logs
{
  "entries": [
    {
      "data": "<string>",
      "encoding": "<string>",
      "sequence": 1,
      "stream": "stdout",
      "timestampMs": 123
    }
  ],
  "processId": "<string>",
  "stream": "stdout"
}

Path Parameters

id
string
required

Process ID

Query Parameters

stream
enum<string>

stdout|stderr|combined|pty

Available options:
stdout,
stderr,
combined,
pty
tail
integer | null

Tail N entries

Required range: x >= 0
follow
boolean | null

Follow via SSE

since
integer<int64> | null

Only entries with sequence greater than this

Required range: x >= 0

Response

Process logs

entries
object[]
required
processId
string
required
stream
enum<string>
required
Available options:
stdout,
stderr,
combined,
pty