
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Send messages to Slack via Monit.
Add this line to your application's Gemfile:
gem 'monit2slack'
And then execute:
$ bundle
Or install it yourself as:
$ gem install monit2slack
This gem provides a binary monit2slack
.
monit2slack --webhook 'https://hooks.slack.com/services/xxx/xxx/xxx' --host MyServer --service NginX --status error --text 'Process NginX is down'
If using rbenv
/usr/local/rbenv/shims/monit2slack --webhook 'https://hooks.slack.com/services/xxx/xxx/xxx' --host MyServer --service NginX --status error --text 'Process NginX is down'
If you prefer you can call if manually from a rb file.
#!/usr/bin/env ruby
require "monit2slack"
Monit2Slack::Post
In this case hostname
, service
and description
gets read from the environment variables that monit provides.
check process NginX
with pidfile /run/nginx.pid
start program = "/etc/init.d/nginx start" with timeout 30 seconds
stop program = "/etc/init.d/nginx stop" with timeout 30 seconds
if does not exist for 1 cycle
then exec "/usr/local/rbenv/shims/monit2slack --webhook 'https://hooks.slack.com/services/xxx/xxx/xxx' --status error'"
else if succeeded for 1 cycle then exec "/usr/local/rbenv/shims/monit2slack --webhook 'https://hooks.slack.com/services/xxx/xxx/xxx' --status ok"
if does not exist then restart
You control settings like hostname
, service
and description
.
check process NginX
with pidfile /run/nginx.pid
start program = "/etc/init.d/nginx start" with timeout 30 seconds
stop program = "/etc/init.d/nginx stop" with timeout 30 seconds
if does not exist for 1 cycle
then exec "/usr/local/rbenv/shims/monit2slack --webhook 'https://hooks.slack.com/services/xxx/xxx/xxx' --host MyServer --service NginX --status error --text 'Process NginX is down'"
else if succeeded for 1 cycle then exec "monit2slack --webhook 'https://hooks.slack.com/services/xxx/xxx/xxx' --host MyServer --service NginX --status ok --text 'Process NginX is up'"
if does not exist then restart
check filesystem rootfs with path /
if space usage > 80%
then exec "/usr/local/rbenv/shims/monit2slack --webhook 'https://hooks.slack.com/services/xx/xx/xx' --status error"
else if succeeded then exec "/usr/local/rbenv/shims/monit2slack --webhook 'https://hooks.slack.com/services/xx/xx/xx' --status ok"
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that monit2slack demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.