Migration: Import dashboards from Elasticsearch was capped at 100, now capped at 10000, Fixes #1843

This commit is contained in:
Torkel Ödegaard
2015-04-22 07:50:23 +02:00
parent 8ff316252e
commit dc88fff704
2 changed files with 2 additions and 2 deletions

View File

@@ -74,7 +74,7 @@ function (angular, _, config, kbn, moment) {
var data = {
"fields": [timeField, "_source"],
"query" : { "filtered": { "query" : query, "filter": filter } },
"size": 100
"size": 10000
};
return this._request('POST', '/_search', annotation.index, data).then(function(results) {