mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 16:32:13 +08:00
docs: Change type of 'tags' in annotationQuery result example to list
A datasource plugin must return a list of tags in the 'tags' field of the annotationQuery result. A string 'test' would otherwise result in 4 tags in Grafana: 't','e','s','t'.
This commit is contained in:
@ -163,7 +163,7 @@ Expected result from datasource.annotationQuery:
|
|||||||
"title": "Cluster outage",
|
"title": "Cluster outage",
|
||||||
"time": 1457075272576,
|
"time": 1457075272576,
|
||||||
"text": "Joe causes brain split",
|
"text": "Joe causes brain split",
|
||||||
"tags": "joe, cluster, failure"
|
"tags": ["joe", "cluster", "failure"]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
```
|
```
|
||||||
|
Reference in New Issue
Block a user