adminBuffer.spec.jsx.snap 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`AdminBuffer render() renders 1`] = `
  3. <div>
  4. <h3>
  5. Buffers
  6. </h3>
  7. <div
  8. className="box"
  9. >
  10. <div
  11. className="box-header"
  12. >
  13. <h4>
  14. About
  15. </h4>
  16. </div>
  17. <div
  18. className="box-content with-padding"
  19. >
  20. <p>
  21. Sentry buffers are responsible for making changes to cardinality counters — such as an issues event count — as well as updating attributes like
  22. <em>
  23. last seen
  24. </em>
  25. . These are flushed on a regularly interval, and are directly affected by the queue backlog.
  26. </p>
  27. </div>
  28. </div>
  29. <div
  30. className="box"
  31. >
  32. <div
  33. className="box-header"
  34. >
  35. <h4>
  36. Updates Processed
  37. </h4>
  38. </div>
  39. <internalStatChart
  40. height={150}
  41. label="Jobs"
  42. resolution="1h"
  43. since={1507603280}
  44. stat="jobs.finished.sentry.tasks.process_buffer.process_incr"
  45. />
  46. </div>
  47. <div
  48. className="box"
  49. >
  50. <div
  51. className="box-header"
  52. >
  53. <h4>
  54. Revoked Updates
  55. </h4>
  56. </div>
  57. <internalStatChart
  58. height={150}
  59. label="Jobs"
  60. resolution="1h"
  61. since={1507603280}
  62. stat="buffer.revoked"
  63. />
  64. </div>
  65. </div>
  66. `;