Skip to content

Commit 7046bea

Browse files
committed
Convert all links to standard markdown
1 parent 4ca88ca commit 7046bea

File tree

49 files changed

+90
-94
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+90
-94
lines changed

src/404.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ <h1>404</h1>
2222
<p><strong>Page not found :(</strong></p>
2323
<p>The requested page could not be found.</p>
2424
<p class="text-center">
25-
<a href="{% link _documentation/home/index.md %}" class="btn btn-primary">Go back to the docs</a>
25+
<a href="/" class="btn btn-primary">Go back to the docs</a>
2626
</p>
2727
</div>

src/_includes/components/platform_content.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
-%}
7777
<a class="dropdown-item{% if __is_default %} active{% endif %}" id="{{ __uniq }}-{{ __slug }}-tab" data-platform="{{ __slug }}" data-toggle="platform" href="#{{ __uniq }}-{{ __slug }}" role="tab" aria-controls="{{ __uniq }}-{{ __slug }}" aria-selected="{% if __is_default %}true{% else %}false{% endif %}" data-not-dynamic>{{ __platform.name }}</a>
7878
{%- endfor -%}
79-
<a class="dropdown-item" href="{% link _documentation/platforms/index.md %}" data-toggle="tooltip" data-placement="right" title="Click to see other platforms we support but that don't follow the unified&nbsp;API"><em>Platform not listed?</em></a>
79+
<a class="dropdown-item" href="/platforms/" data-toggle="tooltip" data-placement="right" title="Click to see other platforms we support but that don't follow the unified&nbsp;API"><em>Platform not listed?</em></a>
8080
</div>
8181
</div>
8282
</div>

src/collections/_documentation/clients/go/config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ raven.SetEnvironment("staging")
5252

5353
Sets the release. Release names are just strings, but the Sentry SDK may detect some formats,
5454
and the format might render differently.
55-
For more information have a look at [the releases documentation]({% link _documentation/workflow/releases/index.md %}).
55+
For more information have a look at [the releases documentation](/workflow/releases/).
5656

