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.
Questions tagged [access-log]
238 questions
1
vote
1 answer
Aggregating a list of http log paths in kibana
I have a nginx->fluentd->elasticsearch->kibana stack up and running. Trying to figure if I can do something like a "terms" panel but with a path string component from logs. Using a terms panel directly on that results in top used words from paths,…

Farcaller
- 3,070
- 1
- 27
- 42
1
vote
0 answers
Understanding apache httpd access logs - 3 ips in one line
I have following strange behaviour of my access logs.
The logs are configured like that:
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\"…

Leon
- 1,141
- 1
- 10
- 25
1
vote
2 answers
Junks in apache access_log?
I am hosting a small test website in ec2 and there should be only 2-3 test users with valid login to my server. However, I am seeing a lot of junk logs in my apache access_log(
/var/log/httpd/access_log):
198.2.208.231 - - [13/Dec/2013:21:11:07…

Jason
- 821
- 2
- 16
- 28
1
vote
1 answer
Using k-means clustering on web log data
I have a data set from a access web log file which I'm interested in finding similar clusters. (I'm an absolute beginner of data mining). So far I have referred many research papers on the same problem domain.
An Efficient Approach for Clustering…

Nilani Algiriyage
- 32,876
- 32
- 87
- 121
1
vote
0 answers
apache access_log filename use server hostname
How apache access_log filename use server hostname
ex)
[root@testserver ~]# hostname
testserver
vi httpd-vhosts.conf
CustomLog "|/usr/local/cronolog/sbin/cronolog --symlink=/home/apache_log/www/access_log…

user2666840
- 11
- 2
1
vote
1 answer
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 vulnerability, and also not, what the attackers ip address is.…

user1988431
- 36
- 4
1
vote
0 answers
PHP and Apache - how do I stop the system from writing to the access log?
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 data from being written to the access_log file in my…

Genadinik
- 18,153
- 63
- 185
- 284
1
vote
1 answer
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 to this Tutorial.
When I define Number of…

Anurag Tripathi
- 1,208
- 1
- 12
- 31
1
vote
0 answers
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 - - [31/May/2012:15:30:57 +0100] "GET /myScript.php?myParams=myValues…

niconoe
- 1,191
- 1
- 11
- 25
0
votes
0 answers
Weird User Request in access log
I'm evaluating the AccessLog of our reverse proxy here and I came accross some weird user requests.
Th normal request would be, that the user requests a page with a form on it via GET Request:
XXX.XXX.XXX.XXX www.example.de - [25/Jul/2023:07:31:01…

Urkusk Shrakz
- 15
- 5
0
votes
0 answers
Envoy Access Log Multi Filter exclude
I am trying to filter out a log_type_filter when it has the status code 200. I need to know how to exclude this exact match and not all of the log_type_filter. Here is what I have
filter:
and_filter:
filters:
- log_type_filter:
…

Robert Kelley
- 35
- 5
0
votes
0 answers
Changing ExchangeAttribute for Undertow access logs
I have undertow configuration defined in my application.yaml as:
undertow:
options:
server:
record-request-start-time: true
accesslog:
dir: logs/access
enabled: true
pattern: '%h %l %u %t "%r" %s %b %D'
I…

Akash Shinde
- 91
- 12
0
votes
1 answer
How to log the Range header info in client requests to NGINX in Access Log
I want to log what is in the Range header in requests sent to Nginx, in Access Log if possible. How to do that?

Chen Jiang
- 65
- 5
0
votes
0 answers
Customising access logs in spring-boot - undertow
I have undertow properties configured in spring-boot - application.yaml as below:
undertow:
accesslog:
dir: logs/access
enabled: true
pattern: '%h %l %u %t "%r" %s %b %D'
I want set custom value to one of the attribute in…

Akash Shinde
- 91
- 12
0
votes
0 answers
How to off auto escaping (backslash) double quote when i log with AccessLogValve of Tomcat8
I have to make logs using AccessLogValve of tomcat8.
The logs include double quote.
Tomcat server.xml below
...

user10953698
- 107
- 1
- 7