Hi all,
I'm newbie to Sentry. I'm trying out Sentry/Raven for few days. Following the document I got everything worked fine. But my Sentry seems to be weird on aggregating events. It duplicated an event many times and saved them to the database in a group. I show below my test code and some screenshots:
def get_sentry_handler():
"""
Return SentryHandler
"""
client = Client(config.SENTRY_SERVER)
handler = SentryHandler(client, level=logging.DEBUG)
return handler
for i in range(14):
log = logging.getLogger('Performance Test')
log.setLevel(logging.DEBUG)
log.addHandler(utils.get_sentry_handler())
log.error(str(uuid.uuid4().hex))
print 'OK'
time.sleep(2)
Sentry screenshot:

In a group:

As you can see in the code, I sent each event (str(uuid.uuid4().hex)) just one time, but I saw many records for each event in my database. Can anyone tell me what is going on? Did I do something wrong? Or missed some configurations?
Currently I am using Sentry 6.4.4, Raven 4.2.3, MySQL and Redis. I started 4 Celery workers and used Apache as load balancer for 4 Sentry instances.
Thank you very much for any help!