Skip to content

Commit

Permalink
use metrics prefix for statsd metrics
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewChubatiuk committed Apr 19, 2024
1 parent a7eeb06 commit d4f8b20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redash/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def setup_logging():

if settings.STATSD_ENABLED:
gb = GraphiteBridge((settings.STATSD_HOST, settings.STATSD_PORT), tags=settings.STATSD_USE_TAGS)
gb.start(settings.STATSD_PERIOD)
gb.start(settings.STATSD_PERIOD, settings.STATSD_PREFIX)

redis_connection = redis.from_url(settings.REDIS_URL)
rq_redis_connection = redis.from_url(settings.RQ_REDIS_URL)
Expand Down

0 comments on commit d4f8b20

Please sign in to comment.