Metadata-Version: 1.1
Name: sentry-elastic-nodestore
Version: 0.0.7
Summary: Sentry nodestore Elasticsearch backend
Home-page: https://github.com/hellysmile/sentry_elastic_nodestore
Author: hellysmile@gmail.com
Author-email: hellysmile@gmail.com
License: UNKNOWN
Description: sentry_elastic_nodestore
        ========================
        
        :info: Sentry nodestore Elasticsearch backend
        
        .. image:: https://img.shields.io/pypi/v/sentry_elastic_nodestore.svg
            :target: https://pypi.python.org/pypi/sentry_elastic_nodestore
        
        Installation
        ------------
        
        .. code-block:: shell
        
            pip install sentry_elastic_nodestore
        
        Configuration
        -------------
        
        Set ``SENTRY_NODESTORE`` at Your ``sentry.conf.py``
        
        .. code-block:: python
        
            from elasticsearch import Elasticsearch
            es = Elasticsearch(['127.0.0.1:9200'])
            SENTRY_NODESTORE = 'sentry_elastic_nodestore.ElasticNodeStorage'
            SENTRY_NODESTORE_OPTIONS = {
                'es': es,
                'refresh': False,  # https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-refresh.html
            }
        
            from sentry.conf.server import *  # default for sentry.conf.py
            INSTALLED_APPS = list(INSTALLED_APPS)
            INSTALLED_APPS.append('sentry_elastic_nodestore')
            INSTALLED_APPS = tuple(INSTALLED_APPS)
        
        Usage
        -----
        
        Setup elasticsearch template
        
        .. code-block:: shell
        
            sentry --config sentry.conf.py django elastic_template
        
Keywords: sentry,elasticsearch,nodestore,backend
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Operating System :: OS Independent
