Get event tags created in annotations
GET/v1/grafana/api/annotations/tags
Searches for event tags in annotations in the Grafana database. Please ensure to change the region in the URL to match your account's region.
Request
Query Parameters
tag string
limit integer
Responses
- 200
successful query
- application/json
- Schema
- Example (from schema)
Schema
result object
Query result.
tags object
Tags retrieved by the query.
tag string
Tag.
count integer
Tags count.
{
"result": {
"tags": {
"tag": "outage",
"count": 1
}
}
}
Loading...