Databricks SDK for JavaScript
    Preparing search index...
    interface LogMetricRequest {
        datasetDigest?: string;
        datasetName?: string;
        key?: string;
        modelId?: string;
        runId?: string;
        runUuid?: string;
        step?: bigint;
        timestamp?: bigint;
        value?: number;
    }
    Index

    Properties

    datasetDigest?: string

    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

    Name of the metric.

    modelId?: string

    ID of the logged model associated with the metric, if applicable

    runId?: string

    ID of the run under which to log the metric. Must be provided.

    runUuid?: string

    [Deprecated, use run_id instead] ID of the run under which to log the metric. This field will be removed in a future MLflow version.

    step?: bigint

    Step at which to log the metric

    timestamp?: bigint

    Unix timestamp in milliseconds at the time metric was logged.

    value?: number

    Double value of the metric being logged.