summaryrefslogtreecommitdiff
path: root/docs/integrations/zerorpc.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/integrations/zerorpc.rst')
-rw-r--r--docs/integrations/zerorpc.rst39
1 files changed, 0 insertions, 39 deletions
diff --git a/docs/integrations/zerorpc.rst b/docs/integrations/zerorpc.rst
deleted file mode 100644
index c60833b..0000000
--- a/docs/integrations/zerorpc.rst
+++ /dev/null
@@ -1,39 +0,0 @@
-ZeroRPC
-=======
-
-ZeroRPC is a light-weight, reliable and language-agnostic library for
-distributed communication between server-side processes.
-
-Installation
-------------
-
-If you haven't already, start by downloading Raven. The easiest way is
-with *pip*::
-
- pip install raven --upgrade
-
-Setup
------
-
-The ZeroRPC integration comes as middleware for ZeroRPC. The middleware can be
-configured like the original Raven client (using keyword arguments) and
-registered into ZeroRPC's context manager::
-
- import zerorpc
-
- from raven.contrib.zerorpc import SentryMiddleware
-
- sentry = SentryMiddleware(dsn='___DSN___')
- zerorpc.Context.get_instance().register_middleware(sentry)
-
-By default, the middleware will hide internal frames from ZeroRPC when it
-submits exceptions to Sentry. This behavior can be disabled by passing the
-``hide_zerorpc_frames`` parameter to the middleware::
-
- sentry = SentryMiddleware(hide_zerorpc_frames=False, dsn='___DSN___')
-
-Compatibility
--------------
-
-- ZeroRPC-Python < 0.4.0 is compatible with Raven <= 3.1.0;
-- ZeroRPC-Python >= 0.4.0 requires Raven > 3.1.0.