You cannot post messages because only members can post, and you are not currently a member.
Description:
God is an easy to use ruby monitoring framework with customizable conditions and behaviors.
|
|
|
Monitoring Unicorn Workers with God
|
| |
There seems to be no easy to way monitor unicorn workers with god. Github has a hack, where they use a separate thread to monitor the workers, but the post is two and a half years old ([link]). Have things changed since?
|
|
Different restart commands based on the restart condition
|
| |
Hey Guys I am monitoring a process where my restart command is based on the restart condition failed. E.g. If memory usage too high: w.restart = "command 1" if cpu usage too high: w.restart = "command 2" Is there a way to configure a watch as such? Thanks.
|
|
God-rb doesn't auto-daemonize unicorn well?
|
| |
God stores a wrong pid for auto-demonizing unicorn. I can get things working by set the pid file on both unicorn and god. But do I have to do it this way? Why god doesn't auto-daemonize unicorn well?
|
|
god overwrites ".kilobytes" in Rails
|
| |
Setup:
Gemfile
gem 'god'
rails c
irb: warn: can't alias exit from irb_exit
...=> 5120
work fine if I follow [link]
Gemfile
gem 'god', :require => false
rails c
...=> 5242880
|
|
how to start the process
|
| |
How does godrb actually start, is there a ubuntu init script that
starts the process and makes sure it starts upon reboots?
|
|
never received process exit event
|
| |
Hi everybody,
I'm a newbie to God. I install and run God on Ubuntu system is fine.
But I get problem when run God on Debian. Run "god check", I got
message: "[fail] never received process exit event".
My system info:
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux 6.0.4 (squeeze)... more »
|
|
monitor chrome with god
|
| |
hi there, My ubuntu runs on 1G ram, where chrome always get fronzen or crashed because of flash. So I want to watch my chrome with god and limit the cpu and memory it occupies. Normally, I can run a chrome by typing "google-chrome" in terminal, so I write following god script: God.watch do |w| w.name = "chrome"... more »
|
|
non-daemon process using Bundler
|
| |
Hello, I'm having a problem with god trying to watch a non-daemon process that is started by "bundle exec". God starts the process just fine, as seen by ps: 6856 ? Ss 0:00 sh -c bundle exec rake resque:scheduler >> /home/rails/project_a/shared/l og/scheduler.log 2>&1 6860 ? Sl 0:23 ruby... more »
|
|
Test issues on Ruby 1.9.x and OS X Lion
|
| |
I seem to be unable to complete a rake run with 0.12.1, using Ruby 1.9.2 or 1.9.3 on OS 10.7.3. It hangs at TestEventHandlerOperational: test_operational, in the God::EventHandler.start call. Within that method, it's hanging on ::Process.kill('KILL', pid). When kill is called, the child process is terminated, but sticks around as a zombie, and the kill call never returns.... more »
|
|
|