Langfuse JS/TS SDKs
    Preparing search index...

    Interface BlobStorageIntegrationStatusResponse

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

    Properties

    enabled: boolean
    id: string
    lastError: null | string

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

    lastErrorAt: null | string

    When the last error occurred. Cleared on successful export.

    lastSyncAt: null | string

    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: null | string

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

    projectId: string