Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. Query - time4.query : {
  2. "dataSource": "rb_flow_f6f6bbfc-c5b7-4280-a9d4-25a222a441b5",
  3. "granularity": "all",
  4. "intervals": [
  5. "2016-10-25T03:00:00+02:00/2016-10-25T04:00:00+02:00"
  6. ],
  7. "filter": {
  8. "type": "or",
  9. "fields": [
  10. {
  11. "type": "selector",
  12. "dimension": "type",
  13. "value": "snmp-stats"
  14. },
  15. {
  16. "type": "selector",
  17. "dimension": "type",
  18. "value": "meraki"
  19. }
  20. ]
  21. },
  22. "queryType": "timeseries",
  23. "context": {
  24. "skipEmptyBuckets": "true"
  25. },
  26. "aggregations": [
  27. {
  28. "type": "longSum",
  29. "name": "flows",
  30. "fieldName": "events"
  31. },
  32. {
  33. "type": "filtered",
  34. "filter": {
  35. "type": "selector",
  36. "dimension": "type",
  37. "value": "meraki"
  38. },
  39. "aggregator": {
  40. "type": "hyperUnique",
  41. "name": "visitors",
  42. "fieldName": "clients"
  43. }
  44. }
  45. ],
  46. "postAggregations": [
  47. {
  48. "name": "visitors_float",
  49. "type": "javascript",
  50. "fieldNames": [
  51. "flows",
  52. "visitors"
  53. ],
  54. "function": "function (value, visitors) { return visitors; }"
  55. }
  56. ]
  57. }
  58.  
  59. Result:
  60. [
  61. {
  62. "timestamp": "2016-10-25T01:00:00.000Z",
  63. "result": {
  64. "visitors": 11259.898751496865,
  65. "visitors_float": "NaN",
  66. "flows": 25328
  67. }
  68. }
  69. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement