Monitoring & Collection/Grafana Integration
POSTGrafanaSince 1.0SynchronousAuth Required
QueueGrafanaChange
Queue a Grafana operation change to be applied when connectivity is restored
Execution Availability
Try It Out
Submit a mock request using the current auth context and example-driven inputs.
Request Inputs
Body Fields
operationStringRequiredType of operation to queue (create, update, delete)
Example: update
resourceIdStringRequiredUUID of the Grafana resource to apply the change to
Example: dash-001-abc
payloadStringRequiredJSON payload of the change
Example: {}
queuedByStringRequiredUser ID queueing this change
Example: user-001-abc
Responses
Endpoint
POST/api/v1/monitoring/grafana/sync/queue
/api/v1/monitoring/grafana/sync/queue
Request Example
curl -X POST '{host}/api/v1/monitoring/grafana/sync/queue' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{"operation":"update","resourceId":"dash-001-abc","payload":"{}","queuedBy":"user-001-abc"}'
Response Example
200{
"id": "qc-001-abc",
"operation": "update",
"resourceId": "dash-001-abc",
"payload": "{}",
"queuedAt": "example",
"queuedBy": "user-001-abc",
"retryCount": 20,
"status": "pending"
}Change History
This API has no change history records yet.
