I'm trying to retrieve data from Kibana using GET [Index_name]/_search
but from the retrieved data i want all the documents with a particular name
without the help of contents in the doc i.e; doc_name.field_name : field_value
instead i want to search the index for all the documents of my required name.
To search the indices that match the current index pattern, enter your search criteria in the query bar. By default, you’ll use Kibana’s standard query language (KQL), which features autocomplete and a simple, easy-to-use syntax. If you prefer to use Kibana’s legacy query language, based on the Lucene query syntax, you can switch to it from the KQL popup in the query bar. When you enable the legacy query language, you can use the full JSON-based Elasticsearch Query DSL.
plz go through thishttps://www.elastic.co/guide/en/kibana/current/kuery-query.html and if u need more help, we are happy to help
I'm aware of the available query level filtering. Index pattern and search is defined correctly, I'm also able to see data.
My issue is among the data available under an Index pattern can we search for all documents with the same document_name (as it is not mandatory in my data that there is a common data column for a particular document_name).
The actual issue is I want to search all the documents of my interest /required name available under an index from Dev Tools by writing a query in KQL. But I'm unable to find the syntax for document_name level search as,
"match" function is supporting only"document_name"."field_name" level of search only.
So it would be highly helpful if you could suggest some ways to filter by "Document_name".
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.