Databricks SDK for JavaScript
    Preparing search index...

    A Unity Catalog trace storage location. Traces are stored as Delta tables in the specified catalog and schema.

    interface UcTraceLocation {
        catalog?: string;
        effectiveTablePrefix?: string;
        schema?: string;
        tablePrefix?: string;
    }
    Index

    Properties

    catalog?: string

    The name of the Unity Catalog catalog.

    effectiveTablePrefix?: string

    The trace-table prefix actually in effect: table_prefix if it was set on creation, otherwise the server-generated default.

    schema?: string

    The name of the Unity Catalog schema within catalog.

    tablePrefix?: string

    The prefix for the trace tables, which are named {catalog}.{schema}.{table_prefix}_otel_*. May only contain letters, digits, and underscores, and may be at most 238 characters. When unset, a server-generated prefix derived from the experiment ID is used and this field stays empty on read; the resolved value is always available in effective_table_prefix.