Schema for information about a database.

interface DatabaseInformation {
    cluster: DatabaseInformationCluster;
    committed_update_seq?: string;
    compact_running: boolean;
    compacted_seq?: string;
    db_name: string;
    disk_format_version: number;
    doc_count: number;
    doc_del_count: number;
    engine?: string;
    partitioned_indexes?: PartitionedIndexesInformation;
    props: DatabaseInformationProps;
    sizes: ContentInformationSizes;
    update_seq: string;
    uuid?: string;
}

Properties

Schema for database cluster information.

committed_update_seq?: string

An opaque string that describes the committed state of the database.

compact_running: boolean

True if the database compaction routine is operating on this database.

compacted_seq?: string

An opaque string that describes the compaction state of the database.

db_name: string

The name of the database.

disk_format_version: number

The version of the physical format used for the data when it is stored on disk.

doc_count: number

A count of the documents in the specified database.

doc_del_count: number

Number of deleted documents.

engine?: string

The engine used for the database.

partitioned_indexes?: PartitionedIndexesInformation

Information about database's partitioned indexes.

Schema for database properties.

Schema for size information of content.

update_seq: string

An opaque string that describes the state of the database. Do not rely on this string for counting the number of updates.

uuid?: string

The UUID of the database.

Generated using TypeDoc