3 Star 5 Fork 4

Gitee 极速下载/Tao

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/leesper/tao
克隆/下载
metrics.go 1.42 KB
一键复制 编辑 原始数据 按行查看 历史
package tao
import (
"expvar"
"fmt"
"net/http"
"strconv"
"github.com/leesper/holmes"
)
var (
handleExported *expvar.Int
connExported *expvar.Int
timeExported *expvar.Float
qpsExported *expvar.Float
)
func init() {
handleExported = expvar.NewInt("TotalHandle")
connExported = expvar.NewInt("TotalConn")
timeExported = expvar.NewFloat("TotalTime")
qpsExported = expvar.NewFloat("QPS")
}
// MonitorOn starts up an HTTP monitor on port.
func MonitorOn(port int) {
go func() {
if err := http.ListenAndServe(fmt.Sprintf(":%d", port), nil); err != nil {
holmes.Errorln(err)
return
}
}()
}
func addTotalConn(delta int64) {
connExported.Add(delta)
calculateQPS()
}
func addTotalHandle() {
handleExported.Add(1)
calculateQPS()
}
func addTotalTime(seconds float64) {
timeExported.Add(seconds)
calculateQPS()
}
func calculateQPS() {
totalConn, err := strconv.ParseInt(connExported.String(), 10, 64)
if err != nil {
holmes.Errorln(err)
return
}
totalTime, err := strconv.ParseFloat(timeExported.String(), 64)
if err != nil {
holmes.Errorln(err)
return
}
totalHandle, err := strconv.ParseInt(handleExported.String(), 10, 64)
if err != nil {
holmes.Errorln(err)
return
}
if float64(totalConn)*totalTime != 0 {
// take the average time per worker go-routine
qps := float64(totalHandle) / (float64(totalConn) * (totalTime / float64(WorkerPoolInstance().Size())))
qpsExported.Set(qps)
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/mirrors/Tao.git
git@gitee.com:mirrors/Tao.git
mirrors
Tao
Tao
master

搜索帮助