Skip to content

Conversation

@nevikashah
Copy link
Contributor

Summary

update db/observability integrations docs

Documentation checklist

  • The documentation style guide has been adhered to.
  • If a larger change - such as adding a new page- an issue has been opened in relation to any incorrect or out of date information that this PR fixes.
  • Files which have changed name or location have been allocated redirects.

@github-actions
Copy link
Contributor

github-actions bot commented Jun 9, 2025

This PR changes current filenames or deletes current files. Make sure you have redirects set up to cover the following paths:

  • /workers/databases/native-integrations/
  • /workers/databases/native-integrations/neon/
  • /workers/databases/native-integrations/planetscale/
  • /workers/databases/native-integrations/supabase/
  • /workers/databases/native-integrations/turso/
  • /workers/databases/native-integrations/upstash/
  • /workers/databases/native-integrations/xata/
  • /workers/observability/integrations/baselime-integration/
  • /workers/observability/integrations/sentry/
  • /workers/observability/integrations/

@github-actions github-actions bot added the product:workers Related to Workers product label Jun 9, 2025
@hyperlint-ai
Copy link
Contributor

hyperlint-ai bot commented Jun 9, 2025

Howdy and thanks for contributing to our repo. The Cloudflare team reviews new, external PRs within two (2) weeks. If it's been two weeks or longer without any movement, please tag the PR Assignees in a comment.

We review internal PRs within 1 week. If it's something urgent or has been sitting without a comment, start a thread in the Developer Docs space internally.


PR Change Summary

Updated the integrations documentation for databases and observability, enhancing clarity and organization.

  • Modified existing database integration documentation for clarity and consistency.
  • Added a new section for third-party database integrations.
  • Renamed and reorganized several integration files for better structure.
  • Introduced Sentry integration documentation for observability.

Modified Files

  • src/content/docs/workers/databases/connecting-to-databases.mdx
  • src/content/docs/workers/tutorials/connect-to-turso-using-workers/index.mdx

Added Files

  • src/content/docs/workers/databases/third-party-integrations/index.mdx
  • src/content/docs/workers/observability/third-party-integrations/sentry.mdx

Renamed Files

  • src/content/docs/workers/databases/third-party-integrations/neon.mdx
  • src/content/docs/workers/databases/third-party-integrations/planetscale.mdx
  • src/content/docs/workers/databases/third-party-integrations/supabase.mdx
  • src/content/docs/workers/databases/third-party-integrations/turso.mdx
  • src/content/docs/workers/databases/third-party-integrations/upstash.mdx
  • src/content/docs/workers/databases/third-party-integrations/xata.mdx
  • src/content/docs/workers/observability/third-party-integrations/index.mdx

How can I customize these reviews?

Check out the Hyperlint AI Reviewer docs for more information on how to customize the review.

If you just want to ignore it on this PR, you can add the hyperlint-ignore label to the PR. Future changes won't trigger a Hyperlint review.

Note specifically for link checks, we only check the first 30 links in a file and we cache the results for several hours (for instance, if you just added a page, you might experience this). Our recommendation is to add hyperlint-ignore to the PR to ignore the link check for this PR.

@github-actions
Copy link
Contributor

github-actions bot commented Jun 9, 2025

This pull request requires reviews from CODEOWNERS as it changes files that match the following patterns:

Pattern Owners
/src/content/docs/workers/ @cloudflare/workers-docs, @GregBrimble, @irvinebroque, @mikenomitch, @WalshyDev, @cloudflare/deploy-config, @cloudflare/pcx-technical-writing, @kodster28, @cloudflare/wrangler
/src/content/docs/workers/observability/ @irvinebroque, @mikenomitch, @rohinlohe, @kodster28, @cloudflare/pcx-technical-writing
/src/content/partials/workers/ @cloudflare/workers-docs, @GregBrimble, @irvinebroque, @mikenomitch, @WalshyDev, @cloudflare/deploy-config, @cloudflare/pcx-technical-writing, @kodster28, @cloudflare/wrangler

Copy link
Contributor

@windsurf-bot windsurf-bot bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Other comments (1)
  • src/content/docs/workers/databases/third-party-integrations/index.mdx (16-20) There's an unnecessary empty line in the note block that should be removed for better formatting.
    :::note[Making multiple round trip calls to a centralized database from a Worker?]
    
    If your Worker is making multiple round trip calls to a centralized database, your Worker may be a good fit for Smart Placement. Smart Placement speeds up applications by automatically running your Worker closer to your back-end infrastructure rather than the end user. Learn more about [how Smart Placement works](/workers/configuration/smart-placement/).
    :::
    

