mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Increased max metric suggest count to 1000 for OpenTSDB, Closes #2281
This commit is contained in:
parent
90ecb4c544
commit
19812feb62
@ -78,7 +78,7 @@ function (angular, _, kbn) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
OpenTSDBDatasource.prototype._performSuggestQuery = function(query) {
|
OpenTSDBDatasource.prototype._performSuggestQuery = function(query) {
|
||||||
return this._get('/api/suggest', {type: 'metrics', q: query}).then(function(result) {
|
return this._get('/api/suggest', {type: 'metrics', q: query, max: 1000}).then(function(result) {
|
||||||
return result.data;
|
return result.data;
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user