vote up 0 vote down star

Is there any way to tell Monit to send XMPP notifications as well as emails on alerts?

flag

62% accept rate

1 Answer

vote up 1 vote down

I don't know Monit, but if you can specify an arbitrary command, you could setup a python script that sends a message via DBus to either Pidgin or Finch. Pidgin/Finch should already be running and be connected.

Here is an example script:

#!/usr/bin/env python

import dbus, gobject, dbus.glib
import sys

bus = dbus.SessionBus()
obj = bus.get_object("im.pidgin.purple.PurpleService", "/im/pidgin/purple/PurpleObject")
purple = dbus.Interface(obj, "im.pidgin.purple.PurpleInterface")

account = purple.PurpleAccountsFindAny('sender@gmail.com/Home', 'prpl-jabber')
conv = purple.PurpleConversationNew(1, account, 'recipient@gmail.com')
im = purple.PurpleConvIm(conv)
purple.PurpleConvImSend(im, sys.argv[1])
link|flag
Thank you. Yes, that's one possibility. I could use one of my Ruby scripts for this purpose. – Milan Novota Sep 30 at 10:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.