123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`AdminBuffer render() renders 1`] = `
- <div>
- <h3>
- Buffers
- </h3>
- <div
- className="box"
- >
- <div
- className="box-header"
- >
- <h4>
- About
- </h4>
- </div>
- <div
- className="box-content with-padding"
- >
- <p>
- Sentry buffers are responsible for making changes to cardinality counters — such as an issues event count — as well as updating attributes like
-
- <em>
- last seen
- </em>
- . These are flushed on a regularly interval, and are directly affected by the queue backlog.
- </p>
- </div>
- </div>
- <div
- className="box"
- >
- <div
- className="box-header"
- >
- <h4>
- Updates Processed
- </h4>
- </div>
- <withApi(InternalStatChart)
- label="Jobs"
- resolution="1h"
- since={1507603280}
- stat="jobs.finished.sentry.tasks.process_buffer.process_incr"
- />
- </div>
- <div
- className="box"
- >
- <div
- className="box-header"
- >
- <h4>
- Revoked Updates
- </h4>
- </div>
- <withApi(InternalStatChart)
- label="Jobs"
- resolution="1h"
- since={1507603280}
- stat="buffer.revoked"
- />
- </div>
- </div>
- `;
|