Skip to content

Commit bd760f7

Browse files
mydeavivianyentran
andauthored
Apply suggestions from code review
Co-authored-by: vivianyentran <[email protected]>
1 parent 16769da commit bd760f7

File tree

12 files changed

+14
-17
lines changed

12 files changed

+14
-17
lines changed

docs/platforms/javascript/common/configuration/async-context.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ app.get("/my-route-2", function () {
3535

3636
Each request will have its own breadcrumbs, and they will not be shared between requests.
3737

38-
If you want to manually isolate some code, for example for a background job, you can use the `withIsolationScope` method. This will ensure that any breadcrumbs or tags added will be isolated inside of the provided callback:
38+
If you want to manually isolate some code, such as for a background job, you can use the `withIsolationScope` method. This will ensure that any breadcrumbs or tags added will be isolated inside of the provided callback:
3939

4040
```js
4141
const Sentry = require("@sentry/node");

docs/platforms/javascript/common/performance/database/opt-in.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ supported:
1515

1616
_(Available from `8.0.0`)_
1717

18-
Sentry supports tracing [Prisma ORM](https://www.prisma.io/) fetchers with Prisma integration.
18+
Sentry supports tracing [Prisma ORM](https://www.prisma.io/) fetchers with the Prisma integration.
1919

2020
Prisma integration creates a `db.prisma` span for each query and reports to Sentry with relevant details inside `description` if available.
2121

docs/platforms/javascript/guides/aws-lambda/performance/instrumentation/automatic-instrumentation.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ When performance is enabled through `tracesSampleRate`, `enableTracing` or a `tr
1515
- `graphql` (including Apollo Server)
1616
- `mongo`
1717
- `mongoose`
18-
- `prisma`
1918
- `ioredis`
2019

2120
All of these are automatically set up for you without any further configuration. The only exception is Prisma, which you have to opt-in for:

docs/platforms/javascript/guides/connect/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ categories:
88

99
<PlatformContent includePath="getting-started-primer" />
1010

11-
This guide explains how to setup Sentry in your Connect application.
11+
This guide explains how to set up Sentry in your Connect application.
1212

1313
Don't already have an account and Sentry project established? Head over to [sentry.io](https://sentry.io/signup/), then return to this page.
1414

docs/platforms/javascript/guides/connect/performance/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Performance Monitoring
3-
description: "Learn more about how to configure our Performance integrations to get the best experience out of it."
3+
description: "Learn more about how to configure our Performance integrations to get the best experience."
44
---
55

66
As soon as you define a `tracesSampleRate` for your Sentry SDK, Performance Monitoring will be enabled. This will automatically instrument and monitor the performance of your application.
@@ -15,10 +15,10 @@ If you’re adopting Performance in a high-throughput environment, we recommend
1515

1616
## Automatic Instrumentation
1717

18-
See <PlatformLink to="/performance/instrumentation/automatic-instrumentation">Automatic Instrumentation</PlatformLink> to learn about all the things that the SDK automatically instruments for you.
18+
See <PlatformLink to="/performance/instrumentation/automatic-instrumentation">Automatic Instrumentation</PlatformLink> to learn about everything the SDK automatically instruments for you.
1919

2020
## Custom Instrumentation
2121

2222
You can also manually start spans to instrument specific parts of your code. This is useful when you want to measure the performance of a specific operation or function.
2323

24-
See <PlatformLink to="/performance/instrumentation/custom-instrumentation">Custom Instrumentation</PlatformLink> on how to manually start spans.
24+
See <PlatformLink to="/performance/instrumentation/custom-instrumentation">Custom Instrumentation</PlatformLink> to learn how to manually start spans.

docs/platforms/javascript/guides/gcp-functions/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ categories:
77
---
88

99
<Note>
10-
This guide is for Version 8.0.0 and up of `@sentry/google-cloud-serverless`.
10+
This guide is for version 8.0.0 and up of `@sentry/google-cloud-serverless`.
1111
</Note>
1212

1313
Add `@sentry/google-cloud-serverless` as a dependency to `package.json`:

docs/platforms/javascript/guides/gcp-functions/performance/instrumentation/automatic-instrumentation.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ When performance is enabled through `tracesSampleRate`, `enableTracing` or a `tr
1515
- `graphql` (including Apollo Server)
1616
- `mongo`
1717
- `mongoose`
18-
- `prisma`
1918
- `ioredis`
2019

2120
All of these are automatically set up for you without any further configuration. The only exception is Prisma, which you have to opt-in for:

docs/platforms/javascript/guides/koa/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This guide explains how to setup Sentry in your Koa application.
1313
Don't already have an account and Sentry project established? Head over to [sentry.io](https://sentry.io/signup/), then return to this page.
1414

1515
<Note>
16-
This guide is for Version 8.0.0 and up of `@sentry/node`.
16+
This guide is for version 8.0.0 and up of `@sentry/node`.
1717
</Note>
1818

1919
## Install

docs/platforms/javascript/guides/koa/performance/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Performance Monitoring
3-
description: "Learn more about how to configure our Performance integrations to get the best experience out of it."
3+
description: "Learn more about how to configure our Performance integrations to get the best experience."
44
---
55

66
As soon as you define a `tracesSampleRate` for your Sentry SDK, Performance Monitoring will be enabled. This will automatically instrument and monitor the performance of your application.
@@ -15,10 +15,10 @@ If you’re adopting Performance in a high-throughput environment, we recommend
1515

1616
## Automatic Instrumentation
1717

18-
See <PlatformLink to="/performance/instrumentation/automatic-instrumentation">Automatic Instrumentation</PlatformLink> to learn about all the things that the SDK automatically instruments for you.
18+
See <PlatformLink to="/performance/instrumentation/automatic-instrumentation">Automatic Instrumentation</PlatformLink> to learn about everything the SDK automatically instruments for you.
1919

2020
## Custom Instrumentation
2121

2222
You can also manually start spans to instrument specific parts of your code. This is useful when you want to measure the performance of a specific operation or function.
2323

24-
See <PlatformLink to="/performance/instrumentation/custom-instrumentation">Custom Instrumentation</PlatformLink> on how to manually start spans.
24+
See <PlatformLink to="/performance/instrumentation/custom-instrumentation">Custom Instrumentation</PlatformLink> to learn how to manually start spans.

docs/platforms/javascript/guides/node/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This guide explains how to setup Sentry in your Node.js application.
1616
Don't already have an account and Sentry project established? Head over to [sentry.io](https://sentry.io/signup/), then return to this page.
1717

1818
<Note>
19-
This guide is for Version 8.0.0 and up of `@sentry/node`.
19+
This guide is for version 8.0.0 and up of `@sentry/node`.
2020
</Note>
2121

2222
## Install

0 commit comments

Comments
 (0)