Skip to content

EventStoreDetailsResponse

API reference for EventStoreDetailsResponse

@delta-base/server


Detailed event store information including usage statistics and settings. Extends the basic EventStore interface with additional details.

createdAt: string

ISO timestamp of when the event store was created

EventStoreInfo.createdAt


optional databaseSizes: object

Database size information for this store. Mirrors the management API databaseSizes field.

eventBusDatabaseSize: number

Size of the event bus database in bytes.

eventStoreDatabaseSize: number

Size of the event store database in bytes.

totalSize: number

Combined size of all databases for this event store in bytes.


optional description: string

Optional description of the event store’s purpose or contents

EventStoreInfo.description


id: string

Unique identifier for the event store

EventStoreInfo.id


name: string

Display name of the event store

EventStoreInfo.name


optional region: string

Optional cloud region where the event store is located

EventStoreInfo.region


optional settings: object

Configuration settings for the event store

optional maxStreamSizeBytes: number

Maximum size in bytes allowed per event stream

optional retentionPeriodDays: number

Number of days events are retained before automatic deletion


optional statistics: object

Usage statistics for the event store

databaseSizeBytes: number

Storage size in bytes used by the event store

optional newestEventTimestamp: string

ISO timestamp of the newest event in the store, if available

optional oldestEventTimestamp: string

ISO timestamp of the oldest event in the store, if available

totalEvents: number

Total number of events stored

totalStreams: number

Total number of event streams stored


status: "active" | "suspended" | "deleted"

Current status of the event store

EventStoreInfo.status


optional streams: object

Stream count and total event count for this store. Mirrors the management API streams field.

count: number

Number of streams in this event store.

totalEvents: number

Total number of events across all streams.


updatedAt: string

ISO timestamp of when the event store was last updated

EventStoreInfo.updatedAt