Sha256: bd8f804ea0243061853b218a273d2dae4c86880620acf1a93e3782a0c2f3218a

Contents?: true

Size: 744 Bytes

Versions: 1

Compression:

Stored size: 744 Bytes

Contents

# Myflamegraph

Flamegraph support for Rails apps.

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'myflamegraph'
```

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install myflamegraph

## Usage

For example, to profile OrdersController#index, OrdersController#create :

```ruby
class OrdersController < ApplicationController
   # add this line
   ffff :index, :create

   def index
     # ...
   end

   def create
     # ...
   end
end
```

Run those methods anyway, then find flamegraph in tmp dir. (run `Myflamegraph.tmp` to figure out location of your tmp dir)

## License

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
myflamegraph-0.1.0 README.md