DashboardController.http 824 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #
  2. POST {{host}}/dashboard/_multi
  3. Content-Type: application/json
  4. X-Access-Token: {{token}}
  5. [
  6. {
  7. "dashboard": "device",
  8. "object": "message",
  9. "measurement": "quantity",
  10. "dimension": "agg",
  11. "group": "sameDay",
  12. "params": {
  13. "time": "1d",
  14. "format": "yyyy-MM-dd"
  15. }
  16. },
  17. {
  18. "dashboard": "device",
  19. "object": "message",
  20. "measurement": "quantity",
  21. "dimension": "agg",
  22. "group": "sameMonth",
  23. "params": {
  24. "limit": 30,
  25. "time": "1d",
  26. "format": "yyyy-MM-dd",
  27. "from": "2020-06-29 00:00:00"
  28. }
  29. },
  30. {
  31. "dashboard": "device",
  32. "object": "message",
  33. "measurement": "quantity",
  34. "dimension": "agg",
  35. "group": "month",
  36. "params": {
  37. "time": "1M",
  38. "format": "yyyy-MM-dd",
  39. "from": "2020-06-29 00:00:00"
  40. }
  41. }
  42. ]