Execute:
$ pip uninstall ratchet
Then:
$ pip install rollbar
Change your initialization call from ratchet.init(...)
to rollbar.init(...)
.
Search your app for all references to ratchet
and replace them with rollbar
.
In your settings.py
:
- change
'ratchet.contrib.django.middleware.RatchetNotifierMiddleware'
to'rollbar.contrib.django.middleware.RollbarNotifierMiddleware'
- rename your
RATCHET
configuration dict toROLLBAR
Search your app for all references to ratchet
and replace them with rollbar
.
In your ini
file:
- change the include
ratchet.contrib.pyramid
torollbar.contrib.pyramid
- rename your
ratchet.*
configuration variables torollbar.*
Search your app for all references to ratchet
and replace them with rollbar
.