You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: develop-docs/sdk/overview.mdx
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,9 @@
1
1
---
2
2
title: Overview
3
+
description: The following is a guide for implementing a new Sentry SDK. It covers the protocol for event submission as well as guidelines for how clients should typically look and behave.
3
4
sidebar_order: 1
4
5
---
5
6
6
-
The following is a guide for implementing a new Sentry SDK. It covers the protocol for event submission as well as guidelines for how clients should typically look and behave.
7
-
8
7
## Writing an SDK
9
8
10
9
At its core an SDK is a set of utilities for capturing data about an exceptional state in an application. Given this data, it then builds and sends a JSON payload to the Sentry server.
Copy file name to clipboardExpand all lines: develop-docs/sdk/philosophy.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
---
2
2
title: Philosophy
3
+
description: This document sets some general guidance for how to approach SDK development at Sentry. It should aid both internal and external developers to understand what motivations go into the design of the SDKs and why we're deciding in certain ways.
3
4
sidebar_order: 2
4
5
---
5
6
6
-
This document sets some general guidance for how to approach SDK development at Sentry. It should aid both internal and external developers to understand what motivations go into the design of the SDKs and why we're deciding in certain ways.
Copy file name to clipboardExpand all lines: develop-docs/sdk/processes/basics.mdx
+3-6Lines changed: 3 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,9 @@
1
1
---
2
2
title: Basics
3
-
description: How to get started with SDK development.
3
+
description: So you want to develop an SDK? Before you get started here are some basics that are worth following to have a better experience.
4
4
sidebar_order: 1
5
5
---
6
6
7
-
So you want to develop an SDK? Before you get started here are some basics that are
8
-
worth following to have a better experience.
9
-
10
7
## Run a Local Relay
11
8
12
9
You do not need a local Sentry for SDK development but you will want to run a local
@@ -35,9 +32,9 @@ When sending events just substitute `orgXXX.ingest.sentry.io` with `localhost:30
35
32
whichever port you ended up chosing. Also note that a local relay will out of the box
36
33
be available via HTTP only so don't try to send HTTPS requests there.
37
34
38
-
## Join the SDK chat on Discord
35
+
## Join us on Discord
39
36
40
-
You can reach out to Sentry open source contributors and talk with other SDK maintainers in the [Sentry Discord server](https://discord.gg/sentry). Make sure to say hi in the `#sdk-chat`.
37
+
You can reach out to Sentry open source contributors and talk with other SDK maintainers on the [Sentry Discord server](https://discord.gg/sentry).
0 commit comments