mirror of
https://github.com/go-gitea/gitea
synced 2025-07-12 21:47:19 +00:00
Support http service graceful restart (#416)
* support http service graceful restart * fix dependencies
This commit is contained in:
17
vendor/github.com/facebookgo/stats/stopper.go
generated
vendored
Normal file
17
vendor/github.com/facebookgo/stats/stopper.go
generated
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
package stats
|
||||
|
||||
import "time"
|
||||
|
||||
// Stopper calls Client.BumpSum and Client.BumpHistogram when End'ed
|
||||
type Stopper struct {
|
||||
Key string
|
||||
Start time.Time
|
||||
Client Client
|
||||
}
|
||||
|
||||
// End the Stopper
|
||||
func (s *Stopper) End() {
|
||||
since := time.Since(s.Start).Seconds() * 1000.0
|
||||
s.Client.BumpSum(s.Key+".total", since)
|
||||
s.Client.BumpHistogram(s.Key, since)
|
||||
}
|
Reference in New Issue
Block a user