Langfuse JS/TS SDKs
    Preparing search index...

    Type Alias BlobStorageSyncStatus

    BlobStorageSyncStatus: "idle" | "queued" | "up_to_date" | "disabled" | "error"

    Sync status of the blob storage integration:

    • disabled — integration is not enabled
    • error — last export failed (see lastError for details)
    • idle — enabled but has never exported yet
    • queued — next export is overdue (nextSyncAt is in the past) and waiting to be picked up by the worker
    • up_to_date — all available data has been exported; next export is scheduled for the future

    ETL usage: poll this endpoint and check for up_to_date status. Compare lastSyncAt against your ETL bookmark to determine if new data is available. Note that exports run with a 30-minute lag buffer, so lastSyncAt will always be at least 30 minutes behind real-time.