> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agentbot.raveculture.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Live log tail API

> Stream agent gateway logs in real-time via Server-Sent Events — no SSH needed

# Live log tail API

<Warning>This API is not live on Agentbot. The page is kept as an internal roadmap/spec reference and is intentionally not linked from the main docs navigation.</Warning>

Stream agent gateway logs directly to the browser using Server-Sent Events (SSE). No SSH access needed — see what your agent is doing in real-time from the dashboard.

## Stream Logs

```http theme={"dark"}
GET /api/logs/:agentId/stream
```

Opens an SSE connection that streams log output from the agent's gateway container.

### Response

```
event: line
data: {"type":"connected","agentId":"user_123"}

event: line
data: {"type":"line","text":"[Gateway] Starting OpenClaw..."}

event: line
data: {"type":"line","text":"[Gateway] Listening on port 18789"}

event: line
data: {"type":"exit","code":0}
```

### Event Types

| Type        | Description                   |
| ----------- | ----------------------------- |
| `connected` | SSE connection established    |
| `line`      | New log line from the gateway |
| `exit`      | Gateway process exited        |

### Client Example

```javascript theme={"dark"}
const eventSource = new EventSource('/api/logs/user_123/stream');

eventSource.onmessage = (event) => {
  const data = JSON.parse(event.data);
  if (data.type === 'line') {
    console.log(data.text);
  } else if (data.type === 'exit') {
    console.log(`Gateway exited with code ${data.code}`);
    eventSource.close();
  }
};

eventSource.onerror = () => {
  console.log('Connection lost, reconnecting...');
};
```

## Get Log History

```http theme={"dark"}
GET /api/logs/:agentId/history
```

Returns recent log lines without opening a streaming connection.

### Response

```json theme={"dark"}
{
  "agentId": "user_123",
  "lines": [
    "[Gateway] Starting OpenClaw...",
    "[Gateway] Listening on port 18789"
  ],
  "streaming": true,
  "clients": 2
}
```

## Stop Log Stream

```http theme={"dark"}
POST /api/logs/:agentId/stop
```

Stops the log stream and disconnects all clients.

### Response

```json theme={"dark"}
{
  "success": true
}
```

## List Active Streams

```http theme={"dark"}
GET /api/logs/active
```

Returns all currently active log streams.

### Response

```json theme={"dark"}
{
  "streams": [
    {
      "agentId": "user_123",
      "clients": 2,
      "lines": 150
    }
  ]
}
```

## Behavior

* **Buffer:** Last 500 lines kept in memory
* **Grace period:** 30 seconds after last client disconnects before stopping the stream
* **Auto-reconnect:** Clients can reconnect and receive buffered lines
* **Authentication model shown here is provisional** and may change before release
