2014-04-12 05:18:18 +00:00
|
|
|
// Beego (http://beego.me/)
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @description beego is an open-source, high-performance web framework for the Go programming language.
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @link http://github.com/astaxie/beego for the canonical source repository
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @license http://github.com/astaxie/beego/blob/master/LICENSE
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @authors astaxie
|
2013-11-20 13:17:49 +00:00
|
|
|
package toolbox
|
2013-11-13 13:11:03 +00:00
|
|
|
|
|
|
|
import (
|
2013-11-15 10:21:26 +00:00
|
|
|
"fmt"
|
2013-11-15 10:08:53 +00:00
|
|
|
"io"
|
2013-11-13 13:11:03 +00:00
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2014-01-29 11:12:00 +00:00
|
|
|
// Statistics struct
|
2013-11-13 13:11:03 +00:00
|
|
|
type Statistics struct {
|
|
|
|
RequestUrl string
|
|
|
|
RequestController string
|
|
|
|
RequestNum int64
|
|
|
|
MinTime time.Duration
|
|
|
|
MaxTime time.Duration
|
|
|
|
TotalTime time.Duration
|
|
|
|
}
|
|
|
|
|
2014-01-29 11:12:00 +00:00
|
|
|
// UrlMap contains several statistics struct to log different data
|
2013-11-13 13:11:03 +00:00
|
|
|
type UrlMap struct {
|
2013-11-17 15:10:21 +00:00
|
|
|
lock sync.RWMutex
|
|
|
|
LengthLimit int //limit the urlmap's length if it's equal to 0 there's no limit
|
|
|
|
urlmap map[string]map[string]*Statistics
|
2013-11-13 13:11:03 +00:00
|
|
|
}
|
|
|
|
|
2014-01-29 11:12:00 +00:00
|
|
|
// add statistics task.
|
|
|
|
// it needs request method, request url, request controller and statistics time duration
|
2013-11-13 13:11:03 +00:00
|
|
|
func (m *UrlMap) AddStatistics(requestMethod, requestUrl, requestController string, requesttime time.Duration) {
|
|
|
|
m.lock.Lock()
|
|
|
|
defer m.lock.Unlock()
|
|
|
|
if method, ok := m.urlmap[requestUrl]; ok {
|
|
|
|
if s, ok := method[requestMethod]; ok {
|
|
|
|
s.RequestNum += 1
|
|
|
|
if s.MaxTime < requesttime {
|
|
|
|
s.MaxTime = requesttime
|
|
|
|
}
|
|
|
|
if s.MinTime > requesttime {
|
|
|
|
s.MinTime = requesttime
|
|
|
|
}
|
|
|
|
s.TotalTime += requesttime
|
|
|
|
} else {
|
|
|
|
nb := &Statistics{
|
|
|
|
RequestUrl: requestUrl,
|
|
|
|
RequestController: requestController,
|
|
|
|
RequestNum: 1,
|
|
|
|
MinTime: requesttime,
|
|
|
|
MaxTime: requesttime,
|
|
|
|
TotalTime: requesttime,
|
|
|
|
}
|
|
|
|
m.urlmap[requestUrl][requestMethod] = nb
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2013-11-17 15:10:21 +00:00
|
|
|
if m.LengthLimit > 0 && m.LengthLimit <= len(m.urlmap) {
|
|
|
|
return
|
|
|
|
}
|
2013-11-13 13:11:03 +00:00
|
|
|
methodmap := make(map[string]*Statistics)
|
|
|
|
nb := &Statistics{
|
|
|
|
RequestUrl: requestUrl,
|
|
|
|
RequestController: requestController,
|
|
|
|
RequestNum: 1,
|
|
|
|
MinTime: requesttime,
|
|
|
|
MaxTime: requesttime,
|
|
|
|
TotalTime: requesttime,
|
|
|
|
}
|
|
|
|
methodmap[requestMethod] = nb
|
|
|
|
m.urlmap[requestUrl] = methodmap
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-29 11:12:00 +00:00
|
|
|
// put url statistics result in io.Writer
|
2013-11-15 10:08:53 +00:00
|
|
|
func (m *UrlMap) GetMap(rw io.Writer) {
|
2013-11-13 13:11:03 +00:00
|
|
|
m.lock.RLock()
|
|
|
|
defer m.lock.RUnlock()
|
2013-11-15 13:45:51 +00:00
|
|
|
fmt.Fprintf(rw, "| % -50s| % -10s | % -16s | % -16s | % -16s | % -16s | % -16s |\n", "requestUrl", "method", "times", "used", "max used", "min used", "avg used")
|
2013-11-15 10:08:53 +00:00
|
|
|
for k, v := range m.urlmap {
|
|
|
|
for kk, vv := range v {
|
2013-11-15 13:45:51 +00:00
|
|
|
fmt.Fprintf(rw, "| % -50s| % -10s | % -16d | % -16s | % -16s | % -16s | % -16s |\n", k,
|
|
|
|
kk, vv.RequestNum, toS(vv.TotalTime), toS(vv.MaxTime), toS(vv.MinTime), toS(time.Duration(int64(vv.TotalTime)/vv.RequestNum)),
|
2013-11-15 10:21:26 +00:00
|
|
|
)
|
2013-11-15 10:08:53 +00:00
|
|
|
}
|
2013-11-13 13:11:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-29 11:12:00 +00:00
|
|
|
// global statistics data map
|
2013-11-13 13:11:03 +00:00
|
|
|
var StatisticsMap *UrlMap
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
StatisticsMap = &UrlMap{
|
|
|
|
urlmap: make(map[string]map[string]*Statistics),
|
|
|
|
}
|
|
|
|
}
|