AdminEventLogService
Chatto exposes this service below /api/connect.
Shared message and enum definitions are documented in Shared Types And Enums.
AdminEventLogService
Section titled “AdminEventLogService”Provides server-admin audit/event-log diagnostics.
ListEvents
Section titled “ListEvents”Lists durable EVT entries newest-first. Requires admin.view-audit.
POST /api/connect/chatto.admin.v1.AdminEventLogService/ListEventsInput: ListEventsRequest
Section titled “Input: ListEventsRequest”Request to list durable EVT entries newest-first.
| Field | Type | Description |
|---|---|---|
limit | int32 | Maximum entries to return. The server clamps this to its diagnostic limit. |
before | optional string | Exclusive sequence cursor. Returned entries are older than this sequence. |
filter | AdminEventLogFilter | Optional filter. Filtered scans inspect a bounded window per request. |
Result: ListEventsResponse
Section titled “Result: ListEventsResponse”Newest-first page of durable EVT entries.
| Field | Type | Description |
|---|---|---|
entries | repeated AdminEventLogEntry | Event-log rows. |
has_older | bool | Whether older rows may be fetched with end_cursor. |
end_cursor | optional string | Sequence cursor for loading older rows. |
total_count | int64 | Total EVT message count reported by JetStream. |
scanned_count | int32 | Number of stream sequences inspected while building this page. |
scan_limit | int32 | Maximum number of stream sequences inspected for this page. |
scan_limited | bool | True when a filtered request reached scan_limit before finding a full page. |
ListEventTypes
Section titled “ListEventTypes”Lists filterable event type names as a finite snapshot. Requires admin.view-audit.
POST /api/connect/chatto.admin.v1.AdminEventLogService/ListEventTypesInput: ListEventTypesRequest
Section titled “Input: ListEventTypesRequest”Request to list filterable event types.
Result: ListEventTypesResponse
Section titled “Result: ListEventTypesResponse”Finite snapshot of event types accepted by event-log filters.
| Field | Type | Description |
|---|---|---|
event_types | repeated string | Sorted event type names. |
GetEvent
Section titled “GetEvent”Reads one durable EVT entry by stream sequence. Requires admin.view-audit. Returns NOT_FOUND when the requested sequence does not exist.
POST /api/connect/chatto.admin.v1.AdminEventLogService/GetEventInput: GetEventRequest
Section titled “Input: GetEventRequest”Request to read one durable EVT entry by stream sequence.
| Field | Type | Description |
|---|---|---|
sequence | string | Required EVT stream sequence. |
Result: GetEventResponse
Section titled “Result: GetEventResponse”Result of reading one durable EVT entry.
| Field | Type | Description |
|---|---|---|
entry | AdminEventLogEntry | Requested event-log entry. |