Commit dc88fff7 by Torkel Ödegaard

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

parent 8ff31625
......@@ -111,7 +111,7 @@ bra run
### Running
```
./grafana web
./grafana
```
Open grafana in your browser (default http://localhost:3000) and login with admin user (default user/pass = admin/admin).
......
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment