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
3
votes
2 answers

How can I log Azure Service Bus access?

Is there a way to log access to Azure Service Bus? We are looking for a way to log who create/delete a topic/subscription/namespace in Service Bus, either from Azure portal or from an external source like an API or Service Bus Explorer. We have…
seday
  • 31
  • 1
  • 3
3
votes
1 answer

HTTP Statuscode 500 in Tomcat AccesLog on ClientAbortException / BrokenPipe

We set up some dashboards and visualisations with Kibana to monitor our accessLogs generated by tomcat for our spring boot web application. We specifically are paying attention to Requests that have been answered with Statuscode 5xx. As it turns…
icyerasor
  • 4,973
  • 1
  • 43
  • 52
3
votes
0 answers

Has anyone else seen '/online-test.json' in their access logs?

We have been getting a ton of 404's looking for the above. We have verified that this is coming from a valid user but we cannot see what is actually looking for this file. This continues even when the user is not logged in and this is the only user…
3
votes
2 answers

How to add Laravel username to the access log of nginx?

Anyone has an idea of how to include the Laravel's username of my users into the access log? I'm using Laravel 5.2 with Nginx on Ubuntu 16.04. I know how to add data to the access log in Nginx, but, how do I pass information (in this case the…
3
votes
1 answer

access.log not logging messages in apache2

I seeing a weird behaviour in access.log logging by apache2. Only the first 2 requests from the same client are logged but not after that. The Virtualhost config file is having this setting: CustomLog ${APACHE_LOG_DIR}/access.log combined Can…
Suresh
  • 153
  • 2
  • 2
  • 9
3
votes
1 answer

Log in value from Set-Cookie header in nginx

Is it possible to write in nginx access log value of key 'uuid' from Cookie for server response (header: Set-Cookie)? $cookie_uuid - return uuid that sent client $sent_http_set_cookie - return whole header Set-Cookie:…
Alexey
  • 2,326
  • 5
  • 17
  • 27
2
votes
1 answer

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.
RJ.
  • 332
  • 5
  • 16
2
votes
1 answer

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 - - [30/Nov/2011:09:36:12 -0500]…
Charles McAnany
  • 195
  • 1
  • 2
  • 7
2
votes
3 answers

MDC related content in tomcat access-logs

Can MDC related content be made available in tomcat access logs in spring boot application. I have gone through lot of blogs but everywhere the contents of MDC are logged to application logs but not in access logs. Is there any way to add them in…
Aditya
  • 950
  • 8
  • 37
2
votes
1 answer

is there any way to see the access logs for azure load balancer

I have a standard load balancer in azure, and some clients complain that they receive 503 error status code. They are accessing the load balancer service behind their local proxy server. I suspect the issue is on the client side (at the proxy…
catalin
  • 946
  • 6
  • 14
  • 31
2
votes
2 answers

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 application, without having to rely on tomcat's…
André Fernandes
  • 2,335
  • 3
  • 25
  • 33
2
votes
2 answers

User Agent missing in an access.log of the Traefik

I have configured Traefik 2.3.1 to write an accesslog to a file. But the log is missing User Agent (browser, OS info). Is it somehow configurable? The Traefik is running from docker-compose.yml: version: '3.4' services: proxy: image:…
Airenas
  • 346
  • 2
  • 8
2
votes
0 answers

istio somehow overriding default access logging format of envoy

As is very well explained in this elaborate answer, you can customise istio's logging format in IstioOperator. In my case, IstioOperator (when it comes to access logging configuration) looks like this meshConfig: accessLogEncoding: JSON …
pkaramol
  • 16,451
  • 43
  • 149
  • 324
2
votes
3 answers

/dev/stdout permission denied Tomcat access logs

I'm trying to enable Tomcat access logs in the STS console, but i get an error on startup: java.io.FileNotFoundException: /dev/stdout.2020-09-02 (Permission denied) at java.io.FileOutputStream.open0(Native Method) at…
2
votes
0 answers

Access http request header value in tomcat access log from spring boot logback

In my spring boot microservice module I would like to capture specific request header values from a http servlet request through tomcat access log and use the header value in my logback logging. I am using logback xml only, no logback-access file.…
Srini R
  • 21
  • 2
1 2
3
15 16