Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to go beyond page 5 in Add Panel #14840

Closed
TomonoriSoejima opened this issue Nov 8, 2017 · 1 comment
Closed

Unable to go beyond page 5 in Add Panel #14840

TomonoriSoejima opened this issue Nov 8, 2017 · 1 comment
Labels
Feature:Dashboard Dashboard related features

Comments

@TomonoriSoejima
Copy link
Contributor

Kibana version:
5.6.3
Elasticsearch version:
5.6.3
Server OS version:
OS X
Browser version:
Chrome latest
Browser OS version:

Description of the problem including expected versus actual behavior:

Steps to reproduce:

  1. create many visualizations or use the attached file to import it.
    (It contains 119 objects)
  2. create a dashboard
  3. click Add and go to Add Panels
  4. See that you are only limited up to page 5.

sample

Errors in browser console (if relevant):

Provide logs and/or server output (if relevant):

You can use the attached txt file and import on Kibana.

data.txt

If you need to create a visualization, here is the script I created in Python 3

import json

print("[")
for num in range(1,120):
    source = {
        "title": "title " + str(num),
        "visState": "{\"title\":\"dd\",\"type\":\"table\",\"params\":{\"perPage\":10,\"showPartialRows\":false,\"showMeticsAtAllLevels\":false,\"sort\":{\"columnIndex\":null,\"direction\":null},\"showTotal\":false,\"totalFunc\":\"sum\",\"type\":\"table\"},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{}}],\"listeners\":{}}",
        "uiStateJSON": "{\"vis\":{\"params\":{\"sort\":{\"columnIndex\":null,\"direction\":null}}}}",
        "description": "",
        "version": 1
    }

    data = {
        '_id': num,
        '_type': "visualization",
        '_source': source
    }
    json_str = json.dumps(data)
    if num == 119:
        print(json_str)
    else:
        print(json_str + ",")

print("]")
@TomonoriSoejima TomonoriSoejima added the Feature:Dashboard Dashboard related features label Nov 8, 2017
@tsullivan
Copy link
Member

Duplicate of #8044

@tsullivan tsullivan marked this as a duplicate of #8044 May 1, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Feature:Dashboard Dashboard related features
Projects
None yet
Development

No branches or pull requests

2 participants