113 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			113 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Beego (http://beego.me/)
 | |
| //
 | |
| // @description beego is an open-source, high-performance web framework for the Go programming language.
 | |
| //
 | |
| // @link        http://github.com/astaxie/beego for the canonical source repository
 | |
| //
 | |
| // @license     http://github.com/astaxie/beego/blob/master/LICENSE
 | |
| //
 | |
| // @authors     astaxie
 | |
| package toolbox
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"sync"
 | |
| 	"time"
 | |
| )
 | |
| 
 | |
| // Statistics struct
 | |
| type Statistics struct {
 | |
| 	RequestUrl        string
 | |
| 	RequestController string
 | |
| 	RequestNum        int64
 | |
| 	MinTime           time.Duration
 | |
| 	MaxTime           time.Duration
 | |
| 	TotalTime         time.Duration
 | |
| }
 | |
| 
 | |
| // UrlMap contains several statistics struct to log different data
 | |
| type UrlMap struct {
 | |
| 	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
 | |
| }
 | |
| 
 | |
| // add statistics task.
 | |
| // it needs request method, request url, request controller and statistics time duration
 | |
| 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 {
 | |
| 		if m.LengthLimit > 0 && m.LengthLimit <= len(m.urlmap) {
 | |
| 			return
 | |
| 		}
 | |
| 		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
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // put url statistics result in io.Writer
 | |
| func (m *UrlMap) GetMap() [][]string {
 | |
| 	m.lock.RLock()
 | |
| 	defer m.lock.RUnlock()
 | |
| 	resultLists := make([][]string, 0)
 | |
| 
 | |
| 	var result = []string{"requestUrl", "method", "times", "used", "max used", "min used", "avg used"}
 | |
| 	resultLists = append(resultLists, result)
 | |
| 	for k, v := range m.urlmap {
 | |
| 		for kk, vv := range v {
 | |
| 			result := []string{
 | |
| 				fmt.Sprintf("% -50s", k),
 | |
| 				fmt.Sprintf("% -10s", kk),
 | |
| 				fmt.Sprintf("% -16d", vv.RequestNum),
 | |
| 				fmt.Sprintf("% -16s", toS(vv.TotalTime)),
 | |
| 				fmt.Sprintf("% -16s", toS(vv.MaxTime)),
 | |
| 				fmt.Sprintf("% -16s", toS(vv.MinTime)),
 | |
| 				fmt.Sprintf("% -16s", toS(time.Duration(int64(vv.TotalTime)/vv.RequestNum))),
 | |
| 			}
 | |
| 			resultLists = append(resultLists, result)
 | |
| 		}
 | |
| 	}
 | |
| 	return resultLists
 | |
| }
 | |
| 
 | |
| // global statistics data map
 | |
| var StatisticsMap *UrlMap
 | |
| 
 | |
| func init() {
 | |
| 	StatisticsMap = &UrlMap{
 | |
| 		urlmap: make(map[string]map[string]*Statistics),
 | |
| 	}
 | |
| }
 |