Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/yabeda-rb/yabeda

Extendable framework for collecting and exporting metrics from your Ruby application
https://github.com/yabeda-rb/yabeda

metrics monitoring ruby yabeda

Last synced: about 15 hours ago
JSON representation

Extendable framework for collecting and exporting metrics from your Ruby application

Awesome Lists containing this project

README

        

# ![Yabeda](./yabeda-logo.png)

[![Gem Version](https://badge.fury.io/rb/yabeda.svg)](https://rubygems.org/gems/yabeda)
[![Tests status](https://github.com/yabeda-rb/yabeda/actions/workflows/test.yml/badge.svg)](https://github.com/yabeda-rb/yabeda/actions/workflows/test.yml)

Extendable solution for easy setup of monitoring in your Ruby apps.


Sponsored by Evil Martians

> Read more about Yabeda and the reasoning behind it in Martian Chronicles: [“Meet Yabeda: Modular framework for instrumenting Ruby applications”](https://evilmartians.com/chronicles/meet-yabeda-modular-framework-for-instrumenting-ruby-applications)

## Installation

Most of the time you don't need to add this gem to your Gemfile directly (unless you're only collecting your custom metrics):

```ruby
gem 'yabeda'

# Add some plugins to quickly start collecting some essential metrics:
# gem 'yabeda-rails'
# gem 'yabeda-sidekiq'

# Then add monitoring system adapter, e.g.:
# gem 'yabeda-prometheus'
```

And then execute:

$ bundle

## Usage

1. Declare your metrics:

```ruby
Yabeda.configure do
group :your_app do
counter :bells_rang_count, comment: "Total number of bells being rang", tags: %i[bell_size]
gauge :whistles_active, comment: "Number of whistles ready to whistle"
histogram :whistle_runtime do
comment "How long whistles are being active"
unit :seconds
end
summary :bells_ringing_duration, unit: :seconds, comment: "How long bells are ringing"
end
end
```

2. After your application was initialized and all metrics was declared, you need to apply Yabeda configuration:

```ruby
Yabeda.configure!
```

_If you're using Ruby on Rails then it will be configured automatically!_

3. Access metric in your app and use it!

```ruby
def ring_the_bell(id)
bell = Bell.find(id)
bell.ring!
Yabeda.your_app.bells_rang_count.increment({bell_size: bell.size}, by: 1)
end

def whistle!
Yabeda.your_app.whistle_runtime.measure do
# Run your code
end
end
```

4. Setup collecting of metrics that do not tied to specific events in you application. E.g.: reporting your app's current state
```ruby
Yabeda.configure do
# This block will be executed periodically few times in a minute
# (by timer or external request depending on adapter you're using)
# Keep it fast and simple!
collect do
your_app.whistles_active.set({}, Whistle.where(state: :active).count)
end
end
```

5. _Optionally_ setup default tags for all appropriate metrics
```ruby
Yabeda.configure do
# matches all metrics in all groups
default_tag :rails_environment, 'production'

# matches all metrics in the :your_app group
default_tag :tag_name, 'override', group: :your_app
end

# You can redefine them for limited amount of time
Yabeda.with_tags(rails_environment: 'staging') do
Yabeda.your_app.bells_rang_count.increment({bell_size: bell.size}, by: 1)
end
```

**Note**: any usage of `with_tags` **must** have all those tags defined on all metrics that are generated in the block.

6. _Optionally_ override default tags using precedence:

The tag precedence from high to low is:

* Manually specified tags
* Thread local tags (specified by `Yabeda.with_tags`)
* Group specific tags
* Global tags

7. See the docs for the adapter you're using
8. Enjoy!

## Available monitoring system adapters

### Maintained by Yabeda

- Prometheus:
- [yabeda-prometheus](https://github.com/yabeda-rb/yabeda-prometheus) — wraps [official Ruby client for Prometheus](https://github.com/prometheus/client_ruby).
- [yabeda-prometheus-mmap](https://github.com/yabeda-rb/yabeda-prometheus-mmap) — wraps [GitLab's fork of Prometheus Ruby client](https://gitlab.com/gitlab-org/prometheus-client-mmap) which may work better for multi-process application servers.
- [Datadog](https://github.com/yabeda-rb/yabeda-datadog)
- [NewRelic](https://github.com/yabeda-rb/yabeda-newrelic)

### Third-party adapters

These are developed and maintained by other awesome folks:

- [Statsd](https://github.com/asusikov/yabeda-statsd)
- [AWS CloudWatch](https://github.com/retsef/yabeda-cloudwatch)
- [Honeybadger Insights](https://github.com/honeybadger-io/yabeda-honeybadger_insights)
- _…and more! You can write your own adapter and open a pull request to add it into this list._

## Available plugins to collect metrics

### Maintained by Yabeda

- [yabeda-rails] — basic request metrics for [Ruby on Rails](https://rubyonrails.org/) applications.
- [yabeda-activerecord] — query performance and connection pool stats for apps using ActiveRecord to query databases.
- [yabeda-sidekiq] — comprehensive set of metrics for monitoring [Sidekiq](https://sidekiq.org/) jobs execution and queues.
- [yabeda-faktory] — metrics for monitoring jobs execution by Ruby workers of [Faktory](https://contribsys.com/faktory/).
- [yabeda-graphql] — metrics to query and field-level monitoring for apps using [GraphQL-Ruby](https://graphql-ruby.org/).
- [yabeda-puma-plugin] — metrics for internal state and performance of [Puma](https://puma.io/) application server.
- [yabeda-http_requests] — monitor how many outgoing HTTP calls your application does (uses [Sniffer](https://github.com/aderyabin/sniffer)).
- [yabeda-schked] — monitor number and duration of Cron jobs executed by [Schked](https://github.com/bibendi/schked).
- [yabeda-anycable] — monitor number, duration, and status of [AnyCable](https://anycable.io/) RPC calls.

### Third-party plugins

These are developed and maintained by other awesome folks:

- [yabeda-grape](https://github.com/efigence/yabeda-grape) — metrics for [Grape](https://github.com/ruby-grape/grape) framework.
- [yabeda-gruf](https://github.com/Placewise/yabeda-gruf) — metrics for [gRPC Ruby Framework](https://github.com/bigcommerce/gruf)
- [yabeda-gc](https://github.com/ianks/yabeda-gc) — metrics for Ruby garbage collection.
- [yabeda-activejob](https://github.com/Fullscript/yabeda-activejob) — backend-agnostic metrics for background jobs.
- [yabeda-shoryuken](https://github.com/retsef/yabeda-shoryuken) — metrics for [Shoryuken](https://github.com/ruby-shoryuken/shoryuken) jobs execution message queues.
- [yabeda-rack-ratelimit](https://github.com/basecamp/yabeda-rack-ratelimit) — metrics for [Rack::Ratelimit](https://github.com/jeremy/rack-ratelimit)
- [yabeda-hanami](https://github.com/mlibrary/yabeda-hanami) — metrics for [Hanami](https://hanamirb.org/) The web, with simplicity.
- _…and more! You can write your own adapter and open a pull request to add it into this list._

## Configuration

Configuration is handled by [anyway_config] gem. With it you can load settings from environment variables (which names are constructed from config key upcased and prefixed with `YABEDA_`), YAML files, and other sources. See [anyway_config] docs for details.

Config key | Type | Default | Description |
---------- | -------- | ------- | ----------- |
`debug` | boolean | `false` | Collects metrics measuring Yabeda performance |

## Debugging metrics

- Time of collector block run: `yabeda_collect_duration` (segmented by block source location). Collector blocks are used for collecting metrics of application state and usually makes some potentially slow queries to databases, network requests, etc.

These are only enabled in debug mode. To enable it either set `debug` config key to `true` (e.g. by specifying `YABEDA_DEBUG=true` in your environment variables or executing `Yabeda.debug!` in your code).

## Testing

### RSpec

Add the following to your `rails_helper.rb` (or `spec_helper.rb`):

```ruby
require "yabeda/rspec"
```

Now you can use `increment_yabeda_counter`, `update_yabeda_gauge`, `measure_yabeda_histogram`, and `observe_yabeda_summary` matchers:

```ruby
it "increments counters" do
expect { subject }.to increment_yabeda_counter(Yabeda.myapp.foo_count).by(3)
end
```

You can scope metrics by used tags with `with_tags`:

```ruby
it "updates gauges" do
expect { subject }.to \
update_yabeda_gauge("some_gauge_name").
with_tags(method: "command", command: "subscribe")
end
```

Note that tags you specified doesn't need to be exact, but can be a subset of tags used on metric update. In this example updates with following sets of tags `{ method: "command", command: "subscribe", status: "SUCCESS" }` and `{ method: "command", command: "subscribe", status: "FAILURE" }` will make test example to pass.

And check for values with `by` for counters, `to` for gauges, and `with` for histograms and summaries (and you [can use other matchers here](https://relishapp.com/rspec/rspec-expectations/v/3-10/docs/composing-matchers)):

```ruby
expect { subject }.to \
measure_yabeda_histogram(Yabeda.something.anything_runtime).
with(be_between(0.005, 0.05))
```

You also can specify multiple tags and their expected values in `with`:

```ruby
expect { whatever }.to increment_yabeda_counter(:my_counter).with(
{ tag: "foo" } => 1,
{ tag: "bar" } => (be >= 42),
)
```

## Advanced usage

### Limiting metrics and groups to specific adapters

You can limit, which metrics and groups should be available for specific adapter:

```ruby
Yabeda.configure do
group :internal do
adapter :prometheus

counter :foo
gauge :bar
end

group :cloud do
adapter :newrelic

counter :baz
end

counter :qux, adapter: :prometheus
end
```

## Roadmap (aka TODO or Help wanted)

- Ability to change metric settings for individual adapters

```rb
histogram :foo, comment: "say what?" do
adapter :prometheus do
buckets [0.01, 0.5, …, 60, 300, 3600]
end
end
```

## Development

After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).

### Releasing

1. Bump version number in `lib/yabeda/version.rb`

In case of pre-releases keep in mind [rubygems/rubygems#3086](https://github.com/rubygems/rubygems/issues/3086) and check version with command like `Gem::Version.new(Yabeda::VERSION).to_s`

2. Fill `CHANGELOG.md` with missing changes, add header with version and date.

3. Make a commit:

```sh
git add lib/yabeda/version.rb CHANGELOG.md
version=$(ruby -r ./lib/yabeda/version.rb -e "puts Gem::Version.new(Yabeda::VERSION)")
git commit --message="${version}: " --edit
```

3. Create annotated tag:

```sh
git tag v${version} --annotate --message="${version}: " --edit --sign
```

4. Fill version name into subject line and (optionally) some description (changes will be taken from changelog and appended automatically)

5. Push it:

```sh
git push --follow-tags
```

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/yabeda-rb/yabeda.

## License

The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).

[yabeda-rails]: https://github.com/yabeda-rb/yabeda-rails/ "Yabeda plugin for collecting and exporting basic metrics for Rails applications"
[yabeda-activerecord]: https://github.com/yabeda-rb/yabeda-activerecord/ "Yabeda plugin to collect query performance metrics and connection pool statistics"
[yabeda-sidekiq]: https://github.com/yabeda-rb/yabeda-sidekiq/ "Yabeda plugin for complete monitoring of Sidekiq metrics"
[yabeda-faktory]: https://github.com/yabeda-rb/yabeda-faktory/ "Yabeda plugin for complete monitoring of Faktory Ruby Workers"
[yabeda-graphql]: https://github.com/yabeda-rb/yabeda-graphql/ "Measure and understand how good your GraphQL-Ruby application works"
[yabeda-puma-plugin]: https://github.com/yabeda-rb/yabeda-puma-plugin/ "Collects Puma web-server metrics from puma control application"
[yabeda-http_requests]: https://github.com/yabeda-rb/yabeda-http_requests/ "Builtin metrics to monitor external HTTP requests"
[yabeda-schked]: https://github.com/yabeda-rb/yabeda-schked/ "Built-in metrics for monitoring Schked recurring jobs out of the box"
[yabeda-anycable]: https://github.com/yabeda-rb/yabeda-anycable "Collect performance metrics for AnyCable RPC server"
[anyway_config]: https://github.com/palkan/anyway_config "Configuration library for Ruby gems and applications"