unified-llm-client
    Preparing search index...

    Interface PostgresUsageLoggerOptions

    Configuration for the Postgres usage logger.

    interface PostgresUsageLoggerOptions {
        batchSize?: number;
        connectionString?: string;
        flushIntervalMs?: number;
        onError?: (error: unknown) => void;
        pool?: PostgresSessionStorePool;
        schemaName?: string;
        tableName?: string;
    }
    Index

    Properties

    batchSize?: number
    connectionString?: string
    flushIntervalMs?: number
    onError?: (error: unknown) => void
    schemaName?: string
    tableName?: string