yabeda icon indicating copy to clipboard operation
yabeda copied to clipboard

Extendable framework for collecting and exporting metrics from your Ruby application

Results 5 yabeda issues
Sort by recently updated
recently updated
newest added

Hi, this is a small feature request that should be backwards compatible. ## Issue We have some counters in our app that we're not using any tags with. These counters...

Hey @Envek, How can I add a custom tag to default sidekiq metrics. Right now a default tag gets added to all the sidekiq metrics. Is there a way to...

Hey @Envek , Right now hitting /metrics displays all the default metrics. How can I restrict it to display only those metrics which I need?

Given the current implementation of `group` method for DSL: https://github.com/yabeda-rb/yabeda/blob/bd3b49fe0fd293fe6ac2d29f9e04fa5bdde79b0c/lib/yabeda/dsl/class_methods.rb#L31-L37 We can configure sibling groups ```ruby Yabeda.configure do group :g1 # config group :g2 # config end ``` or attempt...

We managed to make this work by adding the following to puma.rb ```ruby on_worker_boot(:connection_pool_timer) do |index, data| ActiveSupport.on_load(:active_record) do data[:connection_pool_timer] = Concurrent::TimerTask.new(execution_interval: 2) do ActiveRecord::Base.connection_handler.all_connection_pools.each do |connection_pool| tags = {...