Overview
The telemetry object returns model and version measurements. It includes the number of jobs and data processed, the number of users, and the average processing time. The Model service provides APIs to search and retrieve telemetry details.
The telemetry object
{
"versionId": "0.0.1",
"completedJobs": 0,
"dataProcessed": "...",
"accumulatedUsers": 0,
"averageLatency": "...",
"averageQueueTime: "..."
}
versionID | string | The model’s version number. It follows the semantic versioning format. |
completedJobs | number | The number of jobs completed by a model. |
dataProcessed | string | The amount of data processed by a model in bytes. |
accumulatedUsers | number | The number of users that requested at least one job to a model. |
averageLatency | string | The average time to process the inputs and upload the results of a model in milliseconds. |
averageQueueTime | string | The average time to start the process of the first input sent to a model in milliseconds. |