Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In log files what is the meaning of: s c sc cs?

Like here on TechNet - under the "Appears As" column - c-ip, cs-uri-query, etc.

(I got a log file where the columns are described that way but I don't understand those prefix letters.)

like image 663
ispiro Avatar asked Oct 23 '25 17:10

ispiro


1 Answers

  • c: client (e.g. c-ip, the IP address of the client)
  • s: server (e.g. s-ip, the IP address of the server)
  • cs: from client to server (e.g. cs-bytes, the number of bytes sent to the server)
  • sc: from server to client (e.g. sc-bytes, the number of bytes sent to the client)
like image 178
Heinzi Avatar answered Oct 26 '25 07:10

Heinzi