WIP
This commit is contained in:
@@ -11,11 +11,11 @@ import awstats_data
|
||||
#
|
||||
# Extract referers and key phrases from requests
|
||||
#
|
||||
# Plugin requirements : None
|
||||
# Plugin requirements :
|
||||
# None
|
||||
#
|
||||
# Conf values needed :
|
||||
# page_to_hit_conf*
|
||||
# hit_to_page_conf*
|
||||
# domain_name
|
||||
#
|
||||
# Output files :
|
||||
# None
|
||||
@@ -24,9 +24,18 @@ import awstats_data
|
||||
# None
|
||||
#
|
||||
# Statistics update :
|
||||
# visits :
|
||||
# remote_addr =>
|
||||
# robot
|
||||
# month_stats :
|
||||
# referers =>
|
||||
# pages
|
||||
# hits
|
||||
# robots_referers =>
|
||||
# pages
|
||||
# hits
|
||||
# search_engine_referers =>
|
||||
# pages
|
||||
# hits
|
||||
# key_phrases =>
|
||||
# phrase
|
||||
#
|
||||
# Statistics deletion :
|
||||
# None
|
||||
|
@@ -3,6 +3,33 @@ import socket
|
||||
from iwla import IWLA
|
||||
from iplugin import IPlugin
|
||||
|
||||
#
|
||||
# Post analysis hook
|
||||
#
|
||||
# Replace IP by reverse DNS names
|
||||
#
|
||||
# Plugin requirements :
|
||||
# None
|
||||
#
|
||||
# Conf values needed :
|
||||
# reverse_dns_timeout*
|
||||
#
|
||||
# Output files :
|
||||
# None
|
||||
#
|
||||
# Statistics creation :
|
||||
# None
|
||||
#
|
||||
# Statistics update :
|
||||
# valid_visitors:
|
||||
# remote_addr
|
||||
# dns_name_replaced
|
||||
# dns_analyzed
|
||||
#
|
||||
# Statistics deletion :
|
||||
# None
|
||||
#
|
||||
|
||||
class IWLAPostAnalysisReverseDNS(IPlugin):
|
||||
DEFAULT_DNS_TIMEOUT = 0.5
|
||||
|
||||
|
@@ -3,6 +3,32 @@ import re
|
||||
from iwla import IWLA
|
||||
from iplugin import IPlugin
|
||||
|
||||
#
|
||||
# Post analysis hook
|
||||
#
|
||||
# Count TOP downloads
|
||||
#
|
||||
# Plugin requirements :
|
||||
# None
|
||||
#
|
||||
# Conf values needed :
|
||||
# reverse_dns_timeout*
|
||||
#
|
||||
# Output files :
|
||||
# None
|
||||
#
|
||||
# Statistics creation :
|
||||
# None
|
||||
#
|
||||
# Statistics update :
|
||||
# month_stats:
|
||||
# top_downloads =>
|
||||
# uri
|
||||
#
|
||||
# Statistics deletion :
|
||||
# None
|
||||
#
|
||||
|
||||
class IWLAPostAnalysisTopDownloads(IPlugin):
|
||||
def __init__(self, iwla):
|
||||
super(IWLAPostAnalysisTopDownloads, self).__init__(iwla)
|
||||
|
Reference in New Issue
Block a user