Skip to content

Instantly share code, notes, and snippets.

@index0h
Created July 21, 2015 14:20
Show Gist options
  • Save index0h/107cb3444d7376a959a8 to your computer and use it in GitHub Desktop.
Save index0h/107cb3444d7376a959a8 to your computer and use it in GitHub Desktop.
cyclops
################################### General ####################################
## Sentry server name. This is the base URL that Cyclops will use to send
## requests to sentry.
## Defaults to: localhost:9000
SENTRY_BASE_URL = '{{ SENTRY_HOST_HERE }}'
################################################################################
################################# Performance ##################################
## In order to calculate the average requests, Cyclops keeps track of the times
## of the last requests sent to sentry. This setting specifies the maximum
## number of requests to average.
## Defaults to: 5000
MAX_REQUESTS_TO_AVERAGE = 1000
################################################################################
################################### Database ###################################
MYSQL_HOST = '{{ MYSQL_HOST_HERE }}'
MYSQL_PORT = 3306
MYSQL_DB = 'sentry'
MYSQL_USER = 'sentry'
MYSQL_PASS = '{{ SENTRY_PASSWORD_HERE }}'
################################################################################
#################################### Cache #####################################
CACHE_IMPLEMENTATION_CLASS = 'cyclops.cache.RedisCache'
REDIS_HOST = '127.0.0.1'
REDIS_PORT = 6379
REDIS_DB_COUNT = 0
REDIS_PASSWORD = None
################################################################################
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment