123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- import {Fragment} from 'react';
- import styled from '@emotion/styled';
- import {Alert} from 'sentry/components/alert';
- import ExternalLink from 'sentry/components/links/externalLink';
- import {Layout, LayoutProps} from 'sentry/components/onboarding/gettingStartedDoc/layout';
- import {ModuleProps} from 'sentry/components/onboarding/gettingStartedDoc/sdkDocumentation';
- import {StepType} from 'sentry/components/onboarding/gettingStartedDoc/step';
- import {t, tct} from 'sentry/locale';
- export const steps = ({
- dsn,
- }: Partial<Pick<ModuleProps, 'dsn'>> = {}): LayoutProps['steps'] => [
- {
- type: StepType.INSTALL,
- description: (
- <p>
- {tct('Install our Go Negroni SDK using [code:go get]:', {
- code: <code />,
- })}
- </p>
- ),
- configurations: [
- {
- language: 'bash',
- code: 'go get github.com/getsentry/sentry-go/negroni',
- },
- ],
- },
- {
- type: StepType.CONFIGURE,
- description: t(
- "Import and initialize the Sentry SDK early in your application's setup:"
- ),
- configurations: [
- {
- language: 'go',
- code: `
- import (
- "fmt"
- "net/http"
- "github.com/getsentry/sentry-go"
- sentrynegroni "github.com/getsentry/sentry-go/negroni"
- "github.com/urfave/negroni"
- )
- if err := sentry.Init(sentry.ClientOptions{
- Dsn: "${dsn}",
- EnableTracing: true,
-
-
-
- TracesSampleRate: 1.0,
- }); err != nil {
- fmt.Printf("Sentry initialization failed: %v\n", err)
- }
- app := negroni.Classic()
- app.Use(sentrynegroni.New(sentrynegroni.Options{}))
- mux := http.NewServeMux()
- mux.HandleFunc("/", func(rw http.ResponseWriter, r *http.Request) {
- fmt.Fprintf(w, "Hello world!")
- })
- app.UseHandler(mux)
- http.ListenAndServe(":3000", app)
- `,
- },
- {
- description: (
- <Fragment>
- <strong>{t('Options')}</strong>
- <p>
- {tct(
- '[sentryNegroniCode:sentrynegroni] accepts a struct of [optionsCode:Options] that allows you to configure how the handler will behave.',
- {sentryNegroniCode: <code />, optionsCode: <code />}
- )}
- </p>
- {t('Currently it respects 3 options:')}
- </Fragment>
- ),
- language: 'go',
- code: `
- Repanic bool
- WaitForDelivery bool
- Timeout time.Duration
- `,
- },
- ],
- },
- {
- title: t('Usage'),
- description: (
- <Fragment>
- <p>
- {tct(
- "[sentryNegroniCode:sentrynegroni] attaches an instance of [sentryHubLink:*sentry.Hub] to the request's context, which makes it available throughout the rest of the request's lifetime. You can access it by using the [getHubFromContextCode:sentry.GetHubFromContext()] method on the request itself in any of your proceeding middleware and routes. And it should be used instead of the global [captureMessageCode:sentry.CaptureMessage], [captureExceptionCode:sentry.CaptureException], or any other calls, as it keeps the separation of data between the requests.",
- {
- sentryNegroniCode: <code />,
- sentryHubLink: (
- <ExternalLink href="https://godoc.org/github.com/getsentry/sentry-go#Hub" />
- ),
- getHubFromContextCode: <code />,
- captureMessageCode: <code />,
- captureExceptionCode: <code />,
- }
- )}
- </p>
- <AlertWithoutMarginBottom>
- {tct(
- "Keep in mind that [sentryHubCode:*sentry.Hub] won't be available in middleware attached before [sentryNegroniCode:sentrynegroni]!",
- {sentryNegroniCode: <code />, sentryHubCode: <code />}
- )}
- </AlertWithoutMarginBottom>
- </Fragment>
- ),
- configurations: [
- {
- language: 'go',
- code: `
- app := negroni.Classic()
- app.Use(sentrynegroni.New(sentrynegroni.Options{
- Repanic: true,
- }))
- app.Use(negroni.HandlerFunc(func(rw http.ResponseWriter, r *http.Request, next http.HandlerFunc) {
- hub := sentry.GetHubFromContext(r.Context())
- hub.Scope().SetTag("someRandomTag", "maybeYouNeedIt")
- next(rw, r)
- }))
- mux := http.NewServeMux()
- mux.HandleFunc("/", func(rw http.ResponseWriter, r *http.Request) {
- hub := sentry.GetHubFromContext(r.Context())
- hub.WithScope(func(scope *sentry.Scope) {
- scope.SetExtra("unwantedQuery", "someQueryDataMaybe")
- hub.CaptureMessage("User provided unwanted query string, but we recovered just fine")
- })
- rw.WriteHeader(http.StatusOK)
- })
- mux.HandleFunc("/foo", func(rw http.ResponseWriter, r *http.Request) {
-
-
- panic("y tho")
- })
- app.UseHandler(mux)
- http.ListenAndServe(":3000", app)
- `,
- },
- {
- description: (
- <strong>
- {tct('Accessing Request in [beforeSendCode:BeforeSend] callback', {
- beforeSendCode: <code />,
- })}
- </strong>
- ),
- language: 'go',
- code: `
- sentry.Init(sentry.ClientOptions{
- Dsn: "${dsn}",
- BeforeSend: func(event *sentry.Event, hint *sentry.EventHint) *sentry.Event {
- if hint.Context != nil {
- if req, ok := hint.Context.Value(sentry.RequestContextKey).(*http.Request); ok {
-
- }
- }
- return event
- },
- })
- `,
- },
- ],
- },
- {
- title: t("Using Negroni's 'panicHandlerFuncCode' Option"),
- description: (
- <Fragment>
- <p>
- {tct(
- "Negroni provides an option called [panicHandlerFuncCode:PanicHandlerFunc], which lets you 'plug-in' to its default [recoveryCode:Recovery] middleware.",
- {
- panicHandlerFuncCode: <code />,
- recoveryCode: <code />,
- }
- )}
- </p>
- <p>
- {tct(
- "[sentrynegroniCode:sentrynegroni] exports a very barebones implementation, which utilizes it, so if you don't need anything else than just reporting panics to Sentry, you can use it instead, as it's just one line of code!",
- {
- sentrynegroniCode: <code />,
- }
- )}
- </p>
- <p>
- {tct(
- 'You can still use [beforeSendCode:BeforeSend] and event processors to modify data before delivering it to Sentry, using this method as well.',
- {
- beforeSendCode: <code />,
- }
- )}
- </p>
- </Fragment>
- ),
- configurations: [
- {
- language: 'go',
- code: `
- app := negroni.New()
- recovery := negroni.NewRecovery()
- recovery.PanicHandlerFunc = sentrynegroni.PanicHandlerFunc
- app.Use(recovery)
- mux := http.NewServeMux()
- mux.HandleFunc("/", func(w http.ResponseWriter, req *http.Request) {
- panic("y tho")
- })
- app.UseHandler(mux)
- http.ListenAndServe(":3000", app)
- `,
- },
- ],
- },
- ];
- export function GettingStartedWithNegroni({dsn, ...props}: ModuleProps) {
- return <Layout steps={steps({dsn})} {...props} />;
- }
- export default GettingStartedWithNegroni;
- const AlertWithoutMarginBottom = styled(Alert)`
- margin-bottom: 0;
- `;
|