mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
* fix(explore): Prevent double querying for Prometheus and Loki - queries were triggered twice because two Enter handlers existed - removed runner plugin from Loki and Prom query fields (runner plugin is still being used in azure) Part of #16995 * Set loki's mtrics capability to false Loki is not a metrics store. Explore was using the `metrics` field in the plugin definition to issue a second query run. But Loki shows only one result viewer. Fixes #16995
37 lines
732 B
JSON
37 lines
732 B
JSON
{
|
|
"type": "datasource",
|
|
"name": "Loki",
|
|
"id": "loki",
|
|
"category": "logging",
|
|
|
|
"metrics": false,
|
|
"alerting": false,
|
|
"annotations": false,
|
|
"logs": true,
|
|
"explore": true,
|
|
"tables": false,
|
|
|
|
"info": {
|
|
"description": "Like Prometheus but for logs. OSS logging solution from Grafana Labs",
|
|
"author": {
|
|
"name": "Grafana Project",
|
|
"url": "https://grafana.com"
|
|
},
|
|
"logos": {
|
|
"small": "img/loki_icon.svg",
|
|
"large": "img/loki_icon.svg"
|
|
},
|
|
"links": [
|
|
{
|
|
"name": "Learn more",
|
|
"url": "https://grafana.com/loki"
|
|
},
|
|
{
|
|
"name": "GitHub Project",
|
|
"url": "https://github.com/grafana/loki"
|
|
}
|
|
],
|
|
"version": "5.3.0"
|
|
}
|
|
}
|