I would like to change the name of the ruby process that gets displayed in the linux/unix top command. I have tried the
$0='miname'
approach but it only works with the ps command and in top the process keeps getting displayed as "ruby"
|
I would like to change the name of the ruby process that gets displayed in the linux/unix top command. I have tried the
approach but it only works with the ps command and in top the process keeps getting displayed as "ruby" |
||||
|
|
|
Dave Thomas had an interesting post on doing this in rails. There's nothing rails specific about the actual process name change code. He uses the In the post he suggests using the |
|||
|
|
I don't think Ruby has the facility builtin ( EDIT: I know you have your answer but I want to show you some code to use ffi:
Does not work on OS X because |
|||||
|
|
I had a similar problem, updated the technique from the Dave Thomas post a little by putting it in a rack middleware, rather than the before/after pattern. Put this in lib/rack/set_process_title.rb:
... and this goes at the end of config/environment.rb:
More words in the blog post: http://blog.actbluetech.com/2011/06/set-your-process-name-in-top-and-ps.html |
|||
|
|
|
The $0 = 'Foo' method works -- but many versions of top will require you to toggle command-line mode on with 'c'. We this very method here with rails and CentOS. Works a treat |
|||
|
|
|
I know Keltia already posted something very similar, but Linux doesn't have setproctitle(3). Linux has had this functionality in prctl() since version 2.6.9. I used Fiddle/DL since they are included by default with Ruby.
|
|||
|
|