God is a Ruby process monitoring framework designed to keep processes up and running.

learn more… | top users | synonyms

0
votes
1answer
10 views

How to (or should I) monitor or ensure running of a monitoring software?

I'm writing a system/service monitoring software, and my primary goal is to make it as failsafe as possible. Right now, I have a binary script which starts the master process, which forks off ...
0
votes
1answer
13 views

Resque with God uses IO.popen

I am under rvm. I have god. It starts resque. Resque job opens an IO.popen to the local system program, sends it some text, gets some text back from the stream, analyses it a bit, closes the IO. So: ...
1
vote
0answers
58 views

Problems with god

So I have problems starting god reliably. I might need to restart multiple times before everything succeeds. OSX 10.6.8 Ruby 1.9.3-p236 god 0.13.2 I have a configuration file where I specify ...
0
votes
1answer
28 views

God configuration file to monitor existing processes?

I am monitoring my redis server using God (a Ruby gem). However, my existing server may already has an instance of redis up. How can I be sure it monitors the existing Redis server process that is ...
0
votes
0answers
20 views

How does God's flapping condition work?

I'm trying to configure God's flapping condition to avoid infinite restarts if a problem happens, but I can't seem to make it work. It's never detecting the flapping state. That's my God ...
0
votes
1answer
94 views

Correct way to monitor ruby background processes (like Resque) in production

I've been struggling with this for a while, What is the correct approach to start background processes like resque and resque scheduler? Is using God an overkill? Currently I'm trying to get God to ...
0
votes
0answers
78 views

God-Resque Process in Limbo

I'm currently using god to start 6 resque worker processes. Resque show's that they are started and working and everything is working. Occasionally a worker process drops out of recognition and ceases ...
0
votes
0answers
128 views

sidekiq true god.rb never runs my workers, where same command from terminal does?

Running god.rb to start and monitor Sidekiq this does not work. Below my god config for sidekiq. Running sidekiq -C /srv/books/current/config/sidekiq.yml manually from terminal on production does ...
1
vote
2answers
90 views

how can run rake resque:scheduler in daemon mode

I am using resque:scheduler gem in my rails 3 application. How can start rake resque:scheduler in daemon mode. and if you know then please let me know, How can I configure this task in GOD script? ...
0
votes
0answers
92 views

Using God monitor unicorn for rails but permission error

I am new to God. I am trying to using God to monitor unicorn process on which my rails application runs. Here's my God file: rails_env = ENV["RAILS_ENV"] APP_ROOT = '/home/deployer/deploy/myproject' ...
0
votes
0answers
44 views

failed to start a deamond process using god gem

I am getting this error when starting god like so my config/working.god file is like so : p ROOT = Dir.pwd#File.dirname(File.dirname(__FILE__)) p Dir.pwd def generic_monitoring(w, options = {}) ...
0
votes
1answer
57 views

How do you monitor a solr server with god, instead of respawning bundle sunspot-solr start

The issue is that the command I use to start sunspot, bundle exec sunspot-solr start, itself spawns a solr server, which is the actual process that needs to be monitored, not the original command. If ...
1
vote
0answers
131 views

God Gem Starts a Watch if I use w.keepalive but not if I use $god sidekiq start

I'm struggling with using Sidekiq alongside the God Gem. I would like to be able to start the sidekiq process manually, using $god start sidekiq, however this fails to start the process. I can only ...
1
vote
1answer
72 views

Set Process Start Sequence with God Gem

Is it possible to have God start two processes in sequence? I am using Sidekiq which relies on Redis. I would like to start up Redis, then start up Sidekiq, and I have two separate watches set up ...
1
vote
1answer
105 views

How to configure Ruby God to monitor > 1 process?

I am using the God gem to monitor my processes, and I already have setup a watch for 1 process in a file like this (named config.god) rails_env = ENV['RAILS_ENV'] || "development" rails_root = ...
0
votes
0answers
85 views

Monitoring several delayed jobs daemons with god

