cURL
curl --request POST \ --url https://pluto-api.trainy.ai/api/runs/logName/add \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "runId": 123, "logName": [ "train/loss", "train/accuracy" ], "logType": "METRIC" } '
{ "success": true }
Adds new log names (metrics, console logs, etc.) to an existing run.
API key obtained from the mlop dashboard
Numeric ID of the run
Log names to add
["train/loss", "train/accuracy"]
Type of log
METRIC
IMAGE
VIDEO
AUDIO
FILE
TEXT
ARTIFACT
HISTOGRAM
TABLE
DATA
"METRIC"
Log names added successfully
Was this page helpful?