The access-log tag has no wiki summary.
0
votes
0answers
11 views
Log all request statuses in access.log
Nginx has a flexible configuration of access log, but there is no way to configure error.log.
I don't see any 500 errors in access.log
grep " 500 " access.log # Don't find anything
I assume that ...
0
votes
0answers
10 views
jboss access log shows different number of bytes for the same resource
My jboss access log shows a different number of bytes for them same static resource served:
172.27.162.79 - - [26/Mar/2013:16:41:16 +0100] "GET /epr.mpa.module/epr.mpa.flex.client.swf HTTP/1.1" 200 ...
0
votes
1answer
19 views
overall page views driven by a referrer to one page (shell)
Having a log file in the standard combined access_log format of nginx or apache, how would you, in UNIX shell, calculate the number of visits or page views (i.e. total requests) from each visitor ...
1
vote
1answer
110 views
grep for a pattern, that match in multiple files
I'm using grep for analysing my log-files after an attack.
usually like that
grep -F "POST /xxxxx.php" ./access-log
Now someone attacked some of my websites but i don't know where the ...
1
vote
0answers
18 views
PHP and Apache - how do I stop the system from writing to the access log? [duplicate]
Possible Duplicate:
disabling apache logging to access.log
I think the access log by itself takes a lot of system resources because of all the disk access. How can I prevent any access log ...
1
vote
1answer
94 views
Jmeter- Access log sampler: Increase load up to 5x from orignal logs
For development purpose I am sole user of my application. So I used my application normally for an hour an take access logs of it via tomcat. Now I am using Jmeter to test against these logs according ...
0
votes
0answers
21 views
afpd access logging
I'm running a afp 2.2.4 daemon - nearly everthing is up and running.
I've tried several logging options now - but it seems impossible to write a kind of accesslog with this daemon.
Especially I'm ...
0
votes
0answers
52 views
Connector-specific access logs in Tomcat
The Access Log Valve is defined as a nested element of Context, Host, or Engine.
Is there a way to log accesses only for a particular connector?
For instance :
log requests on HTTP/8080
do not log ...
0
votes
2answers
274 views
Django Tastypie Access log
I'm having problems with creating an access logger for my tastypie restfull app.
I'd like to log several HTTP headers in requests to server and pass them to logger/handler defined in django Settings ...
1
vote
1answer
246 views
Finding blank User Agents and spoofed UA in access logs
I'm trying to find any blank user agents and traces of spoofed user agents in my apache access logs.
Here's a typical line from my Access Log: (with IP and domain redacted)
x.x.x.x - - ...
1
vote
0answers
452 views
Apache (internal dummy connection) crashes server with too many logs
i know that this question is silly and often answered, but no solution worked for me by now. I'm using OpenSuse and Apache2 and added
SetEnvIf Remote_Addr "127\.0\.0\.1" loopback
SetEnvIf ...
0
votes
2answers
126 views
Are there user friendly applications to read/search Apache access logs? [closed]
I'm currently investigating bots and spammers in the "raw access logs" as they are referred to by CPanel.
Vim is very powerful for this purpose, however I was wondering if there are any general ...
1
vote
1answer
96 views
How long do apache access log files last?
How long does the server keep access log files?
Today I accessed my server log files and noticed they only go back to August 19th. Are access log files automatically dumped after a month?
If so, is ...
1
vote
0answers
201 views
location of Amazon Elastic Beanstalk Apache access logs
I'm digging around trying to find the location of the access logs on an EC2 instance within the beanstalk running PHP5 and not JAVA.
I've looked in /var/log/httpd and the access_log there is empty.
...
0
votes
0answers
339 views
Apache access log details for reponse time 0 microsecond
We are using the following access log format in apache http proxy.
LogFormat "%h %l %u %t \"%r\" %>s %D %b
where %D->The time taken to serve the request, in microseconds,
But sometime we ...
0
votes
1answer
106 views
How to interpret access log of Apache server?
I checked this link but could understand as they have provided with a different format.
This is an entry in my access log.
127.0.0.1 - - [13/Aug/2012:13:39:53 +0530] "GET /cgi-bin/test.cgi HTTP/1.1" ...
1
vote
2answers
413 views
WAMP limit log files size
Is there any functionality in wamp to limit the access and error log to 20 MB? i.e. it should be truncated after 20 MB.
0
votes
1answer
919 views
Jboss and tomcat access log parameter setup
In our $JBOSS_HOME/server/<PROFILE = default >/deploy/jbossweb.sar/server.xml : THIS is how we have defined the logging pattern for HOW the access log file is written.
<Valve ...
1
vote
1answer
85 views
Does WordPress preload pages?
While surfing my site and reviewing my server access logs, it appears the 'next' page in my site is served along with the page I navigated to (one click, two pages). Sometimes it does it in order, ...
0
votes
1answer
171 views
How to log some RESTful service response information apache log file?
I've a simple java RESTful service which queries database and send the response back based on the request parameter. I need to generate some simple report based on the apache access_log, for example ...
1
vote
0answers
138 views
multiple hit on accesslog apache with android (http headers modified)
I have a PHP script which allows you to download media files. When I run this script by accessing via URL with an Android OS, I can see 2 hits in the apachelog:
192.168.xxx.xx - - ...
1
vote
1answer
331 views
Monitoring Amazon S3 logs with Splunk?
We have a large extended network of users that we track using badges. The total traffic is in the neighborhood of 60 Million impressions a month. We are currently considering switching from a fairly ...
2
votes
1answer
844 views
Possible attack attempt on webserver, how to decode the requests to find out?
In my Apache access log I'm getting some requests like the following:
[some timestamp] [some ip] [my servers ip] 400 ...
3
votes
1answer
168 views
Why would an Apache Web Server access log not be in the correct format?
in class, we were assigned to parse through an access log and record all the successful attempts. In researching the Apache web server access log I ran into several instances, roughly 3/100,000 logs ...
6
votes
1answer
4k views
Understanding Apache Access Log
I have recently started using apache webserver from IIS and I am currently looking into how to understand the access log.
Below is one of the line in the access log
127.0.0.1 - - ...
0
votes
1answer
336 views
Logging Request/Response size in access_log of Nginx
I need to log request/response size(body+headers) in the access_log. Any idea how to do it in nginx?
In apache we can do it using %I..%O format.
0
votes
3answers
259 views
Unix/CentOS how to parse access_log and log any matches to file
I have running in background (SSH)
tail -f access_log | grep 'POST /index.php' > test &
I ran this command inside /var/log/httpd where the access_log and error_log is stored.
I keep doing ls ...
2
votes
1answer
80 views
Why are there so many people in my SVN access log?
all. I'm running CollabNet Subversion Edge, Software version 2.0.0-2190.74 Subversion version 1.6.17-2190.74
When I look at the repository access logs, I get entries like
91.199.239.1 - - ...
-4
votes
1answer
125 views
entry and record of ip address [closed]
sir,
i am interested in counting the page view ip wise. suppose for a user whose page link is www.xyz.com/u/george so for the user george i want to store the entry of visitor ip wise. As i want to ...
0
votes
1answer
274 views
Lighttpd mod_accesslog cannot display Request_URI with custom error pages
I need some help to customize my access log on Lighttpd 1.4.28. So far I have been able to modify the configuration to display the date in a strftime(3) format. The default date format is just way too ...
1
vote
2answers
522 views
Regex Help WIth Akamai Access Log - PHP
Can someone help me out with creating a regex expression in PHP to parse out the different fields within an Akamai access log. The first line below specifies the field names. Thanks!
#Fields: date ...
1
vote
1answer
347 views
How can I get the NCSARequestLog to roll over hourly?
Jetty provides the NCSARequestLog to log the requests. But this seems to rollover on a daily basis by default.
Is there an option to have this rollover on an hourly basis?
Or is there a way to ...
0
votes
1answer
187 views
High-volume logging with batch save to database?
I want to store information about requests to my sites in a quick way that doesn't put a additional strain on my database. The goal is to use this information to prevent abuse and gather information ...
1
vote
2answers
634 views
Application-specific accesslog in tomcat?
I am trying to configure independent accesslogs for my .war application in tomcat, but I can't figure out what is failing.
The intention is to have separate access logging for requests going to my ...
0
votes
3answers
60 views
What to store in a typical access log?
I have thought of the following:
user id if available
user ip address
timestamp
action executed
Am I missing something? Are there any guidelines?
1
vote
2answers
231 views
IIS access log to SQL normalization
I am looking for insert IIS 6.0 access log ( 5 servers, and over 400MB daily ) to SQL database. What scares me is the size. There is a lot of information you are duplicating (i.e. site name, url, ...
4
votes
2answers
1k views
%D field in Apache access logs - first or last byte?
The Apache Httpd manual has a section on custom access log formats. One of these options is the %D field, which is documented as
The time taken to serve the request, in microseconds.
Can anyone ...
1
vote
1answer
172 views
Is it possible to log the first line of the response in apache?
We have an Tomcat server where we're trying to log the HTTP version which the response is sent with. We've seen a few times that it seems to be HTTP/0.9, which kills the content (not supported I ...
1
vote
6answers
4k views
access_log is huge, not being archived. how to reset it?
I have discovered that my access_log is occupying most of my HDD. It's over 200 GB in size. How can I reset it ?
I am using Apache 2.2.3 on a CentOS server with Plesk.
Thank you guys !
0
votes
1answer
282 views
Access log parsing
I want to parse my access log. Objective is to get the value of any query string parameter independent of its location.
Also is there any free URL parsing s/w or website.
2
votes
5answers
214 views
What to do with old access logs? [closed]
I have 51 GB of HTTP (Apache) access logs for my website going back five years. I'm sort of a hoarder, as far as my personality, which is why I am reluctant to delete them, even though it's taking up ...