5757
```go
5858
raven.SetRelease("h3ll0w0rld")

src/collections/_documentation/data-management/advanced-datascrubbing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ sidebar_order: 4
44
keywords: ["pii", "gdpr", "personally identifiable data", "compliance"]
55
---
66

7-
In addition to using [`beforeSend`]({% link _documentation/data-management/sensitive-data.md %}#custom-event-processing-in-the-sdk) in your SDK or our [server-side data scrubbing features]({% link _documentation/data-management/sensitive-data.md %}#server-side-scrubbing) to redact sensitive data, we are currently beta-testing ways to give you more granular control over server-side data scrubbing of your events. Additional functionality includes:
7+
In addition to using [`beforeSend`](/data-management/sensitive-data/#custom-event-processing-in-the-sdk) in your SDK or our [server-side data scrubbing features](/data-management/sensitive-data/#server-side-scrubbing) to redact sensitive data, we are currently beta-testing ways to give you more granular control over server-side data scrubbing of your events. Additional functionality includes:
88

99
* Define custom regular expressions to match on sensitive data
1010
* Detailed tuning on which parts of an event to scrub
@@ -164,7 +164,7 @@ Select known parts of the schema using the following:
164164
* `$logentry` matches the `logentry` attribute of an event.
165165
* `$thread` matches a single thread instance in `{"threads": {"values": [...]}}`
166166
* `$breadcrumb` matches a single breadcrumb in `{"breadcrumbs": {"values": [...]}}`
167-
* `$span` matches a [trace span]({% link _documentation/performance/distributed-tracing.md %}#traces-transactions-and-spans)
167+
* `$span` matches a [trace span](/performance/distributed-tracing/#traces-transactions-and-spans)
168168
* `$sdk` matches the SDK context in `{"sdk": ...}`
169169

170170
### Escaping Special Characters

src/collections/_documentation/data-management/event-grouping/server-side-fingerprinting.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ sidebar_order: 1
44
---
55

66
Server-side fingerprinting is also configured with a config similar to
7-
[grouping enhancements]({% link _documentation/data-management/event-grouping/grouping-enhancements.md %}),
7+
[grouping enhancements](/data-management/event-grouping/grouping-enhancements/),
88
but the syntax is slightly different. The matchers are the same
99
but instead of flipping flags, a fingerprint is assigned that overrides the
1010
default grouping entirely.
@@ -24,7 +24,7 @@ The matchers are:
2424
- `value`: matches on an exception value
2525
- `message`: matches on a log message
2626

27-
The matchers also include the following from Custom Grouping Enhancements. See [grouping enhancements]({% link _documentation/data-management/event-grouping/grouping-enhancements.md %}#rules) for more info on how they work:
27+
The matchers also include the following from Custom Grouping Enhancements. See [grouping enhancements](/data-management/event-grouping/grouping-enhancements/#rules) for more info on how they work:
2828

2929
- `family`
3030
- `path`
@@ -59,4 +59,4 @@ family:native function:malloc -> memory-allocation-error
5959
6060
# group all allocation errors by the package (dylib, executable) that caused them
6161
function:*alloc* -> {{ package }}
62-
{% endraw %}```
62+
{% endraw %}```

src/collections/_documentation/data-management/sensitive-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ As mentioned earlier, configure scrubbing within SDK if possible so that sensiti
132132

133133
### Advanced server-side data scrubbing
134134

135-
We are currently betatesting additional features around server-side data scrubbing. For more information see [_Advanced Data Scrubbing_]({% link _documentation/data-management/advanced-datascrubbing.md %}).
135+
We are currently betatesting additional features around server-side data scrubbing. For more information see [_Advanced Data Scrubbing_](/data-management/advanced-datascrubbing/).
136136

137137
## Restricting Emails
138138

src/collections/_documentation/enriching-error-data/breadcrumbs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ hint. The function can modify the breadcrumb or decide to discard it entirely:
6767

6868
{% include components/platform_content.html content_dir='before-breadcrumb' %}
6969

70-
For information about what can be done with the hint see [_Filtering Events_]({% link _documentation/error-reporting/configuration/filtering.md %}#before-breadcrumb).
70+
For information about what can be done with the hint see [_Filtering Events_](/error-reporting/configuration/filtering/#before-breadcrumb).

src/collections/_documentation/enriching-error-data/error-tracing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sidebar_order: 5
66
With error tracing, you can correlate errors from multiple services and uncover a significant story surrounding a break. Using a unique identifier allows you to trace an error and pinpoint the service and code behaving unexpectedly.
77

88
## Error Tracing and Sentry Configuration
9-
The following steps demonstrate a potential use-case that involves an example web application with a JavaScript front-end and a Node.js server. The examples assume that both services are already configured with Sentry's [JavaScript SDK]({% link _documentation/platforms/javascript/index.md %}).
9+
The following steps demonstrate a potential use-case that involves an example web application with a JavaScript front-end and a Node.js server. The examples assume that both services are already configured with Sentry's [JavaScript SDK](/platforms/javascript/).
1010

1111
#### Step 1: Generate a unique transaction ID
1212
Generate a unique transaction identifier and set as a Sentry tag in the service issuing the request. This unique identifier could be a transaction ID or a session ID created when the web application first loads. Set this value as a Sentry tag using the Sentry SDK. Below, the example uses a `transactionId` as a unique identifier:

src/collections/_documentation/enriching-error-data/scopes.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ blank scope are created on it. That hub is then associated with the current
1616
thread and will internally hold a stack of scopes.
1717

1818
The scope will hold useful information that should be sent along with the
19-
event. For instance [contexts]({% link _documentation/enriching-error-data/additional-data.md %}) or
20-
[breadcrumbs]({% link _documentation/enriching-error-data/breadcrumbs.md %}) are stored on
19+
event. For instance [contexts](/enriching-error-data/additional-data/) or
20+
[breadcrumbs](/enriching-error-data/breadcrumbs/) are stored on
2121
the scope. When a scope is pushed, it inherits all data from the parent scope
2222
and when it pops all modifications are reverted.
2323

@@ -32,7 +32,7 @@ of the box. The hub you are unlikely to be interacting with directly unless you
3232
are writing an integration or you want to create or destroy scopes. Scopes on the
3333
other hand are more user facing. You can at any point in time call
3434
`configure-scope` to modify data stored on the scope. This is for instance
35-
used to [modify the context]({% link _documentation/enriching-error-data/additional-data.md %}).
35+
used to [modify the context](/enriching-error-data/additional-data/).
3636

3737
{% capture __alert_content -%}
3838
If you are very curious about how this thread locality thing works here are the
@@ -65,7 +65,7 @@ This can also be applied when unsetting a user at logout:
6565
{% include components/platform_content.html content_dir='unset-user' %}
6666

6767
To learn what useful information can be associated with scopes see
68-
[the context documentation]({% link _documentation/enriching-error-data/additional-data.md %}).
68+
[the context documentation](/enriching-error-data/additional-data/).
6969

7070
## Local Scopes
7171

src/collections/_documentation/error-reporting/capturing.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ issue group or be added to an already existing one based on Sentry's grouping
1111
algorithm. Separately to capturing you can also record "breadcrumbs" that lead
1212
up to an event. Breadcrumbs are different in that they will not create an event
1313
in Sentry but will be buffered until the next event is sent. For more information
14-
have a look at [the breadcrumbs documentation]({% link _documentation/enriching-error-data/breadcrumbs.md %}).
14+
have a look at [the breadcrumbs documentation](/enriching-error-data/breadcrumbs/).
1515

1616
## Capturing Errors / Exceptions
1717

@@ -38,9 +38,6 @@ into. For more information about that consult the API documentation of the SDK.
3838

3939
## Next Steps
4040

41-
* Need to add extra data to your events? Have a look at [our context
42-
documentation]({% link _documentation/enriching-error-data/additional-data.md %}).
41+
* Need to add extra data to your events? Have a look at [our context documentation](/enriching-error-data/additional-data/).
4342

44-
* Captured too much data? Have a look at [filtering]({% link
45-
_documentation/error-reporting/configuration/filtering.md %}) to remove spam
46-
or sensitive information from your events.
43+
* Captured too much data? Have a look at [filtering](/error-reporting/configuration/filtering/) to remove spam or sensitive information from your events.

src/collections/_documentation/error-reporting/configuration/before-breadcrumb-hint/javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ Sentry.init({
1515
});
1616
```
1717

