1
0
mirror of https://github.com/Yubico/yubikey-val.git synced 2025-01-20 10:52:15 +01:00
yubikey-val/ykval-munin-ksmlatency.php

55 lines
1.3 KiB
PHP
Raw Normal View History

2010-06-22 15:55:52 +00:00
#!/usr/bin/php
<?php
set_include_path(get_include_path() . PATH_SEPARATOR .
"/etc/ykval:/usr/share/ykval");
require_once 'ykval-config.php';
2010-11-15 10:48:52 +00:00
function url2shortname ($url) {
if (preg_match("/^[^\/]+\/\/([a-z0-9-]+)/", $url, $name)==0){
echo "Cannot match URL hostname: " . $url . "\n";
2010-06-22 15:55:52 +00:00
exit (1);
}
2010-11-15 10:48:52 +00:00
return $name[1];
2010-06-22 15:55:52 +00:00
}
2010-11-15 10:48:52 +00:00
2010-06-22 15:55:52 +00:00
$ksms = otp2ksmurls ("ccccccccfnkjtvvijktfrvvginedlbvudjhjnggndtck", 16);
2010-11-15 10:48:52 +00:00
$shortksms = array_map("url2shortname", $ksms);
2010-06-22 15:55:52 +00:00
2010-06-22 16:01:39 +00:00
if ($argc==2 && strcmp($argv[1], "autoconf") == 0) {
2010-06-22 15:59:25 +00:00
print "yes\n";
2010-06-22 16:01:39 +00:00
exit (0);
2010-06-22 15:59:25 +00:00
}
2010-06-22 16:01:39 +00:00
if ($argc==2 && strcmp($argv[1], "config") == 0) {
2010-06-22 15:55:52 +00:00
echo "multigraph yk_latency\n";
echo "graph_title KSM latency\n";
echo "graph_vlabel Average KSM Decrypt Latency (seconds)\n";
echo "graph_category ykval\n";
echo "graph_width 400\n";
foreach ($shortksms as $shortksm) {
echo "${shortksm}_avgwait.label ${shortksm}\n";
echo "${shortksm}_avgwait.type GAUGE\n";
echo "${shortksm}_avgwait.info Average wait time for KSM decrypt\n";
echo "${shortksm}_avgwait.min 0\n";
echo "${shortksm}_avgwait.draw LINE1\n";
}
2010-06-22 16:01:39 +00:00
exit (0);
2010-06-22 15:55:52 +00:00
}
2010-11-15 10:48:52 +00:00
echo "multigraph yk_latency\n";
2010-06-22 15:55:52 +00:00
foreach ($ksms as $ksm) {
2010-11-15 10:48:52 +00:00
$shortksm = url2shortname ($ksm);
2010-06-22 20:18:38 +00:00
$time = `curl --silent --write-out '%{time_total}' --max-time 3 '$ksm' -o /dev/null`;
2010-06-22 15:55:52 +00:00
echo "${shortksm}_avgwait.value $time\n";
}
2010-06-22 16:10:30 +00:00
#%# family=auto
#%# capabilities=autoconf
2010-06-22 16:11:57 +00:00
?>