logger.go 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package http
  2. import (
  3. "fmt"
  4. "strconv"
  5. "strings"
  6. "time"
  7. "go-common/library/ecode"
  8. "go-common/library/log"
  9. bm "go-common/library/net/http/blademaster"
  10. "go-common/library/net/metadata"
  11. "go-common/library/stat"
  12. )
  13. // logger is logger middleware
  14. func logger() bm.HandlerFunc {
  15. const noUser = "no_user"
  16. return func(c *bm.Context) {
  17. now := time.Now()
  18. ip := metadata.String(c, metadata.RemoteIP)
  19. req := c.Request
  20. path := req.URL.Path
  21. params := req.Form
  22. c.Next()
  23. mid, _ := c.Get("mid")
  24. userI, _ := c.Get("user")
  25. err := c.Error
  26. cerr := ecode.Cause(err)
  27. dt := time.Since(now)
  28. // user
  29. user, ok := userI.(string)
  30. if !ok || user == "" {
  31. user = noUser
  32. }
  33. realPath := ""
  34. if strings.HasPrefix(path, "/x/internal/shorturl") {
  35. realPath = path[1:]
  36. } else {
  37. realPath = "shorturl"
  38. }
  39. stat.HTTPServer.Incr(user, realPath, strconv.FormatInt(int64(cerr.Code()), 10))
  40. stat.HTTPServer.Timing(user, int64(dt/time.Millisecond), realPath)
  41. lf := log.Infov
  42. errmsg := ""
  43. if err != nil {
  44. errmsg = err.Error()
  45. lf = log.Errorv
  46. }
  47. lf(c,
  48. log.KV("method", req.Method),
  49. log.KV("mid", mid),
  50. log.KV("ip", ip),
  51. log.KV("user", user),
  52. log.KV("path", path),
  53. log.KV("params", params.Encode()),
  54. log.KV("ret", cerr.Code()),
  55. log.KV("msg", cerr.Message()),
  56. log.KV("stack", fmt.Sprintf("%+v", err)),
  57. log.KV("err", errmsg),
  58. )
  59. }
  60. }