forked from forgejo/forgejo
Support http service graceful restart (#416)
* support http service graceful restart * fix dependencies
This commit is contained in:
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
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)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue