mirror of
https://github.com/pi-hole/pi-hole.git
synced 2025-01-12 06:54:53 +00:00
Include pihole-FTL.log in debug report
This commit is contained in:
parent
3473ebc0fe
commit
30dcf6ff47
1 changed files with 13 additions and 0 deletions
|
@ -27,6 +27,7 @@ PIHOLELOG="/var/log/pihole.log"
|
||||||
PIHOLEGITDIR="/etc/.pihole/"
|
PIHOLEGITDIR="/etc/.pihole/"
|
||||||
ADMINGITDIR="/var/www/html/admin/"
|
ADMINGITDIR="/var/www/html/admin/"
|
||||||
WHITELISTMATCHES="/tmp/whitelistmatches.list"
|
WHITELISTMATCHES="/tmp/whitelistmatches.list"
|
||||||
|
readonly FTLLOG="/var/log/pihole-FTL.log"
|
||||||
|
|
||||||
TIMEOUT=60
|
TIMEOUT=60
|
||||||
# Header info and introduction
|
# Header info and introduction
|
||||||
|
@ -523,6 +524,18 @@ header_write "Analyzing pihole.log"
|
||||||
&& log_write "${PIHOLELOG} is ${pihole_size}." \
|
&& log_write "${PIHOLELOG} is ${pihole_size}." \
|
||||||
|| log_echo "Warning: No pihole.log file found!"
|
|| log_echo "Warning: No pihole.log file found!"
|
||||||
|
|
||||||
|
header_write "Analyzing pihole-FTL.log"
|
||||||
|
|
||||||
|
FTL_length=$(grep -c ^ "${FTLLOG}") \
|
||||||
|
&& log_write "${FTLLOG} is ${FTL_length} lines long." \
|
||||||
|
|| log_echo "Warning: No pihole-FTL.log file found!"
|
||||||
|
|
||||||
|
FTL_size=$(du -h "${FTLLOG}" | awk '{ print $1 }') \
|
||||||
|
&& log_write "${FTLLOG} is ${FTL_size}." \
|
||||||
|
|| log_echo "Warning: No pihole-FTL.log file found!"
|
||||||
|
|
||||||
|
tail -n50 "${FTLLOG}" >&3
|
||||||
|
|
||||||
trap finalWork EXIT
|
trap finalWork EXIT
|
||||||
|
|
||||||
### Method calls for additional logging ###
|
### Method calls for additional logging ###
|
||||||
|
|
Loading…
Reference in a new issue