2007-04-21 17:38:10 +02:00
|
|
|
#!/usr/bin/perl
|
2018-08-02 02:03:42 +02:00
|
|
|
#
|
2007-04-21 17:38:10 +02:00
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; version 2 dated June,
|
|
|
|
# 1991.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
#
|
|
|
|
# If you modify this plugin please be kind and send a copy to mailto@cot.ath.cx
|
|
|
|
# Thanks
|
|
|
|
#
|
|
|
|
# This plugin counts the number of connected users on your teamspeak2 server.
|
|
|
|
# You have to configure the variables below.
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use Socket;
|
|
|
|
|
|
|
|
##################
|
|
|
|
# Config Section #
|
|
|
|
##################
|
|
|
|
|
|
|
|
# The Host where your teamspeak server is running on.
|
|
|
|
my $host = 'localhost';
|
|
|
|
# The tcp query port.
|
|
|
|
my $port = 51234;
|
|
|
|
# The udp ports of the servers you wish to monitor.
|
2014-12-05 00:37:42 +01:00
|
|
|
# Enter comma separated values. e.g. (8767, 8766, 8876)
|
2007-04-21 17:38:10 +02:00
|
|
|
my @uports = (8767);
|
|
|
|
|
|
|
|
#########################
|
|
|
|
# End of Config Section #
|
|
|
|
#########################
|
|
|
|
|
|
|
|
my $string = "server_currentusers";
|
|
|
|
|
|
|
|
if ( exists $ARGV[0] and $ARGV[0] eq "config" )
|
|
|
|
{
|
|
|
|
print "graph_title Teamspeak User\n";
|
|
|
|
print "graph_vlabel Connected Teamspeak Users\n";
|
2017-02-23 21:50:22 +01:00
|
|
|
print "graph_category voip\n";
|
2007-04-21 17:38:10 +02:00
|
|
|
#print "graph_args --base 1000 -l 0\n";
|
|
|
|
print "graph_info This graph shows the number of connected users on a teamspeak2 server\n";
|
|
|
|
foreach my $server (@uports)
|
|
|
|
{
|
|
|
|
print "$server.label Users on $server\n";
|
|
|
|
print "$server.type GAUGE\n";
|
|
|
|
#print "$server.draw AREA\n";
|
|
|
|
}
|
|
|
|
exit 0;
|
|
|
|
}
|
|
|
|
elsif ( exists $ARGV[0] and $ARGV[0] eq "autoconf" )
|
|
|
|
{
|
|
|
|
my $TSTCON = &tcpConnect($port, $host);
|
|
|
|
while(<$TSTCON>)
|
|
|
|
{
|
|
|
|
if ( $_ =~ /[TS]/ )
|
|
|
|
{
|
|
|
|
print "Yes\n";
|
|
|
|
exit 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-02 02:03:42 +02:00
|
|
|
else
|
2007-04-21 17:38:10 +02:00
|
|
|
{
|
|
|
|
foreach my $server (@uports)
|
|
|
|
{
|
|
|
|
my $FS = &tcpConnect($port, $host);
|
|
|
|
print $FS "si ".$server, "\n\n";
|
|
|
|
my $MASK = $string."=*";
|
|
|
|
|
2018-08-02 02:03:42 +02:00
|
|
|
while(<$FS>)
|
2007-04-21 17:38:10 +02:00
|
|
|
{
|
|
|
|
my $input_line = $_;
|
|
|
|
if ( $input_line =~ m/($MASK)/ )
|
|
|
|
{
|
|
|
|
$input_line =~ /(\d+)/;
|
|
|
|
print "$server.value $1\n";
|
|
|
|
close $FS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sub tcpConnect()
|
|
|
|
{
|
|
|
|
my $proto = getprotobyname('tcp');
|
|
|
|
my $port = shift;
|
|
|
|
my $host = shift;
|
|
|
|
|
|
|
|
socket(my $FS, PF_INET, SOCK_STREAM, $proto);
|
|
|
|
my $sin = sockaddr_in($port, inet_aton($host));
|
|
|
|
|
|
|
|
connect($FS, $sin) or die exit;
|
|
|
|
my $old_fh = select($FS); $| = 1; select($old_fh);
|
|
|
|
|
|
|
|
return($FS);
|
|
|
|
}
|