mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-06 01:50:26 +08:00
13 lines
345 B
Go
13 lines
345 B
Go
|
|
package nodes
|
||
|
|
|
||
|
|
import "github.com/TeaOSLab/EdgeNode/internal/stats"
|
||
|
|
|
||
|
|
// 统计
|
||
|
|
func (this *HTTPRequest) doStat() {
|
||
|
|
if this.Server == nil {
|
||
|
|
return
|
||
|
|
}
|
||
|
|
stats.SharedHTTPRequestStatManager.AddRemoteAddr(this.Server.Id, this.requestRemoteAddr())
|
||
|
|
stats.SharedHTTPRequestStatManager.AddUserAgent(this.Server.Id, this.requestHeader("User-Agent"))
|
||
|
|
}
|