MDX Components

Render an alert callout.

Copied
<Alert level="info" title="Important">

This is an alert

</Alert>

Attributes:

  • title (string)
  • level (string: 'info' | 'warning' | 'danger' | 'success')

Use this for these types of content:

  • Important: Use these for information that's critical to know; it's important for users to read, but won't cause a catastrophic problem if they don't read it. These include versions that introduce breaking changes or feature limitations. Use infrequently.
    • Use this with or without a title
  • Warning: Use these for items that MUST be well understood before proceeding. These highlight information that could cause users to make catastrophic errors that break their applications in ways that are very difficult to fix or create liabilities for them, such as information needed to avoid leaking PII. These should be used very rarely.
    • Use with the title "Important"; do not use the title "Warning"

An Alert component with no level setting will render as a Note component.

See also the Note component.

Render an expandable section.

This is a title

This is some content

Copied
<Expandable title="This is a title">
  This is some content
</Expandable>

Attributes:

  • title (string)
  • permalink (boolean) - optional: the title as a link and show it in the TOC.

Consecutive code blocks will be automatically collapsed into a tabulated container. This behavior is generally useful if you want to define an example in multiple languages:

Copied
```javascript
function foo() {
  return "bar";
}
```

```python
def foo():
  return 'bar'
```

Sometimes you may not want this behavior. To solve this, you can either break up the code blocks with some additional text, or use the <Break /> component.

Additionally code blocks also support tabTitle and filename properties:

Copied
```javascript {tabTitle: Hello} {filename: index.js}
var foo = "bar";
```

You can bring attention to specific lines in a code block using the {fromLineA-toLineB} for ranges, or {lineA,lineB} for specific lines (or a combination of the two):

Copied
function foo() {
  let lookat = "me";
  return "bar";
}

You can also highlight diffs using the diff language:

Copied
```diff
- minus one
+ plus one
```

If you want to preserve syntax highlighting, you can add diff metadata to any code block then annotate the diff with + and -:

Copied
function foo() {
-  return "bar";
+  return "baz";
}

Render a heading with a configuration key in the correctly cased format for a given platform.

If content is specified, it will automatically hide the content when the given platform is not selected in context.

Copied
<ConfigKey name="send-default-pii" notSupported={["javascript"]}>

Description of send-default-pii

</ConfigKey>

Attributes:

  • name (string)
  • platform (string) - defaults to the platform value from the page context
  • supported (string[])
  • notSupported (string[])

Render a note.

Something important, but maybe not that important.

Copied
<Note>

Something important, but maybe not _that_ important.

</Note>

Use this for these types of content:

  • Prerequisite(s): Use these to list things that are required to finish. Place them prior to the procedure/process that follows so a user doesn't start and stop.
  • Note: to document information that's relevant to the topic, but isn't part of the larger point of the content. This might include a piece of information that should be highlighted, but isn't necessarily more important than other information. These include calling out early adopter features or providing clarification. Use sparingly.

Don't use a title with this type of note.

See also the Alert component.

Render all child pages of this document, including their description if available.

Copied
<PageGrid />

Attributes:

  • header (string) - optional header value to include, rendered as an H2
  • nextPages (boolean) - only render pages which come next based on sidebar ordering

Render an include based on the currently selected platform in context.

Copied
<PlatformContent includePath="sdk-init" />

Attributes:

  • includePath (string) - the subfolder within /includes to map to
  • platform (string) - defaults to the platform value from the page context

Some notes:

  • When the current platform comes from the page context and no matching include is found, the content will be hidden.

  • Similar to PlatformSection, you can embed content in the block which will render before the given include, but only when an include is available.

  • A file named _default will be used if no other content matches.

Note: This currently causes issues with tableOfContents generation, so its recommended to disable the TOC when using it.

Render terms in the correct case within the body text of a page (not in code samples) based on the platform case_style setting:

Copied
<PlatformIdentifier name="before-send" />

For example, if you use <PlatformIdentifier name="before-send" />, it will render as:

  • beforeSend if case_style=camelCase
  • before_send if case_style=snake_case
  • BeforeSend if case_style=PascalCase

This component only works properly in platform pages.

Useful for linking to platform-specific content when there's not a specific platform already selected.

Copied
<PlatformLink to="/enriching-events/" />

This will direct users to a page where they can choose the platform, and then to the appropriate link. If they're within a page that already has an active platform, it will simply link to the appropriate page and skip the redirect.

Render a section based on the currently selected platform in context. When the platform is not valid, the content will be hidden.

Copied
<PlatformSection notSupported={["javascript"]}>

Something that applies to all platforms, but not javascript or node.

</PlatformSection>

Attributes:

  • platform (string) - defaults to the platform value from the page context
  • supported (string[])
  • notSupported (string[])
  • noGuides (boolean) - hide this on all guides (takes precedence over supported/notSupported)

If you're writing product feature specific docs, you can specify code block onboardingOptions metadata:

Copied
```go {"onboardingOptions": {"performance": "13-17"}}
// your code here
```

the general syntax is {"onboardingOptions": {"feature": "range"}} where feature is the feature id and range is the corresponding line range (similar to the line highlighting syntax).

You can specify multiple features by separating them with a comma:

{"onboardingOptions": {"performance": "13-17", "profiling": "5-6"}}

The range visibility will be controlled by the OnboardingOptionButtons component:

Copied
<OnboardingOptionButtons
  options={[
    'error-monitoring',
    "profiling",
    "performance",
  ]}
/>
  • options can either be either an object of this shape:
Copied
{
  id: 'error-monitoring' | 'performance' | 'profiling' | 'session-replay',
  disabled: boolean,
  checked: boolean
}

or a string (one of these ids 👆) for convenience when using defaults.

  • default values: checked: false and disabled: false (true for error-monitoring).

Example (output of the above):

Copied
import (
	"fmt"
	"net/http"

	"github.com/getsentry/sentry-go"
	sentrygin "github.com/getsentry/sentry-go/gin"
	"github.com/gin-gonic/gin"
)

// To initialize Sentry's handler, you need to initialize Sentry itself beforehand
if err := sentry.Init(sentry.ClientOptions{
	Dsn: "https://examplePublicKey@o0.ingest.sentry.io/0",
	EnableTracing: true,
	// Set TracesSampleRate to 1.0 to capture 100%
	// of transactions for performance monitoring.
	// We recommend adjusting this value in production,
	TracesSampleRate: 1.0,
}); err != nil {
	fmt.Printf("Sentry initialization failed: %v\n", err)
}

// Then create your app
app := gin.Default()

// Once it's done, you can attach the handler as one of your middleware
app.Use(sentrygin.New(sentrygin.Options{}))

// Set up routes
app.GET("/", func(ctx *gin.Context) {
	ctx.String(http.StatusOK, "Hello world!")
})

// And run it
app.Run(":3000")

You can conditionally render content based on the selected onboarding options using the OnboardingOption component

Or you can use the hideForThisOption prop to hide the content for the selected option.

Copied
```jsx
<OnboardingOption optionId="profiling" hideForThisOption>
  Hide this section for `profiling` option.
</OnboardingOption>
```

Example:

  • toggle the performance option above to see the effect:

    Copied
    <OnboardingOption optionId="performance">
      This code block is wrapped in a `OnboardingOption` component and will
      only be rendered when the `performance` option is selected.
    </OnboardingOption>;
    
  • toggle the profiling option above to see the effect:

Help improve this content
Our documentation is open source and available on GitHub. Your contributions are welcome, whether fixing a typo (drat!) or suggesting an update ("yeah, this would be better").