We used Mix of Nagios, Zabbix, OpenNMS. Best one for this was Zabbix.<br><br><div class="gmail_quote">On Tue, Oct 25, 2011 at 6:49 PM, Ishfaq Malik <span dir="ltr"><<a href="mailto:ish@pack-net.co.uk">ish@pack-net.co.uk</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Which monitoring tool were you using?<br>
<div><div></div><div class="h5"><br>
On Tue, 2011-10-25 at 18:46 +0500, Sammy Govind wrote:<br>
> I wrote my own shell scripts to collect "core show calls" value from<br>
> asterisk and then push the filtered value to an opensource monitoring<br>
> tool. That worked perfectly well.<br>
><br>
><br>
> #!/usr/bin/perl -w<br>
> use strict;<br>
> open(LINE, 'asterisk -rx "core show channels"|');<br>
> my ($chans, $calls, $line)=(0,0,undef);<br>
> while ($line = <LINE>)<br>
> {<br>
> $calls = $1 if ($line =~ /^(\d+) active call/);<br>
> }<br>
> close(LINE);<br>
> printf $calls;<br>
><br>
><br>
><br>
> On Tue, Oct 25, 2011 at 6:40 PM, Danny Nicholas <<a href="mailto:danny@debsinc.com">danny@debsinc.com</a>><br>
> wrote:<br>
> The "Simplest" method of seeing the number of concurrent calls<br>
> is "service<br>
> asterisk status". If I understand question two, asterisk -rx<br>
> " core show<br>
> channels verbose" is probably your best bet.<br>
><br>
> -----Original Message-----<br>
> From: <a href="mailto:asterisk-users-bounces@lists.digium.com">asterisk-users-bounces@lists.digium.com</a><br>
> [mailto:<a href="mailto:asterisk-users-bounces@lists.digium.com">asterisk-users-bounces@lists.digium.com</a>] On Behalf Of<br>
> Ishfaq Malik<br>
> Sent: Tuesday, October 25, 2011 8:29 AM<br>
> To: Asterisk Users<br>
> Subject: [asterisk-users] Concurrent call monitoring<br>
><br>
><br>
> Hi<br>
><br>
> What are people using to monitor the concurrent number of<br>
> calls at any given<br>
> time?<br>
><br>
> Also, is there any good way of monitoring concurrent inbound<br>
> and outbound<br>
> calls so that we can see the 2 different numbers?<br>
><br>
> Thanks in advance<br>
><br>
> Ish<br>
> --<br>
> Ishfaq Malik<br>
> Software Developer<br>
> PackNet Ltd<br>
><br>
> Office: 0161 660 3062<br>
><br>
><br>
> --<br>
> _____________________________________________________________________<br>
> -- Bandwidth and Colocation Provided by<br>
> <a href="http://www.api-digital.com" target="_blank">http://www.api-digital.com</a> -- New to<br>
> Asterisk? Join us for a live introductory webinar every Thurs:<br>
> <a href="http://www.asterisk.org/hello" target="_blank">http://www.asterisk.org/hello</a><br>
><br>
> asterisk-users mailing list<br>
> To UNSUBSCRIBE or update options visit:<br>
> <a href="http://lists.digium.com/mailman/listinfo/asterisk-users" target="_blank">http://lists.digium.com/mailman/listinfo/asterisk-users</a><br>
><br>
><br>
> --<br>
> _____________________________________________________________________<br>
> -- Bandwidth and Colocation Provided by<br>
> <a href="http://www.api-digital.com" target="_blank">http://www.api-digital.com</a> --<br>
> New to Asterisk? Join us for a live introductory webinar every<br>
> Thurs:<br>
> <a href="http://www.asterisk.org/hello" target="_blank">http://www.asterisk.org/hello</a><br>
><br>
> asterisk-users mailing list<br>
> To UNSUBSCRIBE or update options visit:<br>
> <a href="http://lists.digium.com/mailman/listinfo/asterisk-users" target="_blank">http://lists.digium.com/mailman/listinfo/asterisk-users</a><br>
><br>
><br>
><br>
> --<br>
> _____________________________________________________________________<br>
> -- Bandwidth and Colocation Provided by <a href="http://www.api-digital.com" target="_blank">http://www.api-digital.com</a> --<br>
> New to Asterisk? Join us for a live introductory webinar every Thurs:<br>
> <a href="http://www.asterisk.org/hello" target="_blank">http://www.asterisk.org/hello</a><br>
><br>
> asterisk-users mailing list<br>
> To UNSUBSCRIBE or update options visit:<br>
> <a href="http://lists.digium.com/mailman/listinfo/asterisk-users" target="_blank">http://lists.digium.com/mailman/listinfo/asterisk-users</a><br>
<br>
--<br>
Ishfaq Malik<br>
Software Developer<br>
PackNet Ltd<br>
<br>
Office: 0161 660 3062<br>
<br>
<br>
--<br>
_____________________________________________________________________<br>
-- Bandwidth and Colocation Provided by <a href="http://www.api-digital.com" target="_blank">http://www.api-digital.com</a> --<br>
New to Asterisk? Join us for a live introductory webinar every Thurs:<br>
<a href="http://www.asterisk.org/hello" target="_blank">http://www.asterisk.org/hello</a><br>
<br>
asterisk-users mailing list<br>
To UNSUBSCRIBE or update options visit:<br>
<a href="http://lists.digium.com/mailman/listinfo/asterisk-users" target="_blank">http://lists.digium.com/mailman/listinfo/asterisk-users</a><br>
</div></div></blockquote></div><br>