mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-13 02:31:39 -05:00
14 lines
353 B
Ruby
14 lines
353 B
Ruby
# frozen_string_literal: true
|
|
|
|
Sidekiq.configure_server do |config|
|
|
config.redis = { url: ENV['REDIS_URL'] }
|
|
|
|
config.server_middleware do |chain|
|
|
require 'prometheus_exporter/instrumentation'
|
|
chain.add PrometheusExporter::Instrumentation::Sidekiq
|
|
end
|
|
end
|
|
|
|
Sidekiq.configure_client do |config|
|
|
config.redis = { url: ENV['REDIS_URL'] }
|
|
end
|