Skip to main content
Monitoring & Collection/Grafana Integration
GETGrafanaSince 1.0SynchronousAuth Required

GetGrafanaSyncStatus

Get the current Grafana sync status including connection state and queue depth

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Request Inputs

This API requires no request parameters.

Responses

200 OK

On success, this API returns the following response structure.

  • connectedBoolean

    Whether Grafana is currently reachable

    Example: true

  • degradedBoolean

    Whether Grafana sync is in degraded (queued) mode

    Example: false

  • lastCheckedString

    Last checked

    Example: 2026-01-15T08:00:00Z

  • queueDepthInteger

    Number of operations currently waiting in the sync queue

    Example: 20

  • conflictCountInteger

    Number of unresolved sync conflicts

    Example: 20

  • dataSourceString

    Source of dashboard data (live or cache)

    Example: live

  • cacheAgeString

    Age of the cached data if data_source is cache

    Example: 5m30s

Endpoint

GET/api/v1/monitoring/grafana/sync/status

/api/v1/monitoring/grafana/sync/status

Operation ID

GetGrafanaSyncStatus

Permalink

Request Example

curl -X GET '{host}/api/v1/monitoring/grafana/sync/status' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "connected": true,
  "degraded": false,
  "lastChecked": "example",
  "queueDepth": 20,
  "conflictCount": 20,
  "dataSource": "live",
  "cacheAge": "5m30s"
}

Change History

This API has no change history records yet.

View all change history