mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-07 02:20:25 +08:00
15 lines
366 B
Go
15 lines
366 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"))
|
|
}
|