1
0
Fork 0
forked from forgejo/forgejo

Support http service graceful restart (#416)

* support http service graceful restart

* fix dependencies
This commit is contained in:
Lunny Xiao 2016-12-31 09:00:33 +08:00 committed by GitHub
parent fa60cf0ea4
commit 527c2dd665
20 changed files with 1919 additions and 3 deletions

17
vendor/github.com/facebookgo/stats/stopper.go generated vendored Normal file
View 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)
}