Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: modules/statsmaster/templates/awstats.conf

Issue 6293281981857792: Issue 239 - Move AWStats processing to the stats server (Closed)
Left Patch Set: Created April 23, 2014, 1:14 p.m.
Right Patch Set: Added IP address anonymization and addressed review comments Created April 25, 2014, 7:38 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « modules/statsmaster/templates/anonymize_ips_item.erb ('k') | modules/statsmaster/templates/build_static_head.erb » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 #----------------------------------------------------------------------------- 1 #-----------------------------------------------------------------------------
2 # MAIN SETUP SECTION (Required to make AWStats work) 2 # MAIN SETUP SECTION (Required to make AWStats work)
3 #----------------------------------------------------------------------------- 3 #-----------------------------------------------------------------------------
4 4
5 # "LogFile" contains the web, ftp or mail server log file to analyze. 5 # "LogFile" contains the web, ftp or mail server log file to analyze.
6 # Possible values: A full path, or a relative path from awstats.pl directory. 6 # Possible values: A full path, or a relative path from awstats.pl directory.
7 # Example: "/var/log/apache/access.log" 7 # Example: "/var/log/apache/access.log"
8 # Example: "../logs/mycombinedlog.log" 8 # Example: "../logs/mycombinedlog.log"
9 # You can also use tags in this filename if you need a dynamic file name 9 # You can also use tags in this filename if you need a dynamic file name
10 # depending on date or time (Replacement is made by AWStats at the beginning 10 # depending on date or time (Replacement is made by AWStats at the beginning
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 # Warning: Update process can be long so you might experience "time out" 214 # Warning: Update process can be long so you might experience "time out"
215 # browser errors if you don't launch AWStats frequently enough. 215 # browser errors if you don't launch AWStats frequently enough.
216 # When set to 0, update is only made when AWStats is run from the command 216 # When set to 0, update is only made when AWStats is run from the command
217 # line interface (or a task scheduler). 217 # line interface (or a task scheduler).
218 # Possible values: 0 or 1 218 # Possible values: 0 or 1
219 # Default: 0 219 # Default: 0
220 # 220 #
221 AllowToUpdateStatsFromBrowser=0 221 AllowToUpdateStatsFromBrowser=0
222 222
223 223
224 # AWStats saves and sorts its database on a month basis (except if using 224 # AWStats saves and sorts its database on a month basis (except if using
Felix Dahlke 2014/04/25 04:37:08 Does this mean we're storing full IPs?
Wladimir Palant 2014/04/25 07:40:55 Yes, in the VISITOR section of the AWStats data. T
225 # databasebreak option from command line). 225 # databasebreak option from command line).
226 # However, if you choose the -month=all from command line or 226 # However, if you choose the -month=all from command line or
227 # value '-Year-' from CGI combo form to have a report for all year, AWStats 227 # value '-Year-' from CGI combo form to have a report for all year, AWStats
228 # needs to reload all data for full year (each month), and sort them, 228 # needs to reload all data for full year (each month), and sort them,
229 # requiring a large amount of time, memory and CPU. This might be a problem 229 # requiring a large amount of time, memory and CPU. This might be a problem
230 # for web hosting providers that offer AWStats for large sites, on shared 230 # for web hosting providers that offer AWStats for large sites, on shared
231 # servers, to non CPU cautious customers. 231 # servers, to non CPU cautious customers.
232 # For this reason, the 'full year' is only enabled on Command Line by default. 232 # For this reason, the 'full year' is only enabled on Command Line by default.
233 # You can change this by setting this parameter to 0, 1, 2 or 3. 233 # You can change this by setting this parameter to 0, 1, 2 or 3.
234 # Possible values: 234 # Possible values:
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 # image extensions as they are hit downloaded that must be counted but they 544 # image extensions as they are hit downloaded that must be counted but they
545 # are not viewed pages. URLs with such extensions are not included in the TOP 545 # are not viewed pages. URLs with such extensions are not included in the TOP
546 # Pages/URL report. 546 # Pages/URL report.
547 # Note: If you want to exclude particular URLs from stats (No Pages and no 547 # Note: If you want to exclude particular URLs from stats (No Pages and no
548 # Hits reported), you must use SkipFiles parameter. 548 # Hits reported), you must use SkipFiles parameter.
549 # Change : Effective for new updates only 549 # Change : Effective for new updates only
550 # Example: "css js class gif jpg jpeg png bmp ico zip arj gz z wav mp3 wma mpg" 550 # Example: "css js class gif jpg jpeg png bmp ico zip arj gz z wav mp3 wma mpg"
551 # Example: "" 551 # Example: ""
552 # Default: "css js class gif jpg jpeg png bmp ico" 552 # Default: "css js class gif jpg jpeg png bmp ico"
553 # 553 #
554 NotPageList="css js class gif jpg jpeg png bmp ico swf xml rdf" 554 NotPageList="css js class gif jpg jpeg png bmp ico swf xml rdf woff otf ttf"
555 555
556 556
557 # By default, AWStats considers that records found in web log file are 557 # By default, AWStats considers that records found in web log file are
558 # successful hits if HTTP code returned by server is a valid HTTP code (200 558 # successful hits if HTTP code returned by server is a valid HTTP code (200
559 # and 304). Any other code are reported in HTTP status chart. 559 # and 304). Any other code are reported in HTTP status chart.
560 # Note that HTTP 'control codes', like redirection (302, 305) are not added by 560 # Note that HTTP 'control codes', like redirection (302, 305) are not added by
561 # default in this list as they are not pages seen by a visitor but are 561 # default in this list as they are not pages seen by a visitor but are
562 # protocol exchange codes to tell the browser to ask another page. Because 562 # protocol exchange codes to tell the browser to ask another page. Because
563 # this other page will be counted and seen with a 200 or 304 code, if you 563 # this other page will be counted and seen with a 200 or 304 code, if you
564 # add such codes, you will have 2 pages viewed reported for only one in facts. 564 # add such codes, you will have 2 pages viewed reported for only one in facts.
(...skipping 906 matching lines...) Expand 10 before | Expand all | Expand 10 after
1471 # config file. 1471 # config file.
1472 # This is particularly useful for users who have a lot of virtual servers, so 1472 # This is particularly useful for users who have a lot of virtual servers, so
1473 # a lot of config files and want to maintain common values in only one file. 1473 # a lot of config files and want to maintain common values in only one file.
1474 # Note that when a variable is defined both in a config file and in an 1474 # Note that when a variable is defined both in a config file and in an
1475 # included file, AWStats will use the last value read for parameters that 1475 # included file, AWStats will use the last value read for parameters that
1476 # contains one value and AWStats will concat all values from both files for 1476 # contains one value and AWStats will concat all values from both files for
1477 # parameters that are lists of values. 1477 # parameters that are lists of values.
1478 # 1478 #
1479 1479
1480 #Include "" 1480 #Include ""
LEFTRIGHT

Powered by Google App Engine
This is Rietveld