diff --git a/extern/pihole/pihole_ads_percentage b/extern/pihole/pihole_ads_percentage index 49f9b14..c302976 100644 --- a/extern/pihole/pihole_ads_percentage +++ b/extern/pihole/pihole_ads_percentage @@ -17,16 +17,16 @@ stats=$(echo $apicall | sed 's/[{}"]//g' | tr "," "\n") case $1 in config) - echo "graph_title Pihole today ads" + echo "graph_title Pihole blocked ads" echo "graph_vlabel %" echo "graph_category pihole" - echo "graph_info This graph shows the Pihole percentage of todays ads." + echo "graph_info This graph shows the Pihole percentage of blocked ads." for stat in $stats do uid=$(echo $stat | sed 's/:.*//') if [ $uid = "ads_percentage_today" ]; then - echo "$uid.label today ads %" + echo "$uid.label blocked ads" fi done