Find annotations
GET/v1/grafana/api/annotations/
Searches for annotations in the Grafana database. Please ensure to change the region in the URL to match your account's region.
Request
Query Parameters
from integer
to integer
limit integer
alertId integer
dashboardId integer
panelId integer
userId integer
type string
tags string
Responses
- 200
successful query
- application/json
- Schema
- Example (from schema)
Schema
id integer
ID.
dashboardId integer
Dashboard ID.
dashboardUId string
Dashboard UID.
dashboardSlug string
Dashboard slug.
panelId integer
Panel ID.
name string
Dashboard name.
state string
Dashboard state.
newStateDate string
Date of the new state.
evalDate string
Evaluation date.
evalData string[]
Evaluation data.
executionError string
Execution error, if present
url string
Dashboard url.
{
"id": 1,
"dashboardId": 1,
"dashboardUId": "ABcdEFghij",
"dashboardSlug": "sensors",
"panelId": 1,
"name": "fire place sensor",
"state": "alerting",
"newStateDate": "2018-05-14T05:55:20+02:00",
"evalDate": "0001-01-01T00:00:00Z",
"evalData": [
"string"
],
"executionError": "",
"url": "http://grafana.com/dashboard/db/sensors"
}
Loading...