I have the most basic knowledge in Kibana, and perhaps just a little bit more of Elasticsearch. Is this possible to build a query which will return all items where field_A == field_B? In sql world, it would be something like:
select * from MyTalbe as t1 inner join MyTable as t2 on t1.field_A = t2.field_B
?
Asked
Active
Viewed 599 times
0

shay__
- 3,815
- 17
- 34
-
1I don't believe you can easily do this in kibana. Even with a raw ES query I'm not sure how you'd do it. – jhilden Aug 19 '15 at 23:26
-
1In ElasticSearch you can do that : http://stackoverflow.com/questions/28845052/query-for-one-field-doesnt-equal-another-field-in-elasticsearch – mherbert Aug 20 '15 at 14:25