Skip to content

Commit 59981c6

Browse files
authored
Merge pull request #2003 from brefphp/update-sentry-docs
Document that Sentry captures timeouts and "response too large" Lambda errors
2 parents df91e2a + 8940053 commit 59981c6

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

website/src/pages/sentry.mdx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { BugAntIcon, ClockIcon, CodeBracketSquareIcon, FingerPrintIcon } from '@heroicons/react/20/solid';
1+
import { BugAntIcon, ClockIcon, CodeBracketSquareIcon, FingerPrintIcon, MagnifyingGlassIcon } from '@heroicons/react/20/solid';
22
import sentry from './sentry/sentry.png';
33
import Image from 'next/image';
44
import Breadcrumbs from '../components/Breadcrumbs';
@@ -72,7 +72,12 @@ export function Sentry() {
7272

7373
const features = [
7474
{
75-
name: 'Exception tracking.',
75+
name: 'Advanced error tracking.',
76+
description: 'Track AWS Lambda errors that are outside of PHP-FPM, like timeouts or "response too big" errors in Sentry.',
77+
icon: MagnifyingGlassIcon,
78+
},
79+
{
80+
name: 'Non-HTTP exception tracking.',
7681
description: 'Add exception tracking to AWS Lambda handlers like SQS, EventBridge, S3 handlers, and more.',
7782
icon: BugAntIcon,
7883
},

website/src/pages/sentry/docs.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import { Callout } from 'nextra/components';
1010

1111
This package provides an advanced integration between Bref applications and [Sentry monitoring](https://sentry.io/):
1212

13+
- Capture AWS Lambda errors that would otherwise be invisible: Lambda timeouts, "response too large" errors, etc. (these errors happen outside PHP-FPM workers and are not captured by the Sentry SDK by default)
1314
- Trace cold starts in performance tracing
1415
- Capture exceptions and trace event handlers using the [function runtime](/docs/runtimes/function) (like EventBridge, SQS, S3…)
1516
- Trace AWS SDK calls in performance tracing

0 commit comments

Comments
 (0)