Questions tagged [access-log]

A list of all the requests for individual files that people have requested from a Web site. The server access log records all requests processed by the server.

238 questions
0
votes
2 answers

retrieving Apache log files from AWS Beanstalk

I know that Beanstalk's Snapshot Logs can give you a recent overview of the httpd/access_log files from among the EC2 instances under the ELB for that environment. But does anyone know a good way to get all the logs? It's a production environment,…
0
votes
1 answer

Tracking onhashchange events

Looking for a best practice for the following scenario: In a traditional webapp, we perform analytics on logs based on http GETs. The project in question leverages HTML5, jQuery and Mustache.js to dynamically render templates from JSONP calls. The…
lars
  • 99
  • 1
  • 14
0
votes
1 answer

Evidences for automatic browsing-Log file analysis

I'm not quite sure whether this is the suitable forum to post my question. I'm analyzing web server logs both in Apache and IIS log formats. I want to find the evidences for automatic browsing(Ex. Web robots,spiders,bots etc.) I used python…
Nilani Algiriyage
  • 32,876
  • 32
  • 87
  • 121
0
votes
1 answer

How do I get hold of my access logs from CloudControl

This may seem like a stupid question, but: If I have an app deployed to CloudControl, how can I download the access logs directly. Of course I can cctrlapp myapphere/default log access to 'tail' them. ... but I want to download them for off line…
0
votes
1 answer

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 (i.e. IP-address) that a given referrer once…
cnst
  • 25,870
  • 6
  • 90
  • 122
0
votes
1 answer

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" 200 48 I want to know the meaning of the last…
Animesh Pandey
  • 5,900
  • 13
  • 64
  • 130
0
votes
1 answer

Jboss and tomcat access log parameter setup

In our $JBOSS_HOME/server//deploy/jbossweb.sar/server.xml : THIS is how we have defined the logging pattern for HOW the access log file is written.
user1432913
  • 79
  • 6
  • 14
0
votes
1 answer

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 number of queries/day, number of similar queries,…
Shamik
  • 1,671
  • 11
  • 36
  • 64
0
votes
1 answer

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.
Vipul
-1
votes
1 answer

using tail to view the access logs on my server

I'm on centOS and new to using tail to view the access logs on my server, and I'm not able to understand the meaning of every information I see. For example, one of the info it shows me is: 123.456.789.10 -- [03/Dec/2021:22:30:47 +0000] "POST /…
JJJ
  • 47
  • 1
  • 4
-1
votes
1 answer

Apache2 creates multiple Access Log Files

I can't understand why my Apache Server generates multiple access log files. For example, it creates access.log, access.log.1, access.log.2 and so on. Every access.log file records differents requests. How can I record every request in a single…
Lorenzo
  • 31
  • 6
-2
votes
1 answer

php best way analysis access_log

I want analysis access_log, then store the visitors ip, date, pageview or image view into a mysql table. I'm plan to use cron job call a php script every minute, open the access_log. But now the access_log has already more than 500MB, and it will…
fish man
  • 2,666
  • 21
  • 54
  • 94
-3
votes
1 answer

How to implement access log in rails?

I want to implement access log in the ruby layer of my application. I want to log like this for each request. 192.168.2.20 - - [28/Jul/2006:10:27:10 -0300] "GET /cgi-bin/try/ HTTP/1.0" 200 3395 127.0.0.1 - - [28/Jul/2006:10:22:04 -0300] "GET /…
1 2 3
15
16