Skip to content

Commit eff908c

Browse files
committed
Merge branch 'master' into antonpirker/develop/startpage
2 parents c9e8381 + bf4dd88 commit eff908c

File tree

24 files changed

+118
-76
lines changed

24 files changed

+118
-76
lines changed

.github/workflows/lint-404s.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- 'platform-includes/**'
2626
dev-docs:
2727
- 'develop-docs/**'
28-
- uses: oven-sh/setup-bun@v1
28+
- uses: oven-sh/setup-bun@v2
2929
with:
3030
bun-version: latest
3131

apps/changelog/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"seed": "node prisma/seed/seed.mjs"
1919
},
2020
"dependencies": {
21-
"@auth/prisma-adapter": "^1.2.0",
21+
"@auth/prisma-adapter": "^2.7.4",
2222
"@google-cloud/storage": "^7.7.0",
2323
"@prisma/client": "^5.8.1",
2424
"@radix-ui/react-icons": "^1.3.2",

apps/changelog/src/server/actions/changelog.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ export async function createChangelog(
7676
if (!session) {
7777
return unauthorizedPayload;
7878
}
79-
console.log({formData});
8079
const categories = formData.getAll('categories');
8180
await prismaClient.category.createMany({
8281
data: categories.map(category => ({name: category as string})),

develop-docs/api-server/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: API Server
3-
description: Documentation of the monolith, the hearth of Sentry. The backend of our application.
3+
description: Documentation of the monolith, the heart of Sentry. The backend of our application.
44
sidebar_order: 50
55
---
66

develop-docs/engineering-practices/rust.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sidebar_order: 40
77
## Getting Started
88

99
- A quick introduction into the Syntax for first-timers:
10-
[A half-hour to learn Rust](https://fasterthanli.me/blog/2020/a-half-hour-to-learn-rust/)
10+
[A half-hour to learn Rust](https://fasterthanli.me/articles/a-half-hour-to-learn-rust)
1111
- The Rust Book, comprehensively documenting the language:
1212
[The Rust Programming Language](https://doc.rust-lang.org/book/)
1313
- [The Async Book](https://rust-lang.github.io/async-book/)

develop-docs/frontend/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: How we write frontend code at Sentry.
44
sidebar_order: 60
55
---
66

7-
This guide specifically focussed on the [Sentry](https://github.com/getsentry/sentry) and [Getsentry](https://github.com/getsentry/getsentry) codebases. It assumes you are using the eslint rules outlined by [eslint-config-sentry](https://github.com/getsentry/eslint-config-sentry); hence code style enforced by these linting rules will not be discussed here.
7+
This guide specifically focuses on the frontend part of the [Sentry](https://github.com/getsentry/sentry) and [Getsentry](https://github.com/getsentry/getsentry) codebases. It assumes you are using the eslint rules outlined by [eslint-config-sentry](https://github.com/getsentry/eslint-config-sentry); hence code style enforced by these linting rules will not be discussed here.
88

99
## Directory structure
1010

docs/platforms/dotnet/common/tracing/instrumentation/custom-instrumentation/caches-module.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: "Learn how to manually instrument your code to use Sentry's Caches
66

77
A cache can be used to speed up data retrieval, thereby improving application performance. Because instead of getting data from a potentially slow data layer, your application will be getting data from memory (in a best case scenario). Caching can speed up read-heavy workloads for applications like Q&A portals, gaming, media sharing, and social networking.
88

9-
Sentry offers a [cache-monitoring dashboard](https://sentry.io/orgredirect/organizations/:orgslug/insights/caches/) for getting an overview of your application's caches.
9+
Sentry offers a [cache-monitoring dashboard](https://sentry.io/orgredirect/organizations/:orgslug/insights/backend/caches/) for getting an overview of your application's caches.
1010

1111
To make it possible for Sentry to give you an overview of your cache performance, you'll need to create two spans - one indicating that something is being put into the cache, and a second one indicating that something is being fetched from the cache.
1212

@@ -102,4 +102,4 @@ public class MyCachingService
102102
}
103103
```
104104

105-
You should now have the right spans in place. Head over to the [Cache dashboard](https://sentry.io/orgredirect/organizations/:orgslug/performance/caches/) to see how your cache is performing.
105+
You should now have the right spans in place. Head over to the [Cache dashboard](https://sentry.io/orgredirect/organizations/:orgslug/insights/backend/caches/) to see how your cache is performing.

docs/platforms/go/common/tracing/instrumentation/caches-module.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,4 @@ if parentSpan != nil {
9191
}
9292
```
9393

94-
You should now have the right spans in place. Head over to the [Cache dashboard](https://sentry.io/orgredirect/organizations/:orgslug/performance/caches/) to see how your cache is performing.
94+
You should now have the right spans in place. Head over to the [Cache dashboard](https://sentry.io/orgredirect/organizations/:orgslug/insights/backend/caches/) to see how your cache is performing.

docs/platforms/java/common/tracing/instrumentation/custom-instrumentation/caches-module.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: "Learn how to manually instrument your code to use Sentry's Caches
55
---
66
A cache can be used to speed up data retrieval, thereby improving application performance. Because instead of getting data from a potentially slow data layer, your application will be getting data from memory (in a best case scenario). Caching can speed up read-heavy workloads for applications like Q&A portals, gaming, media sharing, and social networking.
77

8-
Sentry offers a [cache-monitoring dashboard](https://sentry.io/orgredirect/organizations/:orgslug/insights/caches/). For now you can manually instrument your caching solution and use Sentry to get a look into how it is performing by following the setup instructions below. We might be adding integrations to do this automatically, please head over to [GitHub](https://github.com/getsentry/sentry-java) and let us know which caching solution you'd like us to support.
8+
Sentry offers a [cache-monitoring dashboard](https://sentry.io/orgredirect/organizations/:orgslug/insights/backend/caches/). For now you can manually instrument your caching solution and use Sentry to get a look into how it is performing by following the setup instructions below. We might be adding integrations to do this automatically, please head over to [GitHub](https://github.com/getsentry/sentry-java) and let us know which caching solution you'd like us to support.
99

1010
To make it possible for Sentry to give you an overview of your cache performance, you'll need to create two spans - one indicating that something is being put into the cache, and a second one indicating that something is being fetched from the cache.
1111

@@ -15,7 +15,7 @@ For detailed information about which data can be set, see the [Cache Module Deve
1515

1616
## Manual Instrumentation
1717

18-
For now you'll need to manually instrument the [Cache Module](https://sentry.io/orgredirect/organizations/:orgslug/insights/caches/) by following the steps below.
18+
For now you'll need to manually instrument the [Cache Module](https://sentry.io/orgredirect/organizations/:orgslug/insights/backend/caches/) by following the steps below.
1919

2020
<PlatformSection supported={["java.spring", "java.spring-boot"]}>
2121
If you are using Spring caching, please take a look at our [proof of concept PR](https://github.com/getsentry/sentry-java/pull/3457) as it shows how to register a cache listener and report cache spans to Sentry.

docs/platforms/javascript/common/tracing/instrumentation/custom-instrumentation/caches-module.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ supported:
2626

2727
A cache can be used to speed up data retrieval, thereby improving application performance. Because instead of getting data from a potentially slow data layer, your application will be getting data from memory (in a best case scenario). Caching can speed up read-heavy workloads for applications like Q&A portals, gaming, media sharing, and social networking.
2828

29-
Sentry offers a [cache-monitoring dashboard](https://sentry.io/orgredirect/organizations/:orgslug/performance/caches/) that can be auto-instrumented using Sentry's Redis integration (more coming soon).
29+
Sentry offers a [cache-monitoring dashboard](https://sentry.io/orgredirect/organizations/:orgslug/insights/backend/caches/) that can be auto-instrumented using Sentry's Redis integration (more coming soon).
3030

3131
## Instrumentation with Redis Clients
3232

@@ -44,7 +44,7 @@ Sentry.init({
4444

4545
## Manual Instrumentation
4646

47-
If you're using anything other than Sentry's Redis integration, you'll need to manually instrument the [Cache Module](https://sentry.io/orgredirect/organizations/:orgslug/performance/caches/) by following the steps below.
47+
If you're using anything other than Sentry's Redis integration, you'll need to manually instrument the [Cache Module](https://sentry.io/orgredirect/organizations/:orgslug/insights/backend/caches/) by following the steps below.
4848

4949
You'll need to create two spans - one indicating that something is being put into the cache, and a second one indicating that something is being fetched from the cache.
5050

@@ -129,4 +129,4 @@ Sentry.startSpan(
129129
);
130130
```
131131
132-
You should now have the right spans in place. Head over to the [Cache dashboard](https://sentry.io/orgredirect/organizations/:orgslug/performance/caches/) to see how your cache is performing.
132+
You should now have the right spans in place. Head over to the [Cache dashboard](https://sentry.io/orgredirect/organizations/:orgslug/insights/backend/caches/) to see how your cache is performing.

0 commit comments

Comments
 (0)