adminBuffer.spec.jsx.snap 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. <withApi(InternalStatChart)
  40. label="Jobs"
  41. resolution="1h"
  42. since={1507603280}
  43. stat="jobs.finished.sentry.tasks.process_buffer.process_incr"
  44. />
  45. </div>
  46. <div
  47. className="box"
  48. >
  49. <div
  50. className="box-header"
  51. >
  52. <h4>
  53. Revoked Updates
  54. </h4>
  55. </div>
  56. <withApi(InternalStatChart)
  57. label="Jobs"
  58. resolution="1h"
  59. since={1507603280}
  60. stat="buffer.revoked"
  61. />
  62. </div>
  63. </div>
  64. `;