Skip to content
This repository was archived by the owner on Dec 11, 2022. It is now read-only.

Commit 857e928

Browse files
authored
Merge pull request #70 from doitintl/change-max-data-points
Solves #69
2 parents c2877ec + 19d85aa commit 857e928

File tree

5 files changed

+17
-5
lines changed

5 files changed

+17
-5
lines changed

dist/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,12 @@ The build works with Yarn:
103103

104104
#### Development build
105105
```
106-
yarn run run build:dev
106+
yarn run build:dev
107107
```
108108

109109
#### Production build
110110
```
111-
yarn run run build:prod
111+
yarn run build:prod
112112
```
113113

114114
Tests can be run with Jest:
@@ -124,4 +124,4 @@ See the [Contribution Guide](./CONTRIBUTING.md).
124124
## License
125125

126126
See the [License File](LICENSE.md).
127-
**
127+
**

dist/partials/query.editor.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@
136136
<i class="fa fa-caret-right" ng-hide="ctrl.showHelp"></i>
137137
</label>
138138
</div>
139+
139140
<div class="gf-form" ng-show="ctrl.lastQueryMeta">
140141
<label class="gf-form-label query-keyword pointer"
141142
ng-click="ctrl.showLastQuerySQL = !ctrl.showLastQuerySQL">
@@ -152,7 +153,6 @@
152153
<div class="gf-form" ng-show="ctrl.showLastQuerySQL">
153154
<pre class="gf-form-pre">{{ctrl.lastQueryMeta.sql}}</pre>
154155
</div>
155-
156156
<div class="gf-form" ng-show="ctrl.showHelp">
157157
<pre class="gf-form-pre alert alert-info">Time series:
158158
- return column named <i>time</i> (UTC in seconds or timestamp)

dist/plugin.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@
66
"tables": true,
77
"annotations": true,
88
"alerting": false,
9+
10+
"queryOptions": {
11+
"maxDataPoints": true
12+
},
13+
914
"state": "beta",
15+
1016
"info": {
1117
"description": "Google BigQuery datasource for Grafana",
1218
"author": {

src/partials/query.editor.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@
136136
<i class="fa fa-caret-right" ng-hide="ctrl.showHelp"></i>
137137
</label>
138138
</div>
139+
139140
<div class="gf-form" ng-show="ctrl.lastQueryMeta">
140141
<label class="gf-form-label query-keyword pointer"
141142
ng-click="ctrl.showLastQuerySQL = !ctrl.showLastQuerySQL">
@@ -152,7 +153,6 @@
152153
<div class="gf-form" ng-show="ctrl.showLastQuerySQL">
153154
<pre class="gf-form-pre">{{ctrl.lastQueryMeta.sql}}</pre>
154155
</div>
155-
156156
<div class="gf-form" ng-show="ctrl.showHelp">
157157
<pre class="gf-form-pre alert alert-info">Time series:
158158
- return column named <i>time</i> (UTC in seconds or timestamp)

src/plugin.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@
66
"tables": true,
77
"annotations": true,
88
"alerting": false,
9+
10+
"queryOptions": {
11+
"maxDataPoints": true
12+
},
13+
914
"state": "beta",
15+
1016
"info": {
1117
"description": "Google BigQuery datasource for Grafana",
1218
"author": {

0 commit comments

Comments
 (0)