common log
clv - common log views
clv [file ...]
The clv utility reads each [file ...] in Common Log Format and prints only the views to standard output.
views are defined as GET requests to paths ending in / or .html that returned a 200 HTTP response status code.
If [file ...] is omitted, clv reads from standard input.
The clv utility exits 0 on success, and >0 if an error occurs.
Print all views from /var/www/logs/access.log:
$ clv /var/www/logs/access.log
awk(1) httpd(8) httpd.conf(5)
clu - common log uniques
clu [file ...]
The clu utility reads each [file ...] in Common Log Format and prints only the uniques to standard output.
uniques are defined as unique remote hosts that made at least one GET request to paths ending in / or .html that returned a 200 HTTP response status code.
If [file ...] is omitted, clu reads from standard input.
The clu utility exits 0 on success, and >0 if an error occurs.
Print all uniques from /var/www/logs/access.log:
$ clu /var/www/logs/access.log
awk(1) httpd(8) httpd.conf(5)
clp - common log pages
clp [file ...]
The clp utility reads each [file ...] in Common Log Format and prints a list of pages to standard output including the request count.
pages are defined as paths ending in / or .html to which GET requests have been made that returned a 200 HTTP response status code.
If [file ...] is omitted, clp reads from standard input.
The clp utility exits 0 on success, and >0 if an error occurs.
Print all pages and their respective request count from /var/www/logs/access.log:
$ clp /var/www/logs/access.log
awk(1) httpd(8) httpd.conf(5)
clvv - common log (virtual host) views
clvv [file ...]
The clvv utility reads each [file ...] in Common Log Format with Virtual Host and prints only the views to standard output.
views are defined as GET requests to paths ending in / or .html that returned a 200 HTTP response status code.
If [file ...] is omitted, clvv reads from standard input.
The clvv utility exits 0 on success, and >0 if an error occurs.
Print all views from /var/www/logs/access.log:
$ clvv /var/www/logs/access.log
awk(1) httpd(8) httpd.conf(5)
clvu - common log (virtual host) uniques
clvu [file ...]
The clvu utility reads each [file ...] in Common Log Format with Virtual Hosts and prints only the uniques to standard output.
uniques to standard output.
uniques are defined as unique remote hosts that made at least one GET request for files with an .html extension, including the / path that returned a 200 HTTP response status code.
If [file ...] is omitted, clvu reads from standard input.
The clvu utility exits 0 on success, and >0 if an error occurs.
Print all uniques from /var/www/logs/access.log:
$ clvu /var/www/logs/access.log
awk(1) httpd(8) httpd.conf(5)
clvp - common log (virtual host) pages
clvp [file ...]
The clvp utility reads each [file ...] in Common Log Format with Virtual Host and prints a list of pages to standard output including the request count.
pages are defined as paths ending in / or .html to which GET requests have been made that returned a 200 HTTP response status code.
If [file ...] is omitted, clvp reads from standard input.
The clvp utility exits 0 on success, and >0 if an error occurs.
Print all pages and their respective request count from /var/www/logs/access.log:
$ clvp /var/www/logs/access.log
awk(1) httpd(8) httpd.conf(5)