2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00
contrib-munin/plugins/network/tor/tor-connections
Diego Elio Pettenò 0a1524f27f More housecleaning.
Collapse some categories; remove duplicates; move plugins in where
they belong, remove files that are not really plugins at all.
2012-08-06 21:55:44 -07:00

120 lines
2.6 KiB
PHP
Executable File

#!/usr/bin/php
<?php
$cookiepath = "/etc/tor/control_auth_cookie";
$controlport = 9051;
// Nothing to change down here...
$cmd = $argv['1'];
$cookie = file_get_contents($cookiepath);
if ($cmd == "config") {
print "graph_title Connections\n";
print "graph_args -l 0 --base 1000\n";
print "graph_vlabel connections\n";
print "graph_category Tor\n";
print "graph_info This graph shows the number of Tor OR connections.\n";
print "graph_period second\n";
print "new.label new\n";
print "new.type GAUGE\n";
print "new.max 50000\n";
print "new.min 0\n";
print "launched.label launched\n";
print "launched.type GAUGE\n";
print "launched.max 50000\n";
print "launched.min 0\n";
print "connected.label connected\n";
print "connected.type GAUGE\n";
print "connected.max 50000\n";
print "connected.min 0\n";
print "failed.label failed\n";
print "failed.type GAUGE\n";
print "failed.max 50000\n";
print "failed.min 0\n";
print "closed.label closed\n";
print "closed.type GAUGE\n";
print "closed.max 50000\n";
print "closed.min 0\n";
exit;
} elseif ($cmd == "autoconf") {
$socket = fsockopen("tcp://127.0.0.1", $controlport);
fputs($socket, "AUTHENTICATE \"".$cookie."\"\n");
$buffer = fgets($socket, 1024);
if (ereg("250", $buffer)) echo "Yes";
else echo "No (".trim($buffer).")";
fclose($socket);
exit;
}
$socket = fsockopen("tcp://127.0.0.1", $controlport);
fputs($socket, "AUTHENTICATE \"".$cookie."\"\n");
$buffer .= fgets($socket, 4096);
if (!ereg("250", $buffer)) {
echo "Unable to connect to Tor ControlPort (".$buffer.")";
fclose($socket);
exit;
} else {
$buffer = fputs($socket, "GETINFO orconn-status\n");
$buffer = fgets($socket, 1024);
$buffer = fgets($socket, 1024);
while (strlen($buffer) > 3) {
$bits = explode(" ", $buffer);
$connections[trim($bits['1'])]++;
$buffer = fgets($socket, 1024);
}
if (!empty($connections['NEW'])) echo "new.value ".$connections['NEW']."\n";
else echo "new.value 0\n";
if (!empty($connections['LAUNCHED'])) echo "launched.value ".$connections['LAUNCHED']."\n";
else echo "launched.value 0\n";
if (!empty($connections['CONNECTED'])) echo "connected.value ".$connections['CONNECTED']."\n";
else echo "connected.value 0\n";
if (!empty($connections['FAILED'])) echo "failed.value ".$connections['FAILED']."\n";
else echo "failed.value 0\n";
if (!empty($connections['CLOSED'])) echo "closed.value ".$connections['CLOSED']."\n";
else echo "closed.value 0\n";
}
fclose($socket);
?>