Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (398)
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, 417🔥, 0💬
Popular Posts:
What is Microsoft Office 365? Office 365 is a cloud service offered by Microsoft that provide produc...
How to login to outlook.office365.com with a Browser? I have a company email account on Office365. I...
What are Link and Activity LEDs on Ethernet Socket? Link and Activity LEDs on Ethernet Socket are LE...
How to turn on or off comments? I have a PowerPoint presentation which has comments entered by diffe...
Where to find answers to frequently asked questions on installing and using Mozilla Firefox 2.0? Her...