Module

Sentry.Raven.Core

Package
purescript-sentry-raven
Repository
adamczykm/purescript-sentry-raven

#Dsn Source

newtype Dsn

Newtype representing Sentry's Data Source Name

Constructors

#withRaven Source

withRaven :: forall eff opts ctx a. WriteForeign ctx => Dsn -> opts -> ctx -> (forall h. (Raven h ctx -> Eff (raven :: RAVEN h | eff) a)) -> Eff eff a

Initializes Raven library and runs given effect in given Raven context, which allows to use the rest of the library function and automatically log uncaught exceptions. For more information about rejected promises, DSN, configuration options and contexts, please consult Raven library or Sentry documentation.

#captureException Source

captureException :: forall extra err eff ctx h. WriteForeign err => WriteForeign extra => Raven h ctx -> err -> extra -> Eff (raven :: RAVEN h | eff) Unit

Logs exceptional behaviour of a program to given Raven instance. Parses err argument to message and stores extra as additional error data.

#captureMessage Source

captureMessage :: forall extra msg eff ctx h. WriteForeign msg => WriteForeign extra => Raven h ctx -> msg -> extra -> Eff (raven :: RAVEN h | eff) Unit

Logs non-exceptional behaviour of a program to given Raven instance. Parses msg argument as message and stores extra as additional data.

#recordBreadcrumb Source

recordBreadcrumb :: forall a r eff ctx h. WriteForeign { category :: a | r } => Raven h ctx -> { category :: a | r } -> Eff (raven :: RAVEN h | eff) Unit

Adds a breadcrumb to the current context. Notice that replacing context will cause recorded breadcrumbs to be dropped. You may also want to use 'recordBreadcrumb'' from 'Sentry.Raven.Breadcrumb' for type-restricted version of this function.

#getContext Source

getContext :: forall eff ctx h. ReadForeign ctx => Raven h ctx -> Eff (raven :: RAVEN h | eff) ctx

Returns current Raven context.

#withNewContext Source

withNewContext :: forall a eff ctx' ctx h. WriteForeign ctx => WriteForeign ctx' => ReadForeign ctx => ReadForeign ctx' => Raven h ctx -> ctx' -> (forall h'. Raven h' ctx' -> Eff (raven :: RAVEN h' | eff) a) -> Eff (raven :: RAVEN h | eff) a

Runs given effect within a scope of new context. May change the type of the context.

#withChangedContext Source

withChangedContext :: forall a eff ctx' ctx h. WriteForeign ctx => WriteForeign ctx' => ReadForeign ctx => ReadForeign ctx' => Raven h ctx -> (ctx -> ctx') -> (forall h'. Raven h' ctx' -> Eff (raven :: RAVEN h' | eff) a) -> Eff (raven :: RAVEN h | eff) a

Runs given effect within a scope of modified context. May change the type of the context.

#withAddedTags Source

withAddedTags :: forall a t3 t2 t1 eff ctx h. Union t2 t1 t3 => WriteForeign { tags :: Record t1 | ctx } => ReadForeign { tags :: Record t1 | ctx } => Raven h { tags :: Record t1 | ctx } -> Record t2 -> (forall h'. Raven h' { tags :: Record t3 | ctx } -> Eff (raven :: RAVEN h' | eff) a) -> Eff (raven :: RAVEN h | eff) a

Adds given set of tags to the context and runs given effect within a scope of it. May change the type of the context.

#withAddedExtraContext Source

withAddedExtraContext :: forall a t3 t2 t1 eff ctx h. Union t2 t1 t3 => WriteForeign { extra :: Record t1 | ctx } => ReadForeign { extra :: Record t1 | ctx } => Raven h { extra :: Record t1 | ctx } -> Record t2 -> (forall h'. Raven h' { extra :: Record t3 | ctx } -> Eff (raven :: RAVEN h' | eff) a) -> Eff (raven :: RAVEN h | eff) a

Runs given effect within a scope of additional extra context. May change the type of the context.

#withUser Source

withUser :: forall a t2 t1 eff ctx h. WriteForeign { user :: t1 | ctx } => ReadForeign { user :: t1 | ctx } => Raven h { user :: t1 | ctx } -> t2 -> (forall h'. Raven h' { user :: t2 | ctx } -> Eff (raven :: RAVEN h' | eff) a) -> Eff (raven :: RAVEN h | eff) a

Runs given effect with new user context. May change the type of the context.

#setContext Source

setContext :: forall eff ctx h. WriteForeign ctx => Raven h ctx -> ctx -> Eff (raven :: RAVEN h | eff) Unit

Sets current Raven context. Notice that if you want to change the type of the context you should use 'withNewContext' function.

#modifyContext Source

modifyContext :: forall eff ctx h. WriteForeign ctx => ReadForeign ctx => Raven h ctx -> (ctx -> ctx) -> Eff (raven :: RAVEN h | eff) Unit

Modifies current Raven context. Notice that if you want to change the type of the context you should use 'withChangedContext' function.

#setTags Source

setTags :: forall t1 eff ctx h. WriteForeign { tags :: t1 | ctx } => ReadForeign { tags :: t1 | ctx } => Raven h { tags :: t1 | ctx } -> t1 -> Eff (raven :: RAVEN h | eff) Unit

Replaces set of tags in the current Raven context.

#modifyTags Source

modifyTags :: forall t1 eff ctx h. WriteForeign { tags :: t1 | ctx } => ReadForeign { tags :: t1 | ctx } => Raven h { tags :: t1 | ctx } -> (t1 -> t1) -> Eff (raven :: RAVEN h | eff) Unit

Modifies set of tags in the current Raven context.

#setUser Source

setUser :: forall t1 eff ctx h. WriteForeign { user :: t1 | ctx } => ReadForeign { user :: t1 | ctx } => Raven h { user :: t1 | ctx } -> t1 -> Eff (raven :: RAVEN h | eff) Unit

Replaces set user in the current Raven context.

#modifyUser Source

modifyUser :: forall t1 eff ctx h. WriteForeign { user :: t1 | ctx } => ReadForeign { user :: t1 | ctx } => Raven h { user :: t1 | ctx } -> (t1 -> t1) -> Eff (raven :: RAVEN h | eff) Unit

Modifies set user in the current Raven context.

#setExtraContext Source

setExtraContext :: forall t1 eff ctx h. WriteForeign { extra :: t1 | ctx } => ReadForeign { extra :: t1 | ctx } => Raven h { extra :: t1 | ctx } -> t1 -> Eff (raven :: RAVEN h | eff) Unit

Replaces extra context data in the current Raven context.

#modifyExtraContext Source

modifyExtraContext :: forall t1 eff ctx h. WriteForeign { extra :: t1 | ctx } => ReadForeign { extra :: t1 | ctx } => Raven h { extra :: t1 | ctx } -> (t1 -> t1) -> Eff (raven :: RAVEN h | eff) Unit

Modifies extra context data in the current Raven context.

Re-exports from Sentry.Raven.Core.Internal

#Raven Source

data Raven :: Type -> Type -> Type

#RAVEN Source

data RAVEN :: Type -> Effect