Compare commits

...

1 Commits

Author SHA1 Message Date
9cd743af7f fix: stat path 2025-12-14 15:35:44 +08:00

View File

@@ -16,6 +16,6 @@ func StatMiddleware(c fiber.Ctx) error {
status = "500"
}
}
stat.RecordRequest(c.Method(), c.Path(), status)
stat.RecordRequest(c.Method(), c.Route().Path, status)
return err
}