List Events
List all events associated with a specific Machine within an app.
List all events associated with a specific Machine within an app.
Authorization
bearerAuth A Fly.io access token. Create one with fly tokens create.
In: header
Path Parameters
Fly App Name
Machine ID
Query Parameters
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" }]Cordon Machine POST
“Cordoning” a Machine refers to disabling its services, so the Fly Proxy won’t route requests to it. In flyctl this is used by blue/green deployments; one set of Machines is started up with services disabled, and when they are all healthy, the services are enabled on the new Machines and disabled on the old ones.
Execute Command POST
Execute a command on a specific Machine and return the raw command output bytes.