Event

Events form the basis of the Exoscale audit-trail, a mechanism to query past events performing mutations on resources which happened on an organization.

Read more


Other Operations

list-events

List Events

GET /event

Retrieve Mutation Events for a given date range. Defaults to retrieving Events for the past 24 hours. Both a from and to arguments can be specified to filter Events over a specific period. Events will be the the most descriptive possible but not all fields are mandatory

Query parameters

NameInRequiredDescription
fromqueryno
toqueryno

Responses

Status: 200 - 200

Content-Type: application/json

Example output
[
  {
    "body-params": {},
    "elapsed-ms": 0,
    "get-params": {},
    "handler": "string",
    "iam-api-key": {
      "key": "string",
      "name": "string",
      "role-id": "string"
    },
    "iam-role": {
      "description": "string",
      "editable": true,
      "id": "string",
      "labels": {},
      "name": "string",
      "permissions": [
        "bypass-governance-retention"
      ],
      "policy": {
        "default-service-strategy": "allow",
        "services": {}
      }
    },
    "iam-user": {
      "email": "string",
      "id": "string",
      "pending": true,
      "role": {
        "description": "string",
        "editable": true,
        "id": "string",
        "labels": {},
        "name": "string",
        "permissions": [
          "bypass-governance-retention"
        ],
        "policy": {
          "default-service-strategy": "allow",
          "services": {}
        }
      },
      "sso": true,
      "two-factor-authentication": true
    },
    "message": "string",
    "path-params": {},
    "request-id": "string",
    "source-ip": "string",
    "status": 0,
    "timestamp": "2024-01-01T12:00:00Z",
    "uri": "string",
    "zone": "string"
  }
]

SDK reference for list-events: golang | Python | Java

CLI: exo api list-events

Last updated on