aboutsummaryrefslogtreecommitdiffstats
path: root/web/nms.gathering.org/ping.pl
diff options
context:
space:
mode:
authorKristian Lyngstol <kly@kly.no>2016-03-04 17:47:56 +0000
committerKristian Lyngstol <kly@kly.no>2016-03-04 17:47:56 +0000
commitaafd5a80db7b5ee27d1c432a4db93da48fbecb8a (patch)
tree3235337d8488228ea54a5c9dd6a1b6b67474aaa2 /web/nms.gathering.org/ping.pl
parent289a855db874aefa4ae90f0029555ada4383fbbc (diff)
nms: Rename API end points and separate public/private
Diffstat (limited to 'web/nms.gathering.org/ping.pl')
-rwxr-xr-xweb/nms.gathering.org/ping.pl25
1 files changed, 0 insertions, 25 deletions
diff --git a/web/nms.gathering.org/ping.pl b/web/nms.gathering.org/ping.pl
deleted file mode 100755
index dbdb82a..0000000
--- a/web/nms.gathering.org/ping.pl
+++ /dev/null
@@ -1,25 +0,0 @@
-#! /usr/bin/perl
-use lib '../../include';
-use nms::web;
-
-my $q = $nms::web::dbh->prepare("SELECT DISTINCT ON (sysname) time,sysname, latency_ms FROM ping NATURAL JOIN switches WHERE time in (select max(time) from ping where " . $nms::web::when . " group by switch)");
-$q->execute();
-while (my $ref = $q->fetchrow_hashref()) {
- $nms::web::json{'switches'}{$ref->{'sysname'}}{'latency'} = $ref->{'latency_ms'};
-}
-
-my $qs = $nms::web::dbh->prepare("SELECT DISTINCT ON (switch) switch, latency_ms FROM ping_secondary_ip WHERE " . $nms::web::when . " ORDER BY switch, time DESC;");
-$qs->execute();
-while (my $ref = $qs->fetchrow_hashref()) {
- $nms::web::json{'switches'}{$ref->{'switch'}}{'latency_secondary'} = $ref->{'latency_ms'};
-}
-
-my $lq = $nms::web::dbh->prepare("SELECT DISTINCT ON (linknet) linknet, latency1_ms, latency2_ms FROM linknet_ping WHERE ". $nms::web::when . " ORDER BY linknet, time DESC;");
-$lq->execute();
-while (my $ref = $lq->fetchrow_hashref()) {
- $nms::web::json{'linknets'}{$ref->{'linknet'}} = [ $ref->{'latency1_ms'}, $ref->{'latency2_ms'} ];
-}
-
-$q->execute();
-
-finalize_output();