arrow_back {{ name }}
Created
{{ bucket.created | datetime | nvl:'-' }}
Storage engine
{{ bucket.directory ? 'File System' : 'RocksDB' }}
Directory
{{ bucket.directory }}

Bucket size

Limit
{{ bucket.maxSize | formatBytes | nvl: '-' }}
Used
{{ bucket.size | formatBytes | nvl: '-' }}
Available
{{ zeroOrMore(bucket.maxSize - bucket.size) | formatBytes }}

Object count

Limit
{{ bucket.maxObjects | nvl: '-' }}
Used
{{ bucket.numObjects | nvl: '-' }}
Available
{{ zeroOrMore(bucket.maxObjects - bucket.numObjects) }}