Redis

The Redis integration hooks into the Redis client for Python and logs all Redis commands as breadcrumbs.

Install

Copied
pip install --upgrade 'sentry-sdk'

Configure

Add RedisIntegration() to your integrations list:

Copied
import sentry_sdk
from sentry_sdk.integrations.redis import RedisIntegration

sentry_sdk.init(
    dsn='https://examplePublicKey@o0.ingest.sentry.io/0',
    integrations=[
        RedisIntegration(),
    ],
)

Supported Versions

  • Python: 2.7+
Help improve this content
Our documentation is open source and available on GitHub. Your contributions are welcome, whether fixing a typo (drat!) to suggesting an update ("yeah, this would be better").