I'm running delayed_job (by collectiveidea) and use god to monitor it (version 2 - running on Rails 2.3). in the god configuration file, what changes do I need to make in order to raise more then 1 ...
2
votes
1answer
85 views

Resque does not find ffmpeg

I am using resque to queue some encoding jobs. I have workers that pick up these jobs and do some transcoding. The issue is system "mencoder .." works fine but system "ffmpeg .." throws not found and ...
0
votes
0answers
79 views

god.rb how to do multiple notifications?

With below test.god how could one do multiple notifications? Only 1 single notification seems to work. This send 1 prowl notification but how to add a mail notification to this? My example code: ...
23
votes
3answers
762 views

God starts too many processes

I have a god script that is supposed to keep an eye on two stalker processes. The problem is that after 24h it starts way too many processes. This is the god script. rails_root = ...
0
votes
2answers
222 views

how to make foreman start god

I have a Procfile like this: web: bundle exec unicorn -c config/unicorn.rb -E production god: god -c services.god but foreman start god doesn't start...it's just say this: 17:14:32 god.1 | ...
0
votes
0answers
132 views

Rails - Resque Workers - Check if queue is full

I have a problem, my workers sometimes freeze because their queue is full, I don't know why this happens. I have my workers doing tasks for my rails application. I use god to handle the workers. I ...
0
votes
1answer
291 views

ROR, Redis, Resque, God & Cron on Ubuntu Server - Boot

I have made several jobs that god takes care of in my ruby application. However when the server reboots the job stops. I want to avoid this so I've made this script on my server. It looks like this. ...
0
votes
1answer
39 views

What is the origin of System::Process.new?

Where is the origin of Process.new and where is it doccumented? I have looked in the Ruby docs at the process module and I cannot figure out how this is declared. The code I am trying to replicate is ...
2
votes
1answer
229 views

God (the ruby process manager) is constantly restarting my process

This is probably a fairly newbie fix so apologies in advance. I have a simple process that I want to control with god. The process at this stage is basically just loop do; sleep 1; end. The config ...
2
votes
0answers
131 views

god does not recognize that resque worker has been started

I have a problem runnig resque workers from god. Here is my god config num_workers = 9 queue = '*' current_path = "/u/apps/narg/current" God.pid_file_directory = ...
1
vote
1answer
198 views

one god for different rubies with rvm

I have two apps on my machine. Each app (server) has it's own gemset and works on a different ruby version. I will manage those apps with god which is installed in it's own gemset. My god config ...
1
vote
0answers
231 views

“god” not starting resque worker

I'm having some trouble getting the god gem up and running. I've essentially copied the config file from Github but it doesn't seem to be starting the resque worker properly. My config file looks like ...
0
votes
0answers
67 views

delayed_job still running but not processing jobs

I have a delayed_job process, monitored with god. It runs fine for a month or more but at some time will stop processing jobs without warning or log. The process remains running however. How do I ...
0
votes
1answer
106 views

Use ENV variables in god config file

I want to use environement varible in my god config file. I am using queue = ENV['ENCODE_QUEUE'] || "encoding_abc" and setting ENCODE_QUEUE using export ENCODE_QUEUE="enocding_xyz" in ...
0
votes
3answers
146 views

Auto restart rake task if it give exception

I have a rake task that must be always run. But sometimes this task can fail. And I need auto restart it? I think I need use God gem or maybe there are other ways to solve this problem?
1
vote
1answer
338 views

Use God with multiple applications and start them automatically after a reboot

I'm currently trying to monitor various processes/daemons of in total three Rails/Rack Applications using god. Monitoring works great, the problem is that i'm not able to configure god to autostart ...
0
votes
0answers
149 views

God.rb on Mac OS X

Has anybody been able to get God.rb running successfully on Mac OS X? I'm running Lion and after a little bit of struggling I thought I'd ask. The main issue I seemed to have was permissions - god was ...
1
vote
1answer
299 views

How do i monitor independed applications with god?

I'm currently looking into options for process monitoring of Rails/Ruby Projects and quite like god. But i cant really find anything on how to monitor multiple applications (for example 2 rails ...
1
vote
2answers
2k views

