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
0
votes
2 answers
Finding User Agents and IPs which make more than 10 req/s in access logs
I would like to find IP addresses and user agents that have made more than 10 server requests per second. Help me, please. How can I do this? Maybe with awk, grep?
Here's a typical lines from my Access Log:
176.9.50.244 - - [28/Jan/2023:03:26:14…

shurc
- 11
- 2
0
votes
0 answers
Web built with vue. I want to collect vue accesslog, what should I do?
I want to collect logs for monitoring in Kibana.
Web built with vue. I want to collect vue accesslog, what should I do?

kingjun
- 1
- 1
0
votes
0 answers
Continuously/automatically saving access logs for Apache Web Server on a Raspberry Pi
Does anybody know how to have the access logs for an Apache server on a Raspberry Pi saved before it is overwritten(or if it is even possible)?
I am using it to see who has accessed a website and need a way to store it regularly without losing any…

mmm12
- 1
- 1
0
votes
0 answers
path field is not present when resource_path is "/" in AWS api gateway access log
I have a lambda function that subscribes to the API Gateway Access Logs. Here , I am trying to fetch the path and resource path from the api gateway log. The issue I am facing is that, when the resource_path is coming as "/", the path field is…

Vipin V Kartha
- 19
- 4
0
votes
1 answer
How can I log the full request url within a traefik reverse proxy
When I setup Traefik as a reverse proxy I have some options for access logs as described here: https://doc.traefik.io/traefik/observability/access-logs/#limiting-the-fieldsincluding-headers.
All available fields.names should be visible by default.…

to4st
- 21
- 3
0
votes
1 answer
Configuring access log pattern for Spring Boot application on external Tomcat
I have a Spring Boot 2.7.2 web application. The Tomcat access log properties are defined as
server.tomcat.accesslog.enabled=TRUE
server.tomcat.accesslog.directory=log
server.tomcat.accesslog.pattern=%h %l %u [%t] "%r" %s %b "%{Referer}i"…

thomas.schuerger
- 121
- 1
- 6
0
votes
0 answers
How to understand and get information from a log string
I have a user log example like this:
141.154.49.202 - - [21/Jul/2021:14:26:42 +0000]
"GET…

Carlos
- 167
- 1
- 2
- 14
0
votes
1 answer
Console Logging in Spring Boot with undertow embedded server
I am trying to get access log of an embedded undertow server from spring boot > 2.0 to stdout of an container. With embedded tomcat spring properties can work, but the same does not for undertow server. I tried modifying server.undertow.accesslog.*…
0
votes
1 answer
Laravel Custom User Log Activity
Using Log Activity helper class I have done the part ,but the agent data is not correct or is showing demo data. When I am using chrome it shows same data even I use Firefox or another browser. How can I resolve the issue, I want when I am using…

Joyanta sarkar
- 53
- 1
- 8
0
votes
1 answer
Why apache access logs show request client IP as my server's IP?
As the subject says, I see entries like these in my raw access logs of apache:
XXX.XXX.XXX.195 - - [07/Jan/2022:11:12:45 +0200] "GET /index.php HTTP/1.1" 200 9487 "https://www.my_domain.com/index.php" "Mozilla/5.0 (Windows NT 10.0; Win64; x64)…

MerNion
- 17
- 1
- 7
0
votes
2 answers
Can we add new filed inside elb access log?
As of now i am getting ELB logs from S3. I want to add one more field inside the logs(elb access log). Is it possible to add new field when generating new access log?

Karthika Muralidaran
- 21
- 1
- 2
0
votes
1 answer
apache access logs too many access entry
I checked the access_log '/var/log/virtualmin/example.com_access_log'
and I found literally thousands of lines of the below (every second 15-20 request)
please guide me for this issue
access_log entry:
106.85.76.233 - - [22/Dec/2021:11:46:54 +0100]…

sarfaraj
- 31
- 2
0
votes
1 answer
Webflux access log header
How to customize the reactor access log in Spring webflux?
I am able to turn on reactor netty access log by setting
-Dreactor.netty.http.server.accessLogEnabled=true
I would like to customize the format, eg: I need a few request headers to be…

Neo123
- 3
- 2
0
votes
1 answer
passing HTTP access logs to Kibana with fluentd
I am trying to view HTTP access logs from Kibana but was unable to do so.
Sample HTTP access logs.
- 127.0.0.1 - - [12/Apr/2021:12:18:45.378 +0530] "GET /pizzashack/1.0.0/menu HTTP/1.1" - - "https://localhost:9443/" "Mozilla/5.0 (Macintosh; Intel…

Prabhashi
- 128
- 1
- 5
0
votes
1 answer
API Gateway Access Log using Cloudformation
I need to enable Custom Access Logging in API Gateway. The cloudformation is written in yaml. But for the format of the custom logs it is in json, xml such formats but nothing is mentioned how to set format of access log in yaml. Does anyone knows…

Lovish Singla
- 21
- 3