a5a5a62169
* Add GVL contention metrics via gvltools and Yabeda Expose per-request and process-wide GVL wait time as Prometheus metrics to diagnose suspected GVL contention from Solid Cable and Action Cable threads in Puma workers. Metrics: gvl_request_wait_seconds (histogram), gvl_waiting_threads (gauge), gvl_global_timer_total_seconds (gauge). * Add unit: :seconds to GVL histogram for consistency
28 lines
890 B
Plaintext
28 lines
890 B
Plaintext
# This Gemfile extends the base Gemfile with SaaS-specific dependencies
|
|
eval_gemfile "Gemfile"
|
|
|
|
git_source(:bc) { |repo| "https://github.com/basecamp/#{repo}" }
|
|
|
|
gem "activeresource", require: "active_resource"
|
|
gem "stripe", "~> 18.0"
|
|
gem "queenbee", bc: "queenbee-plugin"
|
|
gem "fizzy-saas", path: "saas"
|
|
gem "console1984", bc: "console1984"
|
|
gem "audits1984", bc: "audits1984", branch: "flavorjones/coworker-api"
|
|
|
|
# Telemetry
|
|
gem "rails_structured_logging", bc: "rails-structured-logging"
|
|
gem "sentry-ruby"
|
|
gem "sentry-rails"
|
|
gem "yabeda"
|
|
gem "yabeda-actioncable"
|
|
gem "yabeda-activejob", github: "basecamp/yabeda-activejob", branch: "bulk-and-scheduled-jobs"
|
|
gem "yabeda-gc"
|
|
gem "yabeda-http_requests"
|
|
gem "yabeda-prometheus-mmap"
|
|
gem "yabeda-puma-plugin"
|
|
gem "yabeda-rails"
|
|
gem "webrick" # required for yabeda-prometheus metrics server
|
|
gem "prometheus-client-mmap", "~> 1.3"
|
|
gem "gvltools"
|