Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (430)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
Generate Log Report for Given Document Paths
How to Generate Log Report for Given Document Paths with GoAccess?
✍: FYIcenter.com
GoAccess does not have any functionality to limit Log Report for given document paths.
To Generate Log Report for given document paths, you need to filter out log files with other command line tools, like "grep" and "sed". Here are some examples:
1. Generate Log Report for a given document file:
grep '/about_us.html'access_log | goaccess -o log-report.html -
2. Generate Log Report for a given document folder:
grep '/jobs' access_log | goaccess -o log-report.html -
3. Generate Log Report with a given URL pattern:
awk '$7~/\.html|\.htm|\.php/' access.log | goaccess -
4. Generate Log Report in two steps:
sudo -u www awk '$7~/\.html|\.htm/' /var/log/httpd/access.log | sudo -u www tee /home/www/access.log sudo -u www goaccess /home/www/access.log -o /var/www/html/log-report.html
⇒ Running GoAccess Report in Real-Time Mode
2022-12-12, 871🔥, 0💬
Popular Posts:
How to log in to Microsoft Teams with a Web browser? I know that my company is using Microsoft Teams...
How to Login to Microsoft Teams desktop version on my Windows computer? If you have Microsoft Teams ...
What is this Website about? This Website provides a collection of Frequently Asked Questions (FAQ) a...
Where to find answers to frequently asked questions on Microsoft Word? I want to know how to open PD...
Where to find answers to frequently asked questions on Microsoft PowerPoint? I want to know how to c...