Project

openapm

0.0
The project is in a healthy, maintained state
APM For Ruby Applications based on Open Source Tools such as Prometheus, Grafana
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 5.0
~> 10.0

Runtime

 Project Readme

Openapm

APM for Rack based Ruby applications using Prometheus and Grafana.

Installation

Add this line to your application's Gemfile:

gem 'openapm'

And then execute:

$ bundle

Or install it yourself as:

$ gem install openapm

Usage

Rack application

# config.ru
require 'rack'
require 'openapm/middleware'

use Rack::Deflater
use Openapm::Middleware

Rails application

# config/initializers/openapm.rb

unless Rails.env.test?
  require 'openapm/middleware'

  Rails.application.middleware.unshift Openapm::Middleware
end

This will start emitting the RED metrics for HTTP requests on /metrics path which can be scraped by a Prometheus.

Supported labels

  1. path - HTTP request path, removes id and uuid from the request path.
  2. method - HTTP method
  3. status - HTTP status code. Eg. 404
  4. environment - Rack or Rails enviornment set in the enviornment.
  5. program - Application name, defaults to web-application. Can be customized by setting Openapm.default_labels hash.

Additional labels

You can set additional labels by setting Openapm.default_labels

Openapm.default_labels = { service: 'web-service', stack: 'rails', team: 'platform' }

These labels will be added to each metric time series by default as static values.

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake test 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.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/prathamesh-sonpatki/openapm. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the Apache 2 License.

Code of Conduct

Everyone interacting in the Openapm project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.