Files
FTL/FTLtest.sh
T
2017-03-12 11:02:20 +01:00

42 lines
1.0 KiB
Bash
Executable File

#!/usr/bin/env bash
# Pi-hole: A black hole for Internet advertisements
# (c) 2017 Pi-hole, LLC (https://pi-hole.net)
# Network-wide ad blocking via your own hardware.
#
# Simple speed test bench for FTL
#
# This file is copyright under the latest version of the EUPL.
# Please see LICENSE file for your rights under this license.
function GetFTLData {
# Open connection to FTL
exec 3<>/dev/tcp/localhost/"$(cat /var/run/pihole-FTL.port)"
# Test if connection is open
if { true >&3; } 2> /dev/null; then
# Send command to FTL
echo -e ">$1" >&3
echo -e ">quit" >&3
# Read all input
if [ "$1" == "stats" ]; then
cat <&3
else
cat <&3 &> /dev/null
fi
# Close connection
exec 3>&-
exec 3<&-
fi
}
echo "Getting statistics data (output to stdout)"
time GetFTLData "stats"
echo "Getting over time data (output to /dev/null)"
time GetFTLData "overTime"
echo "Getting all queries (output to /dev/null)"
time GetFTLData "getallqueries"