Page MenuHomePhabricator

analyze Bugzilla access logs
Closed, ResolvedPublic

Description

run something like awstats/awffull/webalizer on the webserver access logs on zirconium. doesn't have to be a permanent thing, just once to find out how many people are still using Bugzilla

Event Timeline

Dzahn raised the priority of this task from to Needs Triage.
Dzahn updated the task description. (Show Details)
Dzahn added a project: acl*sre-team.
Dzahn subscribed.
Dzahn triaged this task as Low priority.Jan 28 2015, 5:53 PM

access.log and error.log contains about 36 hours' worth of access:

grep -ir bugzilla access.log | wc

1054   22300  314744

grep -ir static-bugzilla access.log | wc

588   12635  161954

grep -ir old-bugzilla access.log | wc

439    9136  144830
  1. grep -ir bugzilla access.log | grep -v static-bugzilla | grep -v old-bugzilla | wc 27 529 7960
Dzahn claimed this task.

@Andrew could you re-run your greps to see what the usage of old-bugzilla is before we turn it off?

root@zirconium:/var/log/apache2# grep -ir bugzilla access.log | wc

6869  148178 2063615

root@zirconium:/var/log/apache2# grep -ir static-bugzilla access.log | wc

4553   97788 1248204

root@zirconium:/var/log/apache2# grep -ir old-bugzilla access.log | wc

2258   49362  790444

Thanks RobH! So it looks like usage of old-bugzilla has gone up? Or am I reading the numbers wrong?