Mater's back from the shop.
Dear Cruisers, Thanks for an awesome cruise this year! We outdid ourselves with 20 cars this year compared to 8 last year. Please mark your calender for the second Saturday in June, 2012, and plan on joining us again. I am still going through all of the photo's we took. If you have some noteworthy shots you'd like to share please forward them so I can share them with the group. I plan on sending an album out by next weekend. A special THANK YOU goes out to the following sponsors for helping to make this event fun for all, opening up your parking lots and businesses and for filling us up on coffee and donuts: GM Sport Salvage Kassabian Motors A big HUGE THANK YOU to the car show coordinators and the Kiwanis Club of Modesto for allowing us to park our precious Trans Ams in a secure area! We all really appreciate that and your event was outstanding as usual!!!
(AKA Jose)
|
I was recently trying to do some tricky start and stop commands with Monit http://mmonit.com/monit/. Unfortunately while Monit itself can log to syslog, it doesn't output anything from attempts to start and stop the applications.
The stripped down environment that Monit spawns can be problematic and getting it to cough up whats wrong can be frustrating.
Based off of an answer to a similar question on stack overflow http://stackoverflow.com/questions/3356476/debugging-monit by billitch I think I came up with a good way to keep tabs on whats happening inside those Monit start and stop commands. A wrapper script pipes both standard output and error to syslog.
I created two shell scripts in /etc/monit, one for full debugging, and one for minimal extra output and ongoing use just in case a problem crops up, you can check your syslog and see what bad thing went down.
My original scripts also preserved the exit code of the command under test but apparently Monit doesn't give a whit about what the command exited as; so I've presented the simpler script here.
/etc/monit/modebug
#!/bin/sh { echo "MONIT-WRAPPER date" date echo "MONIT-WRAPPER env" env echo "MONIT-WRAPPER $@" $@ R=$? echo "MONIT-WRAPPER exit code $R" } 2>&1 | logger
/etc/monit/morun
#!/bin/sh { echo "MONIT-WRAPPER $@" $@ R=$? echo "MONIT-WRAPPER exit code $R" } 2>&1 | logger
This is an example Monit script, showing execution of both scripts.
/etc/monit/conf.d/dk-filter.monit
check process dk-filter with pidfile /var/run/dk-filter/dk-filter.pid group mail start program = "/etc/monit/modebug /etc/init.d/dk-filter start" stop program = "/etc/monit/morun /etc/init.d/dk-filter stop" if 5 restarts within 5 cycles then timeout if failed unixsocket /var/run/dk-filter/dk-filter.sock then restarter.sock then restart




The 1957 Chevy 6100 Wrecker is home. Thanks to Ray, and R. Lance and Sons Towing. http://rlanceandsons.com/






