voice notification via telephone (vgetty, asterisk, etc.) ?

VINAY_SHARMA at advanex.co.jp VINAY_SHARMA at advanex.co.jp
Tue Oct 11 09:50:31 CEST 2005


Hi List,

             I want to enable 3-D Status Map.now when i click on 3D Status
map.one file status.swrl will asking to save.

how can i see 3D status map??


Many Thanks to all.
                     
                     
                     





Thanks & regards
**************************************
Vinay Sharma
Information Systems and Solutions-Associates
Advanex Inc (www.advanex.co.jp)
Fon   : 813-3822-5863
Fax         : 813-5815-7881
Email       : vinay_sharma at advanex.co.jp


                                                                                                                                                   
                      Christophe SUIRE                                                                                                             
                      <christophe.suire at adelux.fr>         宛先:     Adam Tworkowski <atworkowski at masterfile.com>                                  
                      送信者:                              cc:       nagios-users at lists.sourceforge.net                                            
                      nagios-users-admin at lists.sour        件名:     Re: [Nagios-users] voice notification via telephone (vgetty, asterisk, etc.)  
                      ceforge.net                           ?                                                                                      
                                                                                                                                                   
                                                                                                                                                   
                      2005/10/07 02:23                                                                                                             
                                                                                                                                                   
                                                                                                                                                   




Hi,

I have done it for a customer ..
In fact after some test with text to voice utility (problems with
names of servers), we record some "wav" files, like "the server" -
"is down" - "name of a server".
I use a tool to convert wav files to modem voice files : wavtopvf
When i have to send a notification i group the good pvf files to make
a unique file and convert il to rmd
I convert this file to rmd file :
cat /home/nagios/wav/file1.pvf /home/nagios/wav/file2.pvf  2>/dev/
null | pvfspeed -s 7200 | pvfamp -A 3 | pvftormd Rockwell 2 > /tmp/
$PID-temp.rmd

Then with mgetty-voice installed and configured, you can use the
script callme.pl to send the file.
Bye.

--
Christophe Suire
<christophe.suire at adelux.fr>


#!/usr/bin/perl -w
#
# $Id: callme.pl,v 1.2 1999/01/15 14:30:44 kas Exp $
#
# This script dials a given number and then re-plays the message.
# Use "vm shell -S /usr/bin/perl callme.pl number message.rmd"
# for calling the "number" and playing the "message.rmd".
#
# Copyright (c) 1998 Jan "Yenya" Kasprzak <kas at fi.muni.cz>. All rights
# reserved. This package is free software; you can redistribute it
and/or
# modify it under the same terms as Perl itself.
#
use Modem::Vgetty;

my $v = new Modem::Vgetty;

die "Usage: callme.pl number message.rmd" if $#ARGV != 1;
$v->device('DIALUP_LINE');
$v->add_handler('BUSY_TONE', 'finish',
         sub { $v->stop; exit 0; });
$v->enable_events;
$v->dial($ARGV[0]);
$v->waitfor('READY');
$v->play_and_wait($ARGV[1]);
1;


Le 6 oct. 05 à 18:51, Adam Tworkowski a écrit :


> Hi,
>
> I have searched various Nagios lists (-users, -devel) with the aim of
> finding out if anyone has successfully implemented Nagios
> notifications
> via voice synthesis to a land- or cell-based telephone call.
>
> There have been various references to topic in the last year but I
> cannot find anything that is concrete (links are dead, or threads end
> and presumably turn into private conversations elsewhere.)
>
> To provide further clarity, I am hoping to use a PCI voice modem (real
> controller,not softmodem) and have selected critical alerts be
> "forwarded" to a predefined telephone number and play a message like
> "Nagios is reporting the server X is not reachable".
>
> Does anyone have any thoughts on the matter or useful references?
>
> Thanks in advance.
>
> -Adam
>
>
>
>
>
>
> -------------------------------------------------------
> This SF.Net email is sponsored by:
> Power Architecture Resource Center: Free content, downloads,
> discussions,
> and more. http://solutions.newsforge.com/ibmarch.tmpl
> _______________________________________________
> Nagios-users mailing list
> Nagios-users at lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/nagios-users
> ::: Please include Nagios version, plugin version (-v) and OS when
> reporting any issue.
> ::: Messages without supporting info will risk being sent to /dev/null
>
>
>




-------------------------------------------------------
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
_______________________________________________
Nagios-users mailing list
Nagios-users at lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when
reporting any issue.
::: Messages without supporting info will risk being sent to /dev/null





More information about the Users mailing list