Tagged Questions

God is a ruby frame work designed to keep processes up and running.

learn more… | top users | synonyms

32
votes
6answers
9k views

God vs. Monit

Which one to use for process monitoring and why?
31
votes
11answers
12k views

How to monitor delayed_job with monit

Are there any examples on the web of how to monitor delayed_job with Monit? Everything I can find uses God, but I refuse to use God since long running processes in Ruby generally suck. (The most ...
17
votes
1answer
1k views

Using God to monitor Unicorn - Start exited with non-zero code = 1

I am working on a God script to monitor my Unicorns. I started with GitHub's examples script and have been modifying it to match my server configuration. Once God is running, commands such as god ...
8
votes
1answer
174 views

God won't register a running custom service

I've got a rails website and a small minecraft server running on a linode vps. I'm running minecraft as a custom service off of a ram server based on an init.d file. Since I'm using God to monitor my ...
7
votes
1answer
940 views

How to stop God from leaving stale Resque worker processes?

I'm trying to understand how to monitor the resque worker for travis-ci with god in such a way that stopping the resque watch via god won't leave a stale worker process. In the following I'm talking ...
4
votes
3answers
1k views

How can I keep a Passenger Standalone up even after a restart?

I have a few apps running rails 3 on ruby 1.9.2 and deployed on a Ubuntu 10.04 LTS machine using nginx + passenger. Now, I need to add a new app that runs on ruby 1.8.7 (REE) and Rails 2. I ...
3
votes
3answers
107 views

How do I write a Resque condition that says “if a process is running for longer than n seconds, kill it”?

I have a god/resque setup that spans a few worker servers. Every so often, the workers get jammed up by long polling connections and won't time out correctly. We have tried coding around it (but ...
2
votes
1answer
162 views

Monit to watch over God?

We're using God to monitor our server processes, and were wondering if we should use something like Monit to make sure God gets up if something unexpected happens. A quis custodiet ipsos custodes? ...
2
votes
1answer
107 views

Rubygem God: Time limit configuration for process

I am using resque, resque-scheduler gems in my rails app. To monitor the working of resque workers, I am using God tool. I want to add such a god configuration, which will monitor the time of job ...
2
votes
1answer
83 views

Ensure that certain processes are running when my Rails app loads

I want to ensure that certain processes like Sunspot Solr search and delayed_job are running when my Rails 3 app initializes or loads. I'm somewhat of a noob and from what I can tell, I could write a ...
2
votes
1answer
303 views

Custom God logging?

God has helped us keep a few services running on a Rails box (Nginx and MySQLd, specifically) but I'm hoping to get some more details when it actually swings into action. So far, setting the watch log ...
1
vote
2answers
91 views

God messing with Date Operations

This is a weired think. Follow my steps: Without god, on console: > d=Date.parse("2010-02-01") => Mon, 01 Feb 2010 > d+1.day => Tue, 02 Feb 2010 Perfect. Then, I go to my Gemfile and ...
1
vote
1answer
378 views

God stop resque workers rake

I am using Resque on a production website. When I deploy, I want GOD to stop all of the workers and then restart them since sometimes we change the code of a class and requeue the failed jobs. The ...
1
vote
1answer
105 views

What is the proper way to terminate non-daemonized processes with god?

I have a class that I am monitoring using god. This is it's structure: lib/my_class.rb #!/usr/bin/env ruby class MyClass def start(config) loop do EventMachine::run do ...
1
vote
1answer
129 views

How to configure god/redis for two environments?

I want to use god to monitor my redis server. The problem is that they are in different locations locally and on my server. I tried doing something like this but this causes god to fail. ...
1
vote
3answers
453 views

God won't start Resque workers: rake aborted! non-absolute home

I'm getting the following error in log/resque-0.log: rake aborted! non-absolute home /srv/myapp/current/Rakefile:4 If I start a worker manually using the same command God uses, it starts up just ...
1
vote
1answer
566 views

Monitoring redis with god - monitoring conditions

Im trying to monitor redis with god but god tries to restart it even though its already running. This is my .god script (ported from http://blog.thomasmango.com/post/636319317/resque-in-production): ...
1
vote
1answer
30 views

Getting info from the monitored process

I am using god to monitor my delayed jobs. currently I suffer from exceeded memory consumption from time to time, I've set god to restart jobs exceeding 100MB. my question is: is there a way to get ...
1
vote
1answer
363 views

RVM wrapper for God: ERROR: Binary 'god' not found

I'm trying to set up an RVM wrapper for God, but I'm having trouble getting it to work correctly. God is in my path, but it claims it can't find the binary. Did I misconfigure something? ...
1
vote
2answers
529 views

Using god with RVM

I am using RVM and wish to use god. I have it working on my local machine which has a very similar set up to my remote server (RVM, ruby 1.9.1, rails 3.0.3.) On my local machine I did: rvm wrapper ...
1
vote
1answer
302 views

Emails notifications are not sent from the God gem

I use the God gem to monitor my delayed_job processes, so far the gem is doing its job as it should but from some reason I can't get him to send email notifications (i use google apps). Here are my ...
1
vote
2answers
313 views

Will defunct processes prevent proper running of other processes? [closed]

My mongrels were not responding, and neither god restart nor cluster restart made a big difference. I dug a little deeper, than i realized that i had plenty of zombie processes. app 29607 27948 ...
0
votes
0answers
36 views

What am I doing wrong trying to monitor a Tweetstream daemon with God?

I'm trying to monitor a tweetstream daemon with God.. my god config is very simple: path = File.expand_path(File.dirname(__FILE__)) God.watch do |w| w.name = "tweet.rb" w.start = "bundle exec ...
0
votes
2answers
53 views

restart all god tasks

Here's the description for god's restart command: restart <task or group name>. The builtin init script does a kill, followed by a start. Is there really no built-in way to send a restart ...
0
votes
1answer
73 views

Ruby - How to control external process and monitor output from web app?

I have a web app which needs to be able to interact with an already running external process. I need to have the ability to capture STDOUT and redirect it to the browser (e.g. for monitoring by a ...
0
votes
1answer
78 views

load Rails environment for god monitor

I don't like hardcoding things that can be derived from the environment... and so in my god monitors I'd like to use ::Rails.root.to_s or ::Rails.env instead of ENV['RAILS_ENV'] || "production" ...
0
votes
1answer
174 views

Starting god through rails server / passenger?

Following situation: I have a server and some rake tasks which should run the whole time, f.e.: # email_sender.rake (except only) while true fetch all mail entries.each do |mail| mail.deliver ...
0
votes
0answers
196 views

god problem while running delayed_job workers

I am seeing a wierd problem with God while setting it up to monitor a rake task for delayed_job workers. God runs the rake task and creates the pid file but still thinks that the process is not ...
0
votes
1answer
142 views

Operation not permitted when trying to run god on RHEL5

When i am trying to start god on RHEL5 box, am getting the following error. I have also installed libevent and libevent-devel packages, but the error persists. Does any one have any idea? I patched ...
0
votes
1answer
70 views

Monitoring several delayed jobs using god

So far I've been monitoring a single delayed job using god and its been working great. I want to start monitoring several delayed jobs, how can I pass a parameter when stating god that will indicate ...
0
votes
2answers
256 views

Using god monitoring tool to monitor memcache

I am trying to monitor memcached using god monitoring tool. Here is my memcached.god file: God.watch do |w| w.name = "memcached" w.interval = 30.seconds # default w.start = ...
0
votes
2answers
545 views

Kill hung unicorn worker processes?

I am currently running a large rails application on a virtual server. My setup uses Unicorn to serve the Rails App with nginx as the proxy server in front. Occasionally I get notifications that My ...
0
votes
1answer
81 views

undefined method `defaults' for God::Contacts::Email:Class

I've installed god using: sudo apt-get install god because after installing the gem god command was still not recognized. now when i rub god i get: undefined method `defaults' for ...
0
votes
0answers
175 views

god: command not found

I've installed the god gem on my ubuntu 10.10 server, yet when I run god I get: -bash: god: command not found, any ideas?
0
votes
2answers
397 views

Starting Node with God with sudo

I need to start a Node.js server as the root user (using sudo) with a start param that looks like: w.start = "sudo node #{KTHXBYE_NODE_ROOT}/poll.js" As I am using Socket.IO and need the use of ...
0
votes
1answer
636 views

Resque Runtime Error at /workers: wrong number of arguments for 'exists' command

I'm having a runtime errror when i'm looking at the "workers" tab on resque-web (localhost). Everything else works. Edit: when this error occurs, i also have some (3 or 4) unknown workers 'not ...
0
votes
1answer
776 views

Cannot start workling_starling_client in rails production environment

I was using god to start and monitor my starling and workling daemons. Works awesome on development machine but "workling_starling_client" refuses to start on my production machine.