Plugins: Set backend metadata property for core plugins (#43349)

Ref #42648
Ref #42781
pull/42777/head^2
Marcus Efraimsson 4 years ago committed by GitHub
parent 4ec6f95bcd
commit 7d3bdb6d1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      pkg/plugins/manager/loader/loader_test.go
  2. 1
      public/app/plugins/datasource/cloud-monitoring/plugin.json
  3. 1
      public/app/plugins/datasource/cloudwatch/plugin.json
  4. 1
      public/app/plugins/datasource/elasticsearch/plugin.json
  5. 3
      public/app/plugins/datasource/grafana-azure-monitor-datasource/plugin.json
  6. 1
      public/app/plugins/datasource/graphite/plugin.json
  7. 1
      public/app/plugins/datasource/influxdb/plugin.json
  8. 1
      public/app/plugins/datasource/loki/plugin.json
  9. 1
      public/app/plugins/datasource/mssql/plugin.json
  10. 1
      public/app/plugins/datasource/mysql/plugin.json
  11. 1
      public/app/plugins/datasource/opentsdb/plugin.json
  12. 1
      public/app/plugins/datasource/postgres/plugin.json
  13. 1
      public/app/plugins/datasource/prometheus/plugin.json
  14. 1
      public/app/plugins/datasource/tempo/plugin.json
  15. 1
      public/app/plugins/datasource/testdata/plugin.json

@ -80,6 +80,7 @@ func TestLoader_Load(t *testing.T) {
Metrics: true,
Alerting: true,
Logs: true,
Backend: true,
QueryOptions: map[string]bool{"minInterval": true},
},
Module: "app/plugins/datasource/cloudwatch/module",

@ -7,6 +7,7 @@
"metrics": true,
"alerting": true,
"annotations": true,
"backend": true,
"includes": [
{
"type": "dashboard",

@ -7,6 +7,7 @@
"logs": true,
"alerting": true,
"annotations": true,
"backend": true,
"includes": [
{ "type": "dashboard", "name": "EC2", "path": "dashboards/ec2.json" },
{ "type": "dashboard", "name": "EBS", "path": "dashboards/EBS.json" },

@ -22,6 +22,7 @@
"annotations": true,
"metrics": true,
"logs": true,
"backend": true,
"queryOptions": {
"minInterval": true

@ -51,5 +51,6 @@
"metrics": true,
"annotations": true,
"alerting": true
"alerting": true,
"backend": true
}

@ -12,6 +12,7 @@
"metrics": true,
"alerting": true,
"annotations": true,
"backend": true,
"queryOptions": {
"maxDataPoints": true,

@ -9,6 +9,7 @@
"logs": true,
"annotations": true,
"alerting": true,
"backend": true,
"queryOptions": {
"minInterval": true

@ -9,6 +9,7 @@
"alerting": true,
"annotations": true,
"streaming": true,
"backend": true,
"queryOptions": {
"maxDataPoints": true

@ -19,6 +19,7 @@
"alerting": true,
"annotations": true,
"metrics": true,
"backend": true,
"queryOptions": {
"minInterval": true

@ -19,6 +19,7 @@
"alerting": true,
"annotations": true,
"metrics": true,
"backend": true,
"queryOptions": {
"minInterval": true

@ -8,6 +8,7 @@
"defaultMatchFormat": "pipe",
"annotations": true,
"alerting": true,
"backend": true,
"info": {
"description": "Open source time series database",

@ -19,6 +19,7 @@
"alerting": true,
"annotations": true,
"metrics": true,
"backend": true,
"queryOptions": {
"minInterval": true

@ -65,6 +65,7 @@
"metrics": true,
"alerting": true,
"annotations": true,
"backend": true,
"queryOptions": {
"minInterval": true
},

@ -10,6 +10,7 @@
"logs": false,
"streaming": false,
"tracing": true,
"backend": true,
"info": {
"description": "High volume, minimal dependency trace storage. OSS tracing solution from Grafana Labs.",

@ -7,6 +7,7 @@
"logs": true,
"alerting": true,
"annotations": true,
"backend": true,
"queryOptions": {
"minInterval": true,

Loading…
Cancel
Save