i usually disable awstats analog and webalizer on cPanel/WHM because there’s much better alternatives out there, like Google Analytics, however if you’re doing it on a server that has been running them for a while now, the cached data remains, so here’s a script to clean that up:
#!/bin/bash -x
for i in $(ls /var/cpanel/users)
do
cd /home/${i}/tmp && rm -rf analog awstats webalizer
done