Fly.io
Machines

List Events

View as Markdown

List all events associated with a specific Machine within an app.

GET
/apps/{app_name}/machines/{machine_id}/events

List all events associated with a specific Machine within an app.

Authorization

bearerAuth
AuthorizationBearer <token>

A Fly.io access token. Create one with fly tokens create.

In: header

Path Parameters

app_name*string

Fly App Name

machine_id*string

Machine ID

Query Parameters

limit?integer

The number of events to fetch (max of 50). If omitted, this is set to 20 by default.

Response Body

application/json

curl -X GET "https://example.com/apps/string/machines/string/events"
[  {    "id": "string",    "request": {},    "source": "string",    "status": "string",    "timestamp": 0,    "type": "string"  }]