Elasticsearch reference gives a good example to combine 2 indices between tweets and users.
GET /tweets/_search
{
"query" : {
"terms" : {
"user" : {
"index" : "users",
"type" : "user",
"id" : "2",
"path" : "followers"
}
}
}
}
ref link: https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-terms-query.html
I have similar query and want to monitor the change daily, is it possible to visualize this kind of query in kibana?
Thank you, it is great, this shows me the light of dawn.
Further, I want to sum up each user by id and draw the increasing/decreasing trends daily in a chart.
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.