Skip to content
Snippets Groups Projects
Commit eb51ec08 authored by Pawel Chojnacki's avatar Pawel Chojnacki
Browse files

Update Prometheus Client MMAP gem to version that fixes performance...

Update Prometheus Client MMAP gem to version that fixes performance degradation caused by workers churn
parent 0ed5ee33
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -284,7 +284,7 @@ group :metrics do
gem 'influxdb', '~> 0.2', require: false
 
# Prometheus
gem 'prometheus-client-mmap', '~>0.7.0.beta12'
gem 'prometheus-client-mmap', '~>0.7.0.beta14'
gem 'raindrops', '~> 0.18'
end
 
Loading
Loading
Loading
Loading
@@ -619,7 +619,7 @@ GEM
parser
unparser
procto (0.0.3)
prometheus-client-mmap (0.7.0.beta12)
prometheus-client-mmap (0.7.0.beta14)
mmap2 (~> 2.2, >= 2.2.7)
pry (0.10.4)
coderay (~> 1.1.0)
Loading
Loading
@@ -1093,7 +1093,7 @@ DEPENDENCIES
pg (~> 0.18.2)
poltergeist (~> 1.9.0)
premailer-rails (~> 1.9.7)
prometheus-client-mmap (~> 0.7.0.beta12)
prometheus-client-mmap (~> 0.7.0.beta14)
pry-byebug (~> 3.4.1)
pry-rails (~> 0.3.4)
rack-attack (~> 4.4.1)
Loading
Loading
require 'prometheus/client'
require 'prometheus/client/support/unicorn'
 
Prometheus::Client.configure do |config|
config.logger = Rails.logger
Loading
Loading
@@ -9,6 +10,8 @@ Prometheus::Client.configure do |config|
if Rails.env.development? || Rails.env.test?
config.multiprocess_files_dir ||= Rails.root.join('tmp/prometheus_multiproc_dir')
end
config.pid_provider = Prometheus::Client::Support::Unicorn.method(:worker_pid_provider)
end
 
Sidekiq.configure_server do |config|
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment