Response from support:
"Any VirtualHost entries that have the following
BytesLog /usr/local/apache/domlogs/www.domain.com-bytes_log
Should be
BytesLog /usr/local/apache/domlogs/domain.com-bytes-log
You can run this command to fix this for httpd.conf
replace "BytesLog /usr/local/apache/domlogs/www." "BytesLog /usr/local/apache/domlogs/" -- /usr/local/apache/conf/httpd.conf
Then restart Apache.
You will then need to combine the domlogs files in /usr/local/apache/domlogs using this command
for i in $(ls
www.*bytes_log); do cat $i >> ${i##www.}; done
That will take a minute or two to complete depending on how may bytes_log files and the size of them.
Then run /scripts/runstatsonce
Thats it, problem will be resolved and should not be an issue again."
You might want to check first if you're affected by the same problem.
Basically there shouldn't be any entries which begin with:
"BytesLog /usr/local/apache/domlogs/www."