Skip to main content
POST
/
api
/
metricValues
/
v1
Log metric values
curl --request POST \
  --url https://api.example.com/api/metricValues/v1 \
  --header 'Content-Type: application/json' \
  --header 'X-Domino-Api-Key: <api-key>' \
  --data '
{
  "newMetricValues": [
    {
      "metric": "<string>",
      "modelMonitoringId": "<string>",
      "referenceTimestamp": "<string>",
      "value": 123,
      "tags": [
        {
          "key": "<string>",
          "value": "<string>"
        }
      ]
    }
  ]
}
'
{
  "error": "<string>"
}

Authorizations

X-Domino-Api-Key
string
header
required

Body

application/json

List of metric values to log

newMetricValues
object[]
required

Response

Success