💡 To request another review, post a new comment with "/windsurf-review".

Comment on lines +5 to +6
description: Connect to third-party databases such as Supabase,
Turso and PlanetScale)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's a syntax error in the description field. The closing parenthesis at the end doesn't have a matching opening parenthesis.

Suggested change
description: Connect to third-party databases such as Supabase,
Turso and PlanetScale)
description: Connect to third-party databases such as Supabase,
Turso and PlanetScale

Comment on lines 62 to 63
```ts
export default {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The code example references XataClient but doesn't include the import statement. Consider adding the import at the top of the code example:

Suggested change
```ts
export default {
```ts
import { XataClient } from '@xata.io/client';
export default {

Comment on lines 62 to 63
```ts
export default {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The code example uses ExportedHandler<Env> and references env with typed properties, but doesn't define the Env interface. Consider adding the type definition:

Suggested change
```ts
export default {
```ts
import { XataClient } from '@xata.io/client';
interface Env {
XATA_API_KEY: string;
XATA_BRANCH: string;
XATA_DATABASE_URL: string;
}
export default {

@github-actions
Copy link
Contributor

github-actions bot commented Jun 9, 2025

Preview URL: https://064ec2ad.preview.developers.cloudflare.com
Preview Branch URL: https://nevi-update-integrations.preview.developers.cloudflare.com

Files with changes (up to 15)

Original Link Updated Link
https://developers.cloudflare.com/workers/observability/integrations/sentry/ https://nevi-update-integrations.preview.developers.cloudflare.com/workers/observability/integrations/sentry/
https://developers.cloudflare.com/workers/observability/integrations/baselime-integration/ https://nevi-update-integrations.preview.developers.cloudflare.com/workers/observability/integrations/baselime-integration/
https://developers.cloudflare.com/workers/databases/third-party-integrations/upstash/ https://nevi-update-integrations.preview.developers.cloudflare.com/workers/databases/third-party-integrations/upstash/
https://developers.cloudflare.com/workers/databases/native-integrations/ https://nevi-update-integrations.preview.developers.cloudflare.com/workers/databases/native-integrations/
https://developers.cloudflare.com/workers/databases/third-party-integrations/ https://nevi-update-integrations.preview.developers.cloudflare.com/workers/databases/third-party-integrations/
https://developers.cloudflare.com/workers/databases/third-party-integrations/turso/ https://nevi-update-integrations.preview.developers.cloudflare.com/workers/databases/third-party-integrations/turso/
https://developers.cloudflare.com/workers/databases/third-party-integrations/planetscale/ https://nevi-update-integrations.preview.developers.cloudflare.com/workers/databases/third-party-integrations/planetscale/
https://developers.cloudflare.com/workers/databases/third-party-integrations/xata/ https://nevi-update-integrations.preview.developers.cloudflare.com/workers/databases/third-party-integrations/xata/
https://developers.cloudflare.com/workers/databases/connecting-to-databases/ https://nevi-update-integrations.preview.developers.cloudflare.com/workers/databases/connecting-to-databases/
https://developers.cloudflare.com/workers/databases/third-party-integrations/supabase/ https://nevi-update-integrations.preview.developers.cloudflare.com/workers/databases/third-party-integrations/supabase/
https://developers.cloudflare.com/workers/databases/third-party-integrations/neon/ https://nevi-update-integrations.preview.developers.cloudflare.com/workers/databases/third-party-integrations/neon/
https://developers.cloudflare.com/workers/observability/third-party-integrations/sentry/ https://nevi-update-integrations.preview.developers.cloudflare.com/workers/observability/third-party-integrations/sentry/
https://developers.cloudflare.com/workers/tutorials/connect-to-turso-using-workers/ https://nevi-update-integrations.preview.developers.cloudflare.com/workers/tutorials/connect-to-turso-using-workers/
https://developers.cloudflare.com/workers/observability/third-party-integrations/ https://nevi-update-integrations.preview.developers.cloudflare.com/workers/observability/third-party-integrations/

Copy link
Contributor

@irvinebroque irvinebroque left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nevikashah nevikashah merged commit ba2c073 into production Jun 11, 2025
12 checks passed
@nevikashah nevikashah deleted the nevi/update-integrations branch June 11, 2025 17:40
sdnts pushed a commit to sdnts/cloudflare-docs that referenced this pull request Jul 24, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

product:workers Related to Workers product size/m

Projects

None yet

Development

Successfully merging this pull request may close these issues.

7 participants