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

Some of the dashboards appear to be in an error state. #10

Open
amazingkj opened this issue Mar 23, 2023 · 0 comments
Open

Some of the dashboards appear to be in an error state. #10

amazingkj opened this issue Mar 23, 2023 · 0 comments

Comments

@amazingkj
Copy link

amazingkj commented Mar 23, 2023

kibana 7.17ver

error

Some of the dashboards appear to be in an error state.

  • error message-
    Text fields are not optimised for operations that require per-document field data like aggregations and sorting, so these operations are disabled by default. Please use a keyword field instead. Alternatively, set fielddata=true on [name] in order to load field data by uninverting the inverted index. Note that this can use significant memory.

Solution

Modify script statement after file registration > file : kibana-index.ndjson

script :
if (doc['name'].value == 'http_server_requests') { ...

if (doc['name.keyword'].value == 'process_start_time') { return doc['value'].value } return '-'

Change everything else too. 'name' > 'name.keyword'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant