millie
millie

Reputation: 235

How can I tell if a specific part of my Rails app is tying up my Heroku dyno?

I just implemented carrierwave_direct to upload files in my app directly to S3, with the goal of avoiding tying up my Heroku dyno, per https://devcenter.heroku.com/articles/s3.

How can I confirm that I have accomplished what I set out to do?

Upvotes: 0

Views: 46

Answers (1)

Max Dunn
Max Dunn

Reputation: 1244

From your Heroku account, signup for the free New Relic addon which provides some great profiling tools. Then upload a big file and check New Relic to make sure it isn't tying up your dyno.

Upvotes: 1

Related Questions