We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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:
Add
Add Panels
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("]")
The text was updated successfully, but these errors were encountered:
Duplicate of #8044
Sorry, something went wrong.
No branches or pull requests
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:
(It contains 119 objects)
Add
and go toAdd Panels
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
The text was updated successfully, but these errors were encountered: