2014-12-31 14:52:14 +01:00
|
|
|
* iwla.py
|
|
|
|
* plugins/display/all_visits.py
|
|
|
|
* plugins/display/referers.py
|
|
|
|
* plugins/display/top_downloads.py
|
|
|
|
* plugins/display/top_hits.py
|
|
|
|
* plugins/display/top_pages.py
|
|
|
|
* plugins/display/top_visitors.py
|
|
|
|
* plugins/display/referers_diff.py
|
|
|
|
* plugins/post_analysis/referers.py
|
|
|
|
* plugins/post_analysis/reverse_dns.py
|
|
|
|
* plugins/post_analysis/top_downloads.py
|
|
|
|
* plugins/post_analysis/top_hits.py
|
|
|
|
* plugins/post_analysis/top_pages.py
|
|
|
|
* plugins/pre_analysis/page_to_hit.py
|
|
|
|
* plugins/pre_analysis/robots.py
|
|
|
|
|
|
|
|
|
2014-12-23 07:48:25 +01:00
|
|
|
iwla
|
|
|
|
----
|
|
|
|
|
|
|
|
Main class IWLA
|
|
|
|
Parse Log, compute them, call plugins and produce output
|
|
|
|
For now, only HTTP log are valid
|
|
|
|
|
|
|
|
Plugin requirements :
|
|
|
|
None
|
|
|
|
|
|
|
|
Conf values needed :
|
|
|
|
analyzed_filename
|
|
|
|
domain_name
|
|
|
|
locales_path
|
|
|
|
compress_output_files*
|
|
|
|
|
|
|
|
Output files :
|
|
|
|
DB_ROOT/meta.db
|
|
|
|
DB_ROOT/year/month/iwla.db
|
|
|
|
OUTPUT_ROOT/index.html
|
2014-12-31 14:52:14 +01:00
|
|
|
OUTPUT_ROOT/year/_stats.html
|
2014-12-23 07:48:25 +01:00
|
|
|
OUTPUT_ROOT/year/month/index.html
|
|
|
|
|
|
|
|
Statistics creation :
|
|
|
|
|
|
|
|
meta :
|
|
|
|
last_time
|
|
|
|
start_analysis_time
|
|
|
|
stats =>
|
|
|
|
year =>
|
|
|
|
month =>
|
|
|
|
viewed_bandwidth
|
|
|
|
not_viewed_bandwidth
|
|
|
|
viewed_pages
|
|
|
|
viewed_hits
|
|
|
|
nb_visits
|
|
|
|
nb_visitors
|
|
|
|
|
|
|
|
month_stats :
|
|
|
|
viewed_bandwidth
|
|
|
|
not_viewed_bandwidth
|
|
|
|
viewed_pages
|
|
|
|
viewed_hits
|
|
|
|
nb_visits
|
|
|
|
|
|
|
|
days_stats :
|
|
|
|
day =>
|
|
|
|
viewed_bandwidth
|
|
|
|
not_viewed_bandwidth
|
|
|
|
viewed_pages
|
|
|
|
viewed_hits
|
|
|
|
nb_visits
|
|
|
|
nb_visitors
|
|
|
|
|
|
|
|
visits :
|
|
|
|
remote_addr =>
|
|
|
|
remote_addr
|
|
|
|
remote_ip
|
|
|
|
viewed_pages
|
|
|
|
viewed_hits
|
|
|
|
not_viewed_pages
|
|
|
|
not_viewed_hits
|
|
|
|
bandwidth
|
|
|
|
last_access
|
|
|
|
requests =>
|
|
|
|
[fields_from_format_log]
|
|
|
|
extract_request =>
|
|
|
|
extract_uri
|
|
|
|
extract_parameters*
|
|
|
|
extract_referer* =>
|
|
|
|
extract_uri
|
|
|
|
extract_parameters*
|
|
|
|
robot
|
|
|
|
hit_only
|
|
|
|
is_page
|
|
|
|
|
|
|
|
valid_visitors:
|
|
|
|
month_stats without robot and hit only visitors (if not conf.count_hit_only_visitors)
|
|
|
|
|
|
|
|
Statistics update :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics deletion :
|
|
|
|
None
|
|
|
|
|
|
|
|
|
2014-12-23 09:18:30 +01:00
|
|
|
plugins.display.all_visits
|
|
|
|
--------------------------
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Display hook
|
|
|
|
|
2014-12-23 09:18:30 +01:00
|
|
|
Create All visits page
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Plugin requirements :
|
2014-12-23 09:18:30 +01:00
|
|
|
None
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Conf values needed :
|
2014-12-23 09:18:30 +01:00
|
|
|
display_visitor_ip*
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Output files :
|
2014-12-23 09:18:30 +01:00
|
|
|
OUTPUT_ROOT/year/month/all_visits.html
|
2014-12-23 07:48:25 +01:00
|
|
|
OUTPUT_ROOT/year/month/index.html
|
|
|
|
|
|
|
|
Statistics creation :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics update :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics deletion :
|
|
|
|
None
|
|
|
|
|
|
|
|
|
2014-12-23 09:18:30 +01:00
|
|
|
plugins.display.referers
|
|
|
|
------------------------
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Display hook
|
|
|
|
|
2014-12-23 09:18:30 +01:00
|
|
|
Create Referers page
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Plugin requirements :
|
2014-12-23 09:18:30 +01:00
|
|
|
post_analysis/referers
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Conf values needed :
|
2014-12-23 09:18:30 +01:00
|
|
|
max_referers_displayed*
|
|
|
|
create_all_referers_page*
|
|
|
|
max_key_phrases_displayed*
|
|
|
|
create_all_key_phrases_page*
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Output files :
|
2014-12-23 09:18:30 +01:00
|
|
|
OUTPUT_ROOT/year/month/referers.html
|
|
|
|
OUTPUT_ROOT/year/month/key_phrases.html
|
2014-12-23 07:48:25 +01:00
|
|
|
OUTPUT_ROOT/year/month/index.html
|
|
|
|
|
|
|
|
Statistics creation :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics update :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics deletion :
|
|
|
|
None
|
|
|
|
|
|
|
|
|
2014-12-31 14:52:14 +01:00
|
|
|
plugins.display.top_downloads
|
|
|
|
-----------------------------
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Display hook
|
|
|
|
|
2014-12-31 14:52:14 +01:00
|
|
|
Create TOP downloads page
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Plugin requirements :
|
2014-12-31 14:52:14 +01:00
|
|
|
post_analysis/top_downloads
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Conf values needed :
|
2014-12-31 14:52:14 +01:00
|
|
|
max_downloads_displayed*
|
|
|
|
create_all_downloads_page*
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Output files :
|
2014-12-31 14:52:14 +01:00
|
|
|
OUTPUT_ROOT/year/month/top_downloads.html
|
2014-12-23 07:48:25 +01:00
|
|
|
OUTPUT_ROOT/year/month/index.html
|
|
|
|
|
|
|
|
Statistics creation :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics update :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics deletion :
|
|
|
|
None
|
|
|
|
|
|
|
|
|
2014-12-23 09:18:30 +01:00
|
|
|
plugins.display.top_hits
|
|
|
|
------------------------
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Display hook
|
|
|
|
|
2014-12-23 09:18:30 +01:00
|
|
|
Create TOP hits page
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Plugin requirements :
|
2014-12-23 09:18:30 +01:00
|
|
|
post_analysis/top_hits
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Conf values needed :
|
2014-12-23 09:18:30 +01:00
|
|
|
max_hits_displayed*
|
|
|
|
create_all_hits_page*
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Output files :
|
2014-12-23 09:18:30 +01:00
|
|
|
OUTPUT_ROOT/year/month/top_hits.html
|
2014-12-23 07:48:25 +01:00
|
|
|
OUTPUT_ROOT/year/month/index.html
|
|
|
|
|
|
|
|
Statistics creation :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics update :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics deletion :
|
|
|
|
None
|
|
|
|
|
|
|
|
|
2014-12-31 14:52:14 +01:00
|
|
|
plugins.display.top_pages
|
|
|
|
-------------------------
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Display hook
|
|
|
|
|
2014-12-31 14:52:14 +01:00
|
|
|
Create TOP pages page
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Plugin requirements :
|
2014-12-31 14:52:14 +01:00
|
|
|
post_analysis/top_pages
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Conf values needed :
|
2014-12-31 14:52:14 +01:00
|
|
|
max_pages_displayed*
|
|
|
|
create_all_pages_page*
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Output files :
|
2014-12-31 14:52:14 +01:00
|
|
|
OUTPUT_ROOT/year/month/top_pages.html
|
2014-12-23 07:48:25 +01:00
|
|
|
OUTPUT_ROOT/year/month/index.html
|
|
|
|
|
|
|
|
Statistics creation :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics update :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics deletion :
|
|
|
|
None
|
|
|
|
|
|
|
|
|
2014-12-31 14:52:14 +01:00
|
|
|
plugins.display.top_visitors
|
|
|
|
----------------------------
|
2014-12-23 07:48:25 +01:00
|
|
|
|
2014-12-31 14:52:14 +01:00
|
|
|
Display hook
|
|
|
|
|
|
|
|
Create TOP visitors block
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Plugin requirements :
|
|
|
|
None
|
|
|
|
|
|
|
|
Conf values needed :
|
2014-12-31 14:52:14 +01:00
|
|
|
display_visitor_ip*
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Output files :
|
2014-12-31 14:52:14 +01:00
|
|
|
OUTPUT_ROOT/year/month/index.html
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Statistics creation :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics update :
|
2014-12-31 14:52:14 +01:00
|
|
|
None
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Statistics deletion :
|
|
|
|
None
|
|
|
|
|
|
|
|
|
2014-12-31 14:52:14 +01:00
|
|
|
plugins.display.referers_diff
|
|
|
|
-----------------------------
|
2014-12-23 07:48:25 +01:00
|
|
|
|
2014-12-31 14:52:14 +01:00
|
|
|
Display hook
|
2014-12-23 07:48:25 +01:00
|
|
|
|
2014-12-31 14:52:14 +01:00
|
|
|
Enlight new and updated key phrases in in all_key_phrases.html
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Plugin requirements :
|
2014-12-31 14:52:14 +01:00
|
|
|
display/referers
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Conf values needed :
|
2014-12-31 14:52:14 +01:00
|
|
|
None
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Output files :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics creation :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics update :
|
2014-12-31 14:52:14 +01:00
|
|
|
None
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Statistics deletion :
|
|
|
|
None
|
|
|
|
|
|
|
|
|
|
|
|
plugins.post_analysis.referers
|
|
|
|
------------------------------
|
|
|
|
|
|
|
|
Post analysis hook
|
|
|
|
|
|
|
|
Extract referers and key phrases from requests
|
|
|
|
|
|
|
|
Plugin requirements :
|
|
|
|
None
|
|
|
|
|
|
|
|
Conf values needed :
|
|
|
|
domain_name
|
|
|
|
|
|
|
|
Output files :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics creation :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics update :
|
|
|
|
month_stats :
|
|
|
|
referers =>
|
|
|
|
pages
|
|
|
|
hits
|
|
|
|
robots_referers =>
|
|
|
|
pages
|
|
|
|
hits
|
|
|
|
search_engine_referers =>
|
|
|
|
pages
|
|
|
|
hits
|
|
|
|
key_phrases =>
|
|
|
|
phrase
|
|
|
|
|
|
|
|
Statistics deletion :
|
|
|
|
None
|
|
|
|
|
|
|
|
|
2014-12-31 14:52:14 +01:00
|
|
|
plugins.post_analysis.reverse_dns
|
|
|
|
---------------------------------
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Post analysis hook
|
|
|
|
|
2014-12-31 14:52:14 +01:00
|
|
|
Replace IP by reverse DNS names
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Plugin requirements :
|
|
|
|
None
|
|
|
|
|
|
|
|
Conf values needed :
|
2014-12-31 14:52:14 +01:00
|
|
|
reverse_dns_timeout*
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Output files :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics creation :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics update :
|
2014-12-31 14:52:14 +01:00
|
|
|
valid_visitors:
|
|
|
|
remote_addr
|
|
|
|
dns_name_replaced
|
|
|
|
dns_analyzed
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Statistics deletion :
|
|
|
|
None
|
|
|
|
|
|
|
|
|
2014-12-31 14:52:14 +01:00
|
|
|
plugins.post_analysis.top_downloads
|
|
|
|
-----------------------------------
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Post analysis hook
|
|
|
|
|
2014-12-31 14:52:14 +01:00
|
|
|
Count TOP downloads
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Plugin requirements :
|
|
|
|
None
|
|
|
|
|
|
|
|
Conf values needed :
|
2014-12-31 14:52:14 +01:00
|
|
|
None
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Output files :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics creation :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics update :
|
2014-12-31 14:52:14 +01:00
|
|
|
month_stats:
|
|
|
|
top_downloads =>
|
|
|
|
uri
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Statistics deletion :
|
|
|
|
None
|
|
|
|
|
|
|
|
|
2014-12-23 09:18:30 +01:00
|
|
|
plugins.post_analysis.top_hits
|
|
|
|
------------------------------
|
2014-12-23 07:48:25 +01:00
|
|
|
|
2014-12-23 09:18:30 +01:00
|
|
|
Post analysis hook
|
|
|
|
|
|
|
|
Count TOP hits
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Plugin requirements :
|
|
|
|
None
|
|
|
|
|
|
|
|
Conf values needed :
|
2014-12-23 09:18:30 +01:00
|
|
|
None
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Output files :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics creation :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics update :
|
2014-12-23 09:18:30 +01:00
|
|
|
month_stats:
|
|
|
|
top_hits =>
|
|
|
|
uri
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Statistics deletion :
|
|
|
|
None
|
|
|
|
|
|
|
|
|
2014-12-31 14:52:14 +01:00
|
|
|
plugins.post_analysis.top_pages
|
|
|
|
-------------------------------
|
2014-12-23 07:48:25 +01:00
|
|
|
|
2014-12-23 09:18:30 +01:00
|
|
|
Post analysis hook
|
2014-12-23 07:48:25 +01:00
|
|
|
|
2014-12-31 14:52:14 +01:00
|
|
|
Count TOP pages
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Plugin requirements :
|
|
|
|
None
|
|
|
|
|
|
|
|
Conf values needed :
|
2014-12-23 09:18:30 +01:00
|
|
|
None
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Output files :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics creation :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics update :
|
2014-12-23 09:18:30 +01:00
|
|
|
month_stats:
|
2014-12-31 14:52:14 +01:00
|
|
|
top_pages =>
|
2014-12-23 09:18:30 +01:00
|
|
|
uri
|
2014-12-23 07:48:25 +01:00
|
|
|
|
|
|
|
Statistics deletion :
|
|
|
|
None
|
|
|
|
|
|
|
|
|
2014-12-31 14:52:14 +01:00
|
|
|
plugins.pre_analysis.page_to_hit
|
|
|
|
--------------------------------
|
|
|
|
|
|
|
|
Pre analysis hook
|
|
|
|
Change page into hit and hit into page into statistics
|
|
|
|
|
|
|
|
Plugin requirements :
|
|
|
|
None
|
|
|
|
|
|
|
|
Conf values needed :
|
|
|
|
page_to_hit_conf*
|
|
|
|
hit_to_page_conf*
|
|
|
|
|
|
|
|
Output files :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics creation :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics update :
|
|
|
|
visits :
|
|
|
|
remote_addr =>
|
|
|
|
is_page
|
|
|
|
|
|
|
|
Statistics deletion :
|
|
|
|
None
|
|
|
|
|
|
|
|
|
|
|
|
plugins.pre_analysis.robots
|
|
|
|
---------------------------
|
|
|
|
|
|
|
|
Pre analysis hook
|
|
|
|
|
|
|
|
Filter robots
|
|
|
|
|
|
|
|
Plugin requirements :
|
|
|
|
None
|
|
|
|
|
|
|
|
Conf values needed :
|
|
|
|
page_to_hit_conf*
|
|
|
|
hit_to_page_conf*
|
|
|
|
|
|
|
|
Output files :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics creation :
|
|
|
|
None
|
|
|
|
|
|
|
|
Statistics update :
|
|
|
|
visits :
|
|
|
|
remote_addr =>
|
|
|
|
robot
|
|
|
|
|
|
|
|
Statistics deletion :
|
|
|
|
None
|
|
|
|
|
|
|
|
|