diff --git a/.changeset/three-brooms-sell.md b/.changeset/three-brooms-sell.md
new file mode 100644
index 0000000000..f399fd2fcd
--- /dev/null
+++ b/.changeset/three-brooms-sell.md
@@ -0,0 +1,5 @@
+---
+'@backstage/plugin-sentry': patch
+---
+
+Render the statsFor property in sentry issues table
diff --git a/plugins/sentry/src/components/SentryIssuesTable/SentryIssuesTable.test.tsx b/plugins/sentry/src/components/SentryIssuesTable/SentryIssuesTable.test.tsx
index b1ac7daad6..a438394388 100644
--- a/plugins/sentry/src/components/SentryIssuesTable/SentryIssuesTable.test.tsx
+++ b/plugins/sentry/src/components/SentryIssuesTable/SentryIssuesTable.test.tsx
@@ -69,4 +69,23 @@ describe('SentryIssuesTable', () => {
expect(await table.findByText('101')).toBeInTheDocument();
expect(await table.findByText('202')).toBeInTheDocument();
});
+ it('should render statsFor in table subtitle', async () => {
+ const issues: SentryIssue[] = [
+ {
+ ...mockIssue,
+ metadata: {
+ type: 'Exception',
+ value: 'exception was thrown',
+ },
+ count: '101',
+ userCount: 202,
+ },
+ ];
+ const table = await render(
+