in src/request.rs [103:113]
fn get_page_request_header(server: &ZArr) -> Option<String> {
if *SKYWALKING_VERSION >= 8 {
server
.get("HTTP_SW8")
.and_then(|sw| sw.as_z_str())
.and_then(|zs| zs.to_str().ok())
.map(|s| s.to_string())
} else {
None
}
}