#!/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 /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"