using god monitoring for sidekiq workers

I have been looking for the configuration on how to start sidekiq using the god monitoring system, below is the god file i use to start sidekiq rails_env = ENV['RAILS_ENV'] || "production" ...
0
votes
0answers
216 views

GODrb process monitor unable to load some config files

Trying to get GODrb process monitoring up and running in production but it fails to load some files which are there. Anyone an idea why I cannot load those files in ( they are committed and in the ...
1
vote
0answers
118 views

Getting god, resque and log4r to work well together

i'm using god to manage my resque workers. i'm also using log4r throughout my rails app, and resque jobs, until i setup god. How do i make god play nice with log4r on my resque workers? If I don't ...
9
votes
2answers
465 views

Using god only to kill

I serve my software using passenger. It spawns many ruby processes. Sometimes one of these rubies becomes bloated and I want it to die. I was hoping to use god to that intent. My idea was to monitor ...
2
votes
1answer
750 views

God resque start gives “The server is not available”

I'm having trouble figuring out how to get God to restart resque. I've got a Rails 3.2.2 stack on a Ubuntu 10.04.3 LTS Linode slice. Its running system Ruby 1.9.3-p194 (no RVM). There's a God ...
1
vote
2answers
335 views

Rails - God - LoadError

I've installed god to use to monitor and start/stop/restart my resque tasks. The problem I'm getting is that I can't load the god config files. It gives me this error: $god load config/resque.god ...
4
votes
0answers
579 views

god doesn't stop unicorn

I have this file rails_env = ENV['RAILS_ENV'] || 'development' rails_root = ENV['RAILS_ROOT'] || "/home/luiz/rails_dev/api" God.watch do |w| w.name = "unicorn" w.interval = 30.seconds # default ...
1
vote
0answers
244 views

Issues with god and init script

I am monitoring a thin server with god. If I run god from the command line as: god -c /path/to/config Then things work. If, however, I start god using an init script as: /etc/init.d/god start ...
2
votes
0answers
126 views

Custom “action” with God?

We actually use God in our development environment, as well as in production, simply because it makes managing unicorn/resque etc simpler. I've just scaled down our default unicorn config to a single ...
0
votes
2answers
168 views

rails service management in development? ( foreman does not start all services )

My foreman gem does not load all my services. This is my Procfile: search: redis-server search: bundle exec rake resque:start &&> log/resque_worker_queue.log search: bundle exec rackup ...
0
votes
1answer
217 views

God does not stop delayed_job worker

I need to monitor my delayed_job worker with god. It starts perfectly, but when i want to stop it using "sudo god stop dj" it says Sending 'stop' command The following watches were affected: dj-0 ...
2
votes
0answers
376 views

God - starting new process while existing process is still stopping

Using God (godrb.com) I'm trying to write a recipe that starts up a new process regardless of the status of an existing process when deploying an application. The existing process needs to have a long ...
0
votes
1answer
376 views

Managing multiple instances of Resque and Redis

I am trying to have God monitor two instances of Resque, one for production and one for staging. So I start two Redis instances on system boot: redis_6379 and redis_6380. Then I'm using Daemontools ...
0
votes
0answers
378 views

Rails 3.1 - Cannot start delayed_job in production through capistrano and/or god

I run delayed_job through god config as showed on https://github.com/blog/229-dj-god and it works fine on staging server. I am aware that the config above may be outdated, so I modified it to the ...
1
vote
1answer
1k views

Managing unicorn instances / rails deployment

my head hurts today! :) I need some help with rails deployment. I migrated from cherokee to nginx and well, I migrated my django apps easily. I just have to launch uwsgi to get a tcp socket and run ...
0
votes
0answers
298 views

After installing god gem, i get “command not found”

I installed the god gem using bundle install --path vendor/bundle in site5. After installing, i am unable to run god command. Running it gives "command not found". Running it like this gives me this ...
1
vote
0answers
289 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 ...

1 2