mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-11 16:14:05 -08:00
2833ad490b
hashicorp/serf is only required as a dependency of hashicorp/consul so bumping the version has no direct consequence for Prometheus itself. The net gain is that we don't depend anymore on launchpad.net/gocheck which required the bzr binary to be installed. Signed-off-by: Simon Pasquier <spasquie@redhat.com>
13 lines
153 B
Go
13 lines
153 B
Go
// +build !windows
|
|
|
|
package metrics
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
const (
|
|
// DefaultSignal is used with DefaultInmemSignal
|
|
DefaultSignal = syscall.SIGUSR1
|
|
)
|