Get current system monitor stats
Get the current system monitor stats and uptime for the selected instruments.
Only supported by Quantum noise monitors.
Requires an API key with the data.system:read
scope.
Query parameters
-
instruments
array[string] Required Serial numbers of selected instruments
GET
/data/monitor/current
curl \
--request GET 'https://api.mycirrus.cloud/v1/data/monitor/current?instruments=QT123456&instruments=QT234567'
Response examples (200)
[
{
"cpu": 12.2,
"mem": 8.3,
"disk": 0.2,
"temp": 51.1,
"uptime": 900,
"network": 3.7,
"voltage": 11.5,
"simQuota": 0,
"simUsage": 0
}
]
Response examples (401)
{
"error": "TokenExpired",
"description": "Your access token is invalid or has expired. Try refreshing the token."
}
Response examples (403)
{
"error": "AccessDenied",
"description": "You do not have permission to access this data."
}
Response examples (429)
{
"error": "TooManyRequests",
"description": "You have made too many requests in a short time. Please wait before trying again."
}