18-
For information about which hints are available see [hints in JavaScript]({% link _documentation/platforms/javascript/index.md %}#hints).
18+
For information about which hints are available see [hints in JavaScript](/platforms/javascript/#hints).

src/collections/_documentation/error-reporting/configuration/before-breadcrumb-hint/python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ def before_breadcrumb(crumb, hint):
99
sentry_sdk.init(before_breadcrumb=before_breadcrumb)
1010
```
1111

12-
For information about which hints are available see [hints in Python]({% link _documentation/platforms/python/index.md %}#hints).
12+
For information about which hints are available see [hints in Python](/platforms/python/#hints).

src/collections/_documentation/error-reporting/configuration/before-send-hint/javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ init({
1212
});
1313
```
1414

15-
For information about which hints are available see [hints in JavaScript]({% link _documentation/platforms/javascript/index.md %}#hints).
15+
For information about which hints are available see [hints in JavaScript](/platforms/javascript/#hints).

src/collections/_documentation/error-reporting/configuration/before-send-hint/python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ def before_send(event, hint):
1111
sentry_sdk.init(before_send=before_send)
1212
```
1313

14-
For information about which hints are available see [hints in Python]({% link _documentation/platforms/python/index.md %}#hints).
14+
For information about which hints are available see [hints in Python](/platforms/python/#hints).

src/collections/_documentation/error-reporting/configuration/config-intro/php.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Sentry\init([
88
```
99

1010
{% capture __alert %}
11-
Some of the options listed below that are marked as _not available_ may be available in another form; see [PHP specific documentation]({% link _documentation/workflow/releases/index.md %}).
11+
Some of the options listed below that are marked as _not available_ may be available in another form; see [PHP specific documentation](/workflow/releases/).
1212
{% endcapture %}
1313

1414
{% include components/alert.html

src/collections/_documentation/error-reporting/configuration/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ if you have the chance it's a better idea to manually set it. That way it's gua
4242
in sync with your deploy integrations or source map uploads.
4343

4444
Release names are just strings but some formats are detected by Sentry and might be rendered
45-
differently. For more information have a look at [the releases documentation]({% link _documentation/workflow/releases/index.md %}).
45+
differently. For more information have a look at [the releases documentation](/workflow/releases/).
4646

4747
By default the SDK will try to read this value from the `SENTRY_RELEASE` environment
4848
variable (in the browser SDK, this will be read off of the `window.SENTRY_RELEASE` if
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
- [_integrating with the .NET ecosystem_]({% link _documentation/platforms/dotnet/index.md %})
1+
- [_integrating with the .NET ecosystem_](/platforms/dotnet/)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
- [_integrating with the Go ecosystem_]({% link _documentation/platforms/go/index.md %})
1+
- [_integrating with the Go ecosystem_](/platforms/go/)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
- [_integrating with the JavaScript ecosystem_]({% link _documentation/platforms/javascript/index.md %})
1+
- [_integrating with the JavaScript ecosystem_](/platforms/javascript/)
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
- [_adding Google Breakpad_]({% link _documentation/platforms/native/index.md %}#google-breakpad)
2-
- [_adding Google Crashpad_]({% link _documentation/platforms/native/index.md %}#google-crashpad)
3-
- [_integrating with Unreal Engine 4_]({%- link _documentation/platforms/native/ue4.md -%})
1+
- [_adding Google Breakpad_](/platforms/native/#google-breakpad)
2+
- [_adding Google Crashpad_](/platforms/native/#google-crashpad)
3+
- [_integrating with Unreal Engine 4_](/platforms/native/ue4/)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
- [_integrating with the PHP ecosystem_]({% link _documentation/platforms/php/index.md %})
1+
- [_integrating with the PHP ecosystem_](/platforms/php/)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
- [_integrating with the Python ecosystem_]({% link _documentation/platforms/python/index.md %})
1+
- [_integrating with the Python ecosystem_](/platforms/python/)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
- [_integrating with the Rust ecosystem_]({% link _documentation/platforms/rust/index.md %})
1+
- [_integrating with the Rust ecosystem_](/platforms/rust/)

src/collections/_documentation/performance/getting-started.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ Performance monitoring helps developers measure Apdex, Throughput, and trace slo
77

88
Learn more about performance monitoring in:
99

10-
- [Homepage]({% link _documentation/performance/performance-homepage.md %}): displays a high-level report of application health, including problematic transactions and both Apdex and Throughput graphs
11-
- [Distributed Tracing]({% link _documentation/performance/distributed-tracing.md %}): diagnose problems and view interactions across your software systems
12-
- [Metrics]({% link _documentation/performance/performance-metrics.md %}): provides insight into user experience of your application based on custom thresholds
13-
- [Discover]({% link _documentation/performance/discover/index.md %}): view data across environments with pre-built queries. Customers subscribed to the Team or Business plan can use Discover to view comprehensive information sent to Sentry.
10+
- [Homepage](/performance/performance-homepage/): displays a high-level report of application health, including problematic transactions and both Apdex and Throughput graphs
11+
- [Distributed Tracing](/performance/distributed-tracing/): diagnose problems and view interactions across your software systems
12+
- [Metrics](/performance/performance-metrics/): provides insight into user experience of your application based on custom thresholds
13+
- [Discover](/performance/discover/): view data across environments with pre-built queries. Customers subscribed to the Team or Business plan can use Discover to view comprehensive information sent to Sentry.
1414

1515
## Install
1616

@@ -20,15 +20,15 @@ Learn more about performance monitoring in:
2020

2121
Sentry provides several tools to explore your application's performance data and uncover problems.
2222

23-
The **Performance homepage** is our center for monitoring how your application is doing. Here, you can view a list of all your endpoints and transactions and view a summary of any transaction in your application. Learn more about the [Homepage]({% link _documentation/performance/performance-homepage.md %}).
23+
The **Performance homepage** is our center for monitoring how your application is doing. Here, you can view a list of all your endpoints and transactions and view a summary of any transaction in your application. Learn more about the [Homepage](/performance/performance-homepage/).
2424

2525
[{% asset performance/performance-homepage-main-example.png alt="Example of Performance in Product UI" %}]({% asset performance/performance-homepage-main-example.png @path %})
2626

27-
**Discover** is our custom business intelligence query builder that can help you answer questions about your data and analyze metrics. Learn more about [Discover]({% link _documentation/performance/discover/index.md %}).
27+
**Discover** is our custom business intelligence query builder that can help you answer questions about your data and analyze metrics. Learn more about [Discover](/performance/discover/).
2828

2929
[{% asset performance/discover-main-page-example.png alt="Discover page" %}]({% asset performance/discover-main-page-example.png @path %})
3030

3131

32-
**Transaction Details** lets you examine an individual transaction event in detail. Here spans are visualized to help you identify slow HTTP requests, slow database queries, and other bottlenecks. You can also jump to other transactions within the trace, and identify associated errors. Learn more about [Distributed Tracing]({% link _documentation/performance/distributed-tracing.md %}) and the [Transaction Details page]({% link _documentation/performance/distributed-tracing.md %}#transaction-detail-viewpage).
32+
**Transaction Details** lets you examine an individual transaction event in detail. Here spans are visualized to help you identify slow HTTP requests, slow database queries, and other bottlenecks. You can also jump to other transactions within the trace, and identify associated errors. Learn more about [Distributed Tracing](/performance/distributed-tracing/) and the [Transaction Details page](/performance/distributed-tracing/#transaction-detail-viewpage).
3333

34-
[{% asset performance/transaction-detail-main-example.png alt="Discover page" %}]({% asset performance/transaction-detail-main-example.png @path %})
34+
[{% asset performance/transaction-detail-main-example.png alt="Discover page" %}]({% asset performance/transaction-detail-main-example.png @path %})

src/collections/_documentation/platforms/dotnet/entityframework.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This package extends `Sentry` main SDK. That means that besides the EF features,
2929
* Queries as breadcrumbs
3030
* Validation errors
3131

32-
All queries executed are added as breadcrumbs and are sent with any event which happens on the same [scope]({% link _documentation/enriching-error-data/scopes.md %}). Besides that, validation errors are also included as `Extra`.
32+
All queries executed are added as breadcrumbs and are sent with any event which happens on the same [scope](/enriching-error-data/scopes/). Besides that, validation errors are also included as `Extra`.
3333

3434

3535
## Configuration

0 commit comments

Comments
 (0)