Databricks SDK for JavaScript
    Preparing search index...

    Metric associated with a run, represented as a key-value pair.

    interface Metric {
        datasetDigest?: string;
        datasetName?: string;
        key?: string;
        modelId?: string;
        runId?: string;
        step?: bigint;
        timestamp?: bigint;
        value?: number;
    }
    Index

    Properties

    datasetDigest?: string

    The dataset digest of the dataset associated with the metric, e.g. an md5 hash of the dataset that uniquely identifies it within datasets of the same name.

    datasetName?: string

    The name of the dataset associated with the metric. E.g. “my.uc.table@2” “nyc-taxi-dataset”, “fantastic-elk-3”

    key?: string

    The key identifying the metric.

    modelId?: string

    The ID of the logged model or registered model version associated with the metric, if applicable.

    runId?: string

    The ID of the run containing the metric.

    step?: bigint

    The step at which the metric was logged.

    timestamp?: bigint

    The timestamp at which the metric was recorded.

    value?: number

    The value of the metric.