diff --git a/docs/product/issues/issue-details/performance-issues/img/n-plus-one-api-calls-detector-settings.png b/docs/product/issues/issue-details/performance-issues/img/n-plus-one-api-calls-detector-settings.png index 417ffad150a60..d3ff3d83eb4b6 100644 Binary files a/docs/product/issues/issue-details/performance-issues/img/n-plus-one-api-calls-detector-settings.png and b/docs/product/issues/issue-details/performance-issues/img/n-plus-one-api-calls-detector-settings.png differ diff --git a/docs/product/issues/issue-details/performance-issues/img/n-plus-one-api-calls-evidence.png b/docs/product/issues/issue-details/performance-issues/img/n-plus-one-api-calls-evidence.png index 8c29363da4c29..8d15b59f740b6 100644 Binary files a/docs/product/issues/issue-details/performance-issues/img/n-plus-one-api-calls-evidence.png and b/docs/product/issues/issue-details/performance-issues/img/n-plus-one-api-calls-evidence.png differ diff --git a/docs/product/issues/issue-details/performance-issues/img/n-plus-one-api-calls-in-book-application.png b/docs/product/issues/issue-details/performance-issues/img/n-plus-one-api-calls-in-book-application.png deleted file mode 100644 index 6140e9f986f98..0000000000000 Binary files a/docs/product/issues/issue-details/performance-issues/img/n-plus-one-api-calls-in-book-application.png and /dev/null differ diff --git a/docs/product/issues/issue-details/performance-issues/n-one-api-calls.mdx b/docs/product/issues/issue-details/performance-issues/n-one-api-calls.mdx index c84a9f509e479..61e65b27e9f3c 100644 --- a/docs/product/issues/issue-details/performance-issues/n-one-api-calls.mdx +++ b/docs/product/issues/issue-details/performance-issues/n-one-api-calls.mdx @@ -34,11 +34,12 @@ You can identify the root cause of your N+1 API Call problems by looking at thre - Transaction name - Repeating spans - This is the URL that's receiving the repeated network calls -- Parameters - These are the query parameters that vary between the network calls +- Query and Path Parameters - These are the parameters that vary between the network calls +- Waterfall trace view - Shows the parent span in which the issue occurred ![N+1 API Calls span evidence](./img/n-plus-one-api-calls-evidence.png) -View it by going to the **Issues** page in Sentry, clicking on the N+1 API Call error you want to examine, then scrolling down to the "Span Evidence" section in the "Details" tab. +View it by going to the **Issues** page in Sentry, clicking on the N+1 API Call error you want to examine, then scrolling down to the "Span Evidence" section. ## Fingerprinting @@ -64,9 +65,7 @@ const Book({ id }) => { }; ``` -If the list has 100 books in it, the page will make 100 network calls simultaneously. The number 100 is the "N" in "N+1 API Call". This effect is visible in the span waterfall, which shows all the simultaneous network requests: - -![N+1 API Calls in an example application](./img/n-plus-one-api-calls-in-book-application.png) +If the list has 100 books in it, the page will make 100 network calls simultaneously. The number 100 is the "N" in "N+1 API Call". This effect is visible in the span waterfall, which shows all the simultaneous network requests. ## Fixing N+1 API Call Issues