12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package model
- import "time"
- //ReportTimely report timely
- type ReportTimely struct {
- ID int `json:"id" gorm:"AUTO_INCREMENT;primary_key;" form:"id"`
- TestName string `json:"test_name" form:"test_name"`
- Count int `json:"count"`
- QPS int `json:"qps"`
- AvgTime int `json:"avg_time"`
- Min int `json:"min"`
- Max int `json:"max"`
- Error int `json:"error"`
- FailPercent string `json:"fail_percent"`
- NinetyTime int `json:"ninety_time"`
- NinetyFiveTime int `json:"ninety_five_time"`
- NinetyNineTime int `json:"ninety_nine_time"`
- NetIo int `json:"net_io"`
- CodeEll int `json:"code_ell"`
- CodeWll int `json:"code_wll"`
- CodeWly int `json:"code_wly"`
- CodeWle int `json:"code_wle"`
- CodeWls int `json:"code_wls"`
- CodeSll int `json:"code_sll"`
- CodeSly int `json:"code_sly"`
- CodeSls int `json:"code_sls"`
- CodeKong int `json:"code_kong"`
- CodeNonHTTP int `json:"code_non_http"`
- CodeOthers int `json:"code_others"`
- PodName string `json:"pod_name" form:"pod_name"`
- ThreadsSum int `json:"threads_sum"`
- Ctime time.Time `json:"ctime"`
- Mtime time.Time `json:"mtime"`
- FiftyTime int `json:"fifty_time"`
- Code301 int `json:"code301"`
- Code302 int `json:"code302"`
- }
- //TableName table name
- func (r ReportTimely) TableName() string {
- return "report_timely"
- }
|