Hello,
Is there a way to search through all of the fields in system indices?
For example
.monitoring-es-6-YYYY.MM.DD
and fields:
cluster_name
cluster_state.cluster_uuid
etc.
Hello,
Is there a way to search through all of the fields in system indices?
For example
and fields:
cluster_name
cluster_state.cluster_uuid
etc.
Hi,
For example search for text that start with "new" in all fields of all monitoring indices:
GET .monitoring-es-6-/_search?q=new
You can check more about query syntax here:
If you search in a limited fields list maybe better to check about multi_match
Unfortunatelly it does not work, for some reasone (unknown to me) cluster name and other importart for me fields are in those standard and regular indices unsearchable.
{
"took" : 31,
"timed_out" : false,
"_shards" : {
"total" : 1,
"successful" : 1,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : 0,
"max_score" : null,
"hits" :
}
}
Hi @Necus
Can you provide the search request you run? it may help to understand your problem and find a solution.
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
© 2020. All Rights Reserved - Elasticsearch
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.