Skip to content

Commit

Permalink
automated release 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gabor committed Jun 19, 2024
1 parent c50f420 commit 7c999a9
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions dist/plugin.json
Original file line number Diff line number Diff line change
@@ -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": ">=9.0.0"
},
"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.7.0",
"updated": "2024-06-19"
},
"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"
}
]
}

0 comments on commit 7c999a9

Please sign in to comment.