首页 > 代码库 > haproxy日志解析

haproxy日志解析

port8089/wms02 203/0/2/2/184262 101 6767 - - ---- 1/1/1/1/0 0/0 "GET /376/3fg34yj9/websocket HTTP/1.1"
port8089/wms01 416/0/1/2/419 200 401 - - ---- 3/3/1/1/0 0/0 "GET /info HTTP/1.1"


ort8089/wms02 197/0/1/2/25429 101 1734 - - ---- 1/1/1/1/0 0/0 "GET /571/x8nlsqex/websocket HTTP/1.1"


为什么会出现200呢?我们101是正常http响应码


The status code is always 3-digit. The first digit indicates a general status :
 - 1xx = informational message to be skipped (eg: 100, 101)
 - 2xx = OK, content is following   (eg: 200, 206)
 - 3xx = OK, no content following   (eg: 302, 304)
 - 4xx = error caused by the client (eg: 401, 403, 404)
 - 5xx = error caused by the server (eg: 500, 502, 503
 
 从这里可以看出这2个响应码其实都没问题。
 是后端配置的问题





本文出自 “小V运维之路” 博客,请务必保留此出处http://victor2016.blog.51cto.com/6768693/1900509

haproxy日志解析