Pinecone TypeScript SDK - v8.1.0
    Preparing search index...

    Type Alias IndexStatsDescription

    An index description returned from Index.describeIndexStats

    type IndexStatsDescription = {
        dimension?: number;
        indexFullness?: number;
        namespaces?: { [key: string]: IndexStatsNamespaceSummary };
        totalRecordCount?: number;
    }
    Index
    dimension?: number

    The dimension of the index.

    indexFullness?: number

    A number indicating the percentage of available storage consumed by your index. This is relevant only for pod-based indexes; serverless indexes scale automatically, so index fullness does not apply.

    namespaces?: { [key: string]: IndexStatsNamespaceSummary }

    A map whose keys are the names of namespaces and whose values are a namespace summary including the total record count in that namespace.

    totalRecordCount?: number

    The total number of records that have been upserted to your index.