Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. GET stackoverflow/_search
  2. {
  3. "_source": false,
  4. "aggs": {
  5. "groups": {
  6. "terms": {
  7. "field": "text.keyword",
  8. "include": "LOC.*"
  9. }
  10. }
  11. }
  12. }
  13.  
  14. GET stackoverflow/_search
  15. {
  16. "_source": false,
  17. "aggs": {
  18. "groups": {
  19. "terms": {
  20. "field": "text.keyword",
  21. "include": "L.*"
  22. }
  23. }
  24. }
  25. }
  26.  
  27. "buckets" : [
  28. {
  29. "key" : "LOCK",
  30. "doc_count" : 1
  31. },
  32. {
  33. "key" : "LOL",
  34. "doc_count" : 1
  35. }
  36. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement