Welcome to mirror list, hosted at ThFree Co, Russian Federation.

download-count.txt « others « misc - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 924d71ec380208e198f6b198853afc50e9adc4fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Count the download for 'latest.zip' on the 20th March

# cat access.log | grep "20/Mar" | grep "latest.zip" | awk '{print $1}' | sort | uniq | wc -l


Value to be compared with the one given by Piwik in Actions > Downloads


Count the no of hits by referrers, excluding piwik.org as a referer
# cat /var/log/apache2/access.log | awk '{print $11}' | grep -vE "(^"-"$|/dev.piwik.org|/piwik.org)" | sort | uniq -c | sort -rn | head -n20

Count the no of hits by referrers
# cat /var/log/apache2/access.log | awk '{print $11}' | sort | uniq -c | sort -rn | head -n20