Guest User

Untitled

a guest
Feb 18th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. GET ml_test_meters-2019_6/_search
  2. {
  3. "query": {
  4. "bool": {
  5. "must": [
  6. {
  7. "query_string": {
  8. "query": "*",
  9. "analyze_wildcard": true
  10. }
  11. },
  12. {
  13. "range": {
  14. "host-status.meta.current-time": {
  15. "gte": 1549611907552,
  16. "lte": 1549654551498,
  17. "format": "epoch_millis"
  18. }
  19. }
  20. }
  21. ],
  22. "must_not": []
  23. }
  24. },
  25. "size": 0,
  26. "_source": {
  27. "excludes": []
  28. },
  29. "aggs": {
  30. "2": {
  31. "date_histogram": {
  32. "field": "host-status.meta.current-time",
  33. "interval": "1m",
  34. "time_zone": "US/Central",
  35. "min_doc_count": 1
  36. },
  37. "aggs": {
  38. "3": {
  39. "terms": {
  40. "field": "host-status.name.keyword",
  41. "size": 500,
  42. "order": {
  43. "1": "desc"
  44. }
  45. },
  46. "aggs": {
  47. "1": {
  48. "avg": {
  49. "field": "host-status.status-properties.status-detail.total-cpu-stat-iowait"
  50. }
  51. }
  52. }
  53. }
  54. }
  55. }
  56. }
  57. }
Add Comment
Please, Sign In to add comment