The access log generated by Dropwizard has the following format: -
10.10.10.10 - - [16 / March / 2015: 23: 59: 59 +0530] "GET / yyyy / vx.x / uri HTTP / 1.1" 200 - "-" "-" 1
Field 1: - 10.10.10.10 (Ip Address from which the request was sent)
Field 2: - [16 / March / 2015: 23: 59: 59 +0530] (Time and date when the request arrived)
Field 3: - "GET / yyyy / vx.x / uri HTTP / 1.1" (HTTP Rest Rest API method)
Field 4: - 200 (HTTP response code)
Field 5: - "-" (????)
Field 6: - "-" (????) Field 7: - 1 (????)
Can someone explain the meaning of each field in the access log format? I'm more interested in learning about the last value of a column.
Thanks for the help.
source share