隨著Web應用程式的發展,人們對效能和程式碼最佳化的需求也越來越高。在這種情況下,對請求的監控和統計變得尤為重要。這篇文章將介紹如何使用Golang和Gin框架來實現請求統計功能。
背景
在網路應用程式中,遇到以下情況可能會導致效能問題:
#在這樣的情況下,對請求進行統計並可視化展示可以幫助我們快速發現問題並採取適當的措施。
如何統計請求
首先,我們需要定義一個中間件來記錄所有經過伺服器的請求資訊。對於每個請求,我們需要記錄以下資訊:
func RequestStats() gin.HandlerFunc { return func(c *gin.Context) { t := time.Now() c.Next() latency := time.Since(t) status := c.Writer.Status() path := c.Request.URL.Path method := c.Request.Method log.Printf("[GIN] %s %s %d %v", method, path, status, latency) } }
router := gin.Default() router.Use(RequestStats())
func GetStats(c *gin.Context) { data, err := ioutil.ReadFile("stats.txt") if err != nil { c.String(http.StatusInternalServerError, fmt.Sprintf("Error reading file: %v", err)) return } c.HTML(http.StatusOK, "stats.html", gin.H{ "title": "Request Statistics", "data": string(data), }) }
<!DOCTYPE html> <html> <head> <title>{{.title}}</title> <style> table { border-collapse: collapse; width: 100%; } th, td { text-align: left; padding: 8px; } th { background-color: #4CAF50; color: white; } tr:nth-child(even){background-color: #f2f2f2} </style> </head> <body> <h2>{{.title}}</h2> <table> <tr> <th>HTTP Method</th> <th>Request Path</th> <th>Status Code</th> <th>Latency</th> </tr> {{range split .data " "}} {{with split . " "}} <tr> <td>{{index . 0}}</td> <td>{{index . 1}}</td> <td>{{index . 2}}</td> <td>{{index . 3}}</td> </tr> {{end}} {{end}} </table> </body> </html>
router.GET("/stats", GetStats)
以上是golang gin請求統計的詳細內容。更多資訊請關注PHP中文網其他相關文章!