Langfuse JS/TS SDKs
    Preparing search index...

    Interface BlobStorageIntegrationStatusResponse

    interface BlobStorageIntegrationStatusResponse {
        enabled: boolean;
        id: string;
        lastError: string | null;
        lastErrorAt: string | null;
        lastSyncAt: string | null;
        nextSyncAt: string | null;
        projectId: string;
        syncStatus: BlobStorageSyncStatus;
    }
    Index

    Properties

    enabled: boolean
    id: string
    lastError: string | null

    Raw error message from the storage provider (S3/Azure/GCS) if the last export failed. Cleared on successful export.

    lastErrorAt: string | null

    When the last error occurred. Cleared on successful export.

    lastSyncAt: string | null

    End of the last successfully exported time window. Compare against your ETL bookmark to determine if new data is available. Null if the integration has never synced.

    nextSyncAt: string | null

    When the next export is scheduled. Null if no sync has occurred yet.

    projectId: string