Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. "filter": {
  2. "bool": {
  3. "should": [
  4. {
  5. "term": {
  6. "host": "abc.xyz.com"
  7. }
  8. }
  9. ]
  10. }
  11. }
  12.  
  13. "query": {
  14. "bool": {
  15. "must": [
  16. {
  17. "multi_match": {
  18. "query": "abc.xyz.com",
  19. "fields": [
  20. "@host",
  21. "_id"
  22. ]
  23. }
  24. }
  25. ]}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement