|
| 1 | +{ |
| 2 | + "$schema": "https://raw.githubusercontent.com/grafana/grafana/main/docs/sources/developers/plugins/plugin.schema.json", |
| 3 | + "id": "grafana-bigquery-datasource", |
| 4 | + "type": "datasource", |
| 5 | + "name": "Google BigQuery", |
| 6 | + "metrics": true, |
| 7 | + "annotations": true, |
| 8 | + "alerting": true, |
| 9 | + "backend": true, |
| 10 | + "executable": "gpx_bigquery", |
| 11 | + "dependencies": { |
| 12 | + "grafanaDependency": ">=9.0.0" |
| 13 | + }, |
| 14 | + "queryOptions": { |
| 15 | + "maxDataPoints": true |
| 16 | + }, |
| 17 | + "info": { |
| 18 | + "description": "Google BigQuery datasource for Grafana", |
| 19 | + "author": { |
| 20 | + "name": "Grafana Labs", |
| 21 | + "url": "https://grafana.com" |
| 22 | + }, |
| 23 | + "keywords": ["bigquery", "database", "sql"], |
| 24 | + "logos": { |
| 25 | + "small": "img/logo.png", |
| 26 | + "large": "img/logo.png" |
| 27 | + }, |
| 28 | + "links": [ |
| 29 | + { |
| 30 | + "name": "Website", |
| 31 | + "url": "https://github.com/grafana/google-bigquery-datasource/" |
| 32 | + } |
| 33 | + ], |
| 34 | + "version": "1.7.0", |
| 35 | + "updated": "2024-06-19" |
| 36 | + }, |
| 37 | + "routes": [ |
| 38 | + { |
| 39 | + "path": "bigquery", |
| 40 | + "url": "https://www.googleapis.com/bigquery", |
| 41 | + "jwtTokenAuth": { |
| 42 | + "scopes": ["https://www.googleapis.com/auth/bigquery", "https://www.googleapis.com/auth/drive"], |
| 43 | + "params": { |
| 44 | + "token_uri": "{{.JsonData.tokenUri}}", |
| 45 | + "client_email": "{{.JsonData.clientEmail}}", |
| 46 | + "private_key": "{{.SecureJsonData.privateKey}}" |
| 47 | + } |
| 48 | + } |
| 49 | + } |
| 50 | + ], |
| 51 | + "includes": [ |
| 52 | + { |
| 53 | + "type": "dashboard", |
| 54 | + "name": "Array queries examples", |
| 55 | + "path": "dashboards/arrays.json" |
| 56 | + } |
| 57 | + ] |
| 58 | +} |
0 commit comments