From 3e948a966a4262183f60bfb168a1095d0816e3e6 Mon Sep 17 00:00:00 2001 From: Ivana Huckova <30407135+ivanahuckova@users.noreply.github.com> Date: Tue, 3 Sep 2024 13:26:35 +0000 Subject: [PATCH] automated release 1.9.1 --- dist/plugin.json | 58 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 dist/plugin.json diff --git a/dist/plugin.json b/dist/plugin.json new file mode 100644 index 0000000..4ed0759 --- /dev/null +++ b/dist/plugin.json @@ -0,0 +1,58 @@ +{ + "$schema": "https://raw.githubusercontent.com/grafana/grafana/main/docs/sources/developers/plugins/plugin.schema.json", + "id": "grafana-bigquery-datasource", + "type": "datasource", + "name": "Google BigQuery", + "metrics": true, + "annotations": true, + "alerting": true, + "backend": true, + "executable": "gpx_bigquery", + "dependencies": { + "grafanaDependency": ">=10.3.6" + }, + "queryOptions": { + "maxDataPoints": true + }, + "info": { + "description": "Google BigQuery datasource for Grafana", + "author": { + "name": "Grafana Labs", + "url": "https://grafana.com" + }, + "keywords": ["bigquery", "database", "sql"], + "logos": { + "small": "img/logo.png", + "large": "img/logo.png" + }, + "links": [ + { + "name": "Website", + "url": "https://github.com/grafana/google-bigquery-datasource/" + } + ], + "version": "1.9.1", + "updated": "2024-09-03" + }, + "routes": [ + { + "path": "bigquery", + "url": "https://www.googleapis.com/bigquery", + "jwtTokenAuth": { + "scopes": ["https://www.googleapis.com/auth/bigquery", "https://www.googleapis.com/auth/drive"], + "params": { + "token_uri": "{{.JsonData.tokenUri}}", + "client_email": "{{.JsonData.clientEmail}}", + "private_key": "{{.SecureJsonData.privateKey}}" + } + } + } + ], + "includes": [ + { + "type": "dashboard", + "name": "Array queries examples", + "path": "dashboards/arrays.json" + } + ] +}