Note: Requires Raven >= 3.9.0. Raven 3.14.0 has a bug which this library triggers.
Logs the type of each dispatched action to Raven as "breadcrumbs" and attaches your last action and current Redux state as additional context.
Inspired by redux-raven-middleware but with a slightly different approach.
npm install --save raven-for-redux
// store.js
import Raven from "raven-js"; // Or, you might already have this as `window.Raven`.
import { createStore, applyMiddleware } from "redux";
import createRavenMiddleware from "raven-for-redux";
import { reducer } from "./my_reducer";
Raven.config("<YOUR_DSN>").install();
export default createStore(
reducer,
applyMiddleware(
// Middlewares, like `redux-thunk` that intercept or emit actions should
// precede `raven-for-redux`.
createRavenMiddleware(Raven, {
// Optionally pass some options here.
})
)
);
For a working example, see the example directory.
This library makes, what I think are, a few improvements over
redux-raven-middlware
:
- Raven is injected rather than being setup inside the middleware. This allows
for more advanced configuration of Raven, as well as cases where Raven has
already been initialized. For example, if you include Raven as its own
<script>
tag. - Adds your state and last action as context to all errors, not just reducer exceptions.
Raven
(Raven Object): A configured and "installed" Raven object.- [
options
] (Object): See below for detailed documentation.
While the default configuration should work for most use cases, Raven for Redux can be configured by providing an options object with any of the following optional keys.
Default: action => undefined
Raven allows you to attach additional context information to each breadcrumb in
the form of a data
object. breadcrubmDataFromAction
allows you to specify
a transform function which is passed the action
object and returns a data
object.
The default implementation of this function returns undefined
, which means no
data is attached. This is because there are a few gotchas:
- The data object must be "flat". In other words, each value of the object must be a string. The values may not be arrays or other objects.
- Sentry limits the total size of your error report. If you send too much data, the error will not be recorded. If you are going to attach data to your breadcrumbs, be sure you understand the way it will affect the total size of your report.
Be careful not to mutate your action
within this function.
See the Sentry Breadcrumb documentation.
Default: action => action
In some cases your actions may be extremely large, or contain sensitive data.
In those cases, you may want to transform your action before sending it to
Sentry. This function allows you to do so. It is passed the last dispatched
action
object, and should return a serializable value.
Be careful not to mutate your action
within this function.
If you have specified a dataCallback
when you configured Raven, note that
actionTransformer
will be applied before your specified dataCallback
.
Default: state => state
(Function)
In some cases your state may be extremely large, or contain sensitive data. In those cases, you may want to transform your state before sending it to Sentry. This function allows you to do so. It is passed the current state object, and should return a serializable value.
Be careful not to mutate your state
within this function.
If you have specified a dataCallback
when you configured Raven, note that
stateTransformer
will be applied before your specified dataCallback
.
Default: "redux-action"
Each breadcrumb is assigned a category. By default all action breadcrumbs are
given the category "redux-action"
. If you would prefer a different category
name, specify it here.
- No changes. Just bringing the project out of beta.
- Refactor: Use implicit binding to track the state/last action. (1def9a7)
- Return the next middleware's (or the actual
dispatch
function's) return value. (#11)
actionTransformer
andstateTransformer
are only run when reporting an error, rather than on every action. (#8)