Sponsor: VoiceMeUp - Corporate & Wholesale VoIP Services

VoIP Mailing List Archives
Mailing list archives for the VoIP community
 SearchSearch 

[Freeswitch-users] [ANNOUNCE]: sipnagios, a Nagios Plugin to check Call Quality in SIP VoIP (compatible with checkmk, et


 
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> freeSWITCH Users
View previous topic :: View next topic  
Author Message
gmaruzz at gmail.com
Guest





PostPosted: Wed Apr 21, 2021 5:21 am    Post subject: [Freeswitch-users] [ANNOUNCE]: sipnagios, a Nagios Plugin to Reply with quote

Hello fellow VoIPers and RTCers,

on GitHub there is an early release of sipnagios, opensource.

check it out: https://github.com/gmaruzz/sipnagios

sipnagios is a Nagios Plugin to check Call Quality in SIP VoIP (compatible with checkmk, etc)

sipnagios implements the Nagios plugin API for monitoring and performance data.sipnagios.c is a modification of the original siprtp.c sample in pjproject distribution. Supposedly, it works on Linux, Windows, and anywhere you can compile pjproject on.It makes a call, checks all the various resulting values (mos, rtt, pdd, tta, jitter, packet loss, bytes and packets transferred, and so on). It verifies these values are included into acceptable, warning, or critical ranges.If the call has gone well, sipnagios print performance data for Nagios graphs, and returns 0.If the call fails, or if its measured values are not inside acceptable ranges, it exits with Nagios conventional WARNING or CRITICAL values.

mos calculation is scraped from Julien Chavanton work (VoIP Patrol, on GitHub too) I can't even understand Smile (merci Julien!)

Enjoy!

-giovanni

--
Sincerely,

Giovanni Maruzzelli
OpenTelecom.IT
cell: +39 347 266 56 18
Back to top
social at bohboh.info
Guest





PostPosted: Wed Apr 21, 2021 2:10 pm    Post subject: [Freeswitch-users] [ANNOUNCE]: sipnagios, a Nagios Plugin to Reply with quote

I'm testing the plugin on Nagios but no output...
/usr/src/pjproject-2.11/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/sipnagios -d 60 --local-port=5060 --ip-addr=PBXIP --local-siprealm=asterisk --local-user=100 --local-password=password [url=sip:0749941093@acme.cloudpbx.opentelecom.it:5030]sip:0749941093@acme.cloudpbx.opentelecom.it:5030[/url]
Any hint?
Quote:
---
I'm SoCIaL, MayBe
El 21/04/2021 a las 4:40 a. m., Giovanni Maruzzelli escribió:

Quote:
Hello fellow VoIPers and RTCers,

on GitHub there is an early release of sipnagios, opensource.

check it out: https://github.com/gmaruzz/sipnagios

sipnagios is a Nagios Plugin to check Call Quality in SIP VoIP (compatible with checkmk, etc)

sipnagios implements the Nagios plugin API for monitoring and performance data.sipnagios.c is a modification of the original siprtp.c sample in pjproject distribution. Supposedly, it works on Linux, Windows, and anywhere you can compile pjproject on.It makes a call, checks all the various resulting values (mos, rtt, pdd, tta, jitter, packet loss, bytes and packets transferred, and so on). It verifies these values are included into acceptable, warning, or critical ranges.If the call has gone well, sipnagios print performance data for Nagios graphs, and returns 0.If the call fails, or if its measured values are not inside acceptable ranges, it exits with Nagios conventional WARNING or CRITICAL values.

mos calculation is scraped from Julien Chavanton work (VoIP Patrol, on GitHub too) I can't even understand Smile (merci Julien!)

Enjoy!

-giovanni

--
Sincerely,

Giovanni Maruzzelli
OpenTelecom.IT
cell: +39 347 266 56 18




Quote:
_________________________________________________________________________

The FreeSWITCH project is sponsored by SignalWire https://signalwire.com
Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services.
Build your next product on our scalable cloud platform.

Join our online community to chat in real time https://signalwire.community

Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com

Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com

FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
https://freeswitch.com
Back to top
gmaruzz at gmail.com
Guest





PostPosted: Thu Apr 22, 2021 2:40 am    Post subject: [Freeswitch-users] [ANNOUNCE]: sipnagios, a Nagios Plugin to Reply with quote

On Wed, Apr 21, 2021 at 8:38 PM Social Boh <social@bohboh.info (social@bohboh.info)> wrote:

Quote:

I'm testing the plugin on Nagios but no output...
/usr/src/pjproject-2.11/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/sipnagios -d 60 --local-port=5060 --ip-addr=PBXIP --local-siprealm=asterisk --local-user=100 --local-password=password sip:0749941093@acme.cloudpbx.opentelecom.it:5030



Execute it from the command line, and see what it prints. If needed, set logging options to higher values.


local-port is the port you want to use to go out from sipnagios (the udp socket sipnagios creates)
ip-addr is the local ip address sipnagios uses to create the udp socket, MUST be the ip address of the machine sipnagios is running on (eg: 192.168.1.23)
local-siprealm is the sip domain sipnagios will use to authenticate the invite on the remote sip server
local user is the auth and login user on the remote sip server
password is its password
the last argument is the full sip uri sipnagios will send the invite to, and is not for sure the one you used. MUST be a sip uri that is reachable by the remote sip server

For any other problem, please open a github issue, so we don't squat this mailing list Smile


Have a nice day,


-giovanni











 
Quote:

Any hint?
Quote:
---
I'm SoCIaL, MayBe
El 21/04/2021 a las 4:40 a. m., Giovanni Maruzzelli escribió:

Quote:
Hello fellow VoIPers and RTCers,

on GitHub there is an early release of sipnagios, opensource.

check it out: https://github.com/gmaruzz/sipnagios

sipnagios is a Nagios Plugin to check Call Quality in SIP VoIP (compatible with checkmk, etc)

sipnagios implements the Nagios plugin API for monitoring and performance data.sipnagios.c is a modification of the original siprtp.c sample in pjproject distribution. Supposedly, it works on Linux, Windows, and anywhere you can compile pjproject on.It makes a call, checks all the various resulting values (mos, rtt, pdd, tta, jitter, packet loss, bytes and packets transferred, and so on). It verifies these values are included into acceptable, warning, or critical ranges.If the call has gone well, sipnagios print performance data for Nagios graphs, and returns 0.If the call fails, or if its measured values are not inside acceptable ranges, it exits with Nagios conventional WARNING or CRITICAL values.

mos calculation is scraped from Julien Chavanton work (VoIP Patrol, on GitHub too) I can't even understand Smile (merci Julien!)

Enjoy!

-giovanni

--
Sincerely,

Giovanni Maruzzelli
OpenTelecom.IT
cell: +39 347 266 56 18




Quote:
_________________________________________________________________________

The FreeSWITCH project is sponsored by SignalWire https://signalwire.com
Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services.
Build your next product on our scalable cloud platform.

Join our online community to chat in real time https://signalwire.community

Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com

Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com

FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
https://freeswitch.com




--
Sincerely,

Giovanni Maruzzelli
OpenTelecom.IT
cell: +39 347 266 56 18
Back to top
Display posts from previous:   
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> freeSWITCH Users All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group

VoiceMeUp - Corporate & Wholesale VoIP Services