grafana/public/app/plugins/datasource/loki/plugin.json
David bf5b60f74a
fix(explore): Prevent double querying for Prometheus and Loki (#17004)
* 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
2019-05-13 09:55:20 +02:00

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"
}
}