Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

track application memory usage on heroku

Tags:

I'm hosting a rails application on heroku.

Is there a way I could track the memory usage of the running dynos?

Thanks

like image 707
Oded Harth Avatar asked Jan 24 '12 11:01

Oded Harth


1 Answers

Heroku has a log-runtime-metrics feature to monitor the memory usage now.

To enable, run

$ heroku labs:enable log-runtime-metrics 

and the memory usage will be shown on the server log. Read Heroku log-runtime-metrics docs for more information.

like image 105
shinnc Avatar answered Sep 20 '22 13:09

shinnc