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
Some filters will not be recognized and parsed by csv reporting module and couldn't generate correct report, with filtered data. e.g. range filter
"filter":[{"meta":{"params":{"gte":3,"lt":5},"alias":null,"negate":false,"disabled":false,"type":"range","key":"total_quantity","indexRefName":"kibanaSavedObjectMeta.searchSourceJSON.filter[0].meta.index"},"range":{"total_quantity":{"gte":3,"lt":5}},"$state":{"store":"appState"}}
After looking into the code which parse the saved search meta, I found only certain type is parsed. https://github.com/opensearch-project/dashboards-reports/blob/d08711e2f1dad573716d5aeacd5247d09b2a8af9/dashboards-reports/server/routes/utils/dataReportHelpers.ts#L69-L82
if comparing with all the availiable types, we are missing some. https://github.com/opensearch-project/OpenSearch-Dashboards/blob/4874000ffba2dd6d25948e3efd30cfd914f52986/src/legacy/core_plugins/data/public/filter/filter_bar/filter_editor/lib/get_filter_display_text.tsx#L43-L50
To Reproduce Steps to reproduce the behavior:
Expected behavior
Plugins Reporting
Screenshots If applicable, add screenshots to help explain your problem.
Host/Environment (please complete the following information):
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
buildOpensearchQuery()
joshuali925
zhongnansu
No branches or pull requests
Missing the following filters
Some filters will not be recognized and parsed by csv reporting module and couldn't generate correct report, with filtered data.
e.g. range filter
After looking into the code which parse the saved search meta, I found only certain type is parsed.
https://github.com/opensearch-project/dashboards-reports/blob/d08711e2f1dad573716d5aeacd5247d09b2a8af9/dashboards-reports/server/routes/utils/dataReportHelpers.ts#L69-L82
if comparing with all the availiable types, we are missing some.
https://github.com/opensearch-project/OpenSearch-Dashboards/blob/4874000ffba2dd6d25948e3efd30cfd914f52986/src/legacy/core_plugins/data/public/filter/filter_bar/filter_editor/lib/get_filter_display_text.tsx#L43-L50
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Plugins
Reporting
Screenshots
If applicable, add screenshots to help explain your problem.
Host/Environment (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: