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
1 answer

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 about how users interact with the site (ip,…
Xeoncross
  • 55,620
  • 80
  • 262
  • 364
0
votes
2 answers

How pandas is handling square brackets [] and how to avoid that?

I have to read a tomcat access-log that has lines like: [06/Nov/2020:00:43:04 +0200] /wsi/services/ServicesReadRequest 2265 10.101.101.101 200 21 trying to read the file as csv, setting all columns as string type import pandas as pd …
0
votes
1 answer

Elasticsearch: count number of occurrences of a given value

I am very new to advanced searching with Elasticsearch, and mostly use Kibana. In Kibana, I can do a simple search like this: type:apache_access That turns into this request: { "version": true, "size": 500, "sort": [ { "@timestamp":…
Tyler V.
  • 2,471
  • 21
  • 44
0
votes
1 answer

Access to nginx stream proxy is not logged in access_log file

Thanks for checking my question. I'm trying to log user access from browser, into access_log file which is not working now. My system : [User]-[TCP proxy]-[webserver] nginx/1.6 in AWS EC2 nginx configuration : load_module…
0
votes
1 answer

Tomcat access log rotated file delete within minutes

I am generating tomcat localhost access logs using the class -
Gauraang Khurana
  • 707
  • 1
  • 8
  • 18
0
votes
1 answer

ALB access logs request initiator domain

is there any way to retrieve the user client domain from the ALB access logs? from AWS documantation there is a 'domain_name' attribute but it is indicates the requested server domain rather than the client domain. i know that in nginx there is a…
Dev93
  • 93
  • 2
  • 13
0
votes
1 answer

Attach custom headers to access logs when using dropwizard

I am using dropwizard 1.3.X and am trying to attach a unique correlation id generated in my servlet filter to my access logs. I have tried several approaches but my access log still looks like this 127.0.0.1 - - [20/Aug/2020:18:15:56 +0000] "GET…
hal9000
  • 201
  • 5
  • 25
0
votes
2 answers

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?
RedDragon
  • 2,080
  • 2
  • 26
  • 42
0
votes
0 answers

GCS Access Log stopped to be stored

I'm using GCS. I set the access log setting according to the following instructions and I was getting logs correctly. https://cloud.google.com/storage/docs/access-logs However, since 11 hours ago, access log has no longer been stored in the…
tera_mx
  • 145
  • 1
  • 11
0
votes
2 answers

browser version - expressjs / morgan

I need to collect the user access log in the application, mainly the name and version of the browser he is using. However, morgan is bringing many details that I don't need, can you help me? Currently: Firefox ::1 - OPTIONS - /signin - 204 - 0 -…
rufus05
  • 43
  • 1
  • 10
0
votes
1 answer

Significance of "-" in place of user name in Tomcat Access Log

I have a JIRA instance running on Tomcat. I am trying to parse the Tomcat Access Log to finally display it in a Kibana Dashboard so that I can monitor the usage. My typical access log line looks like this : 100.10.10.10 1x756917x1 collabin…
Majo
  • 15
  • 6
0
votes
1 answer

In kubernetes, localhost_access_log.txt is output to file in the pod。 How do I to collect them using filebeat?

In kubernetes, tomcat catalina.log is collected to stdout,but localhost_access_log.txt is output to file in the pod。 How do I to collect access log by kubernetes log driver?I am currently using filebeat
mudit
  • 28
  • 3
0
votes
2 answers

NGINX access.log not updating

I've created a simple HTML website with 4 html pages (4 links). The access.log doesn't update for accessing a html page more than once. E.g. user clicks on link #1 -> link #2 -> link #1 The access.log will only show: GET /page#1.html GET…
Johno Cown
  • 29
  • 6
0
votes
1 answer

Tomcat access logging through log4j2?

I'm trying to have my own configuration for access logging with log4j2 logging framework in my web application that is using tomcat. While I see there is a Access log valve that can be used for logback, I didn't find any access log valve to override…
Chethan B
  • 1
  • 3
0
votes
3 answers

Generate random reqId for concurrent requests in NodeJS

I am trying to generate random requestId for my express server. I have been using uuidV1() from node-uuid module. It's working fine for the normal requests but when i'm trying to loadtest it using concurrent requests. the generated value is…