aboutsummaryrefslogtreecommitdiff
path: root/plugin/metrics/metrics.go
diff options
context:
space:
mode:
authorGravatar Miek Gieben <miek@miek.nl> 2018-03-02 18:17:05 -0800
committerGravatar GitHub <noreply@github.com> 2018-03-02 18:17:05 -0800
commitacf823cd78d295c4664937ef7ac72b96349a1cf0 (patch)
treef1ea279480d0ea6e3a649bd1a4de20666794eebf /plugin/metrics/metrics.go
parent6cec66ce404b8f680cca5d03584ebcbd1ab888e0 (diff)
downloadcoredns-acf823cd78d295c4664937ef7ac72b96349a1cf0.tar.gz
coredns-acf823cd78d295c4664937ef7ac72b96349a1cf0.tar.zst
coredns-acf823cd78d295c4664937ef7ac72b96349a1cf0.zip
Metrics2 (#1588)
* plugin/metrics: still need nil check for shutdown the second prometheus statement will trigger: (on control-C) [signal SIGSEGV: segmentation violation code=0x1 addr=0x28 pc=0x94f45a] goroutine 25 [running]: github.com/coredns/coredns/plugin/metrics.(*Metrics).OnShutdown(0xc420252000, 0x0, 0x0) /home/miek/g/src/github.com/coredns/coredns/plugin/metrics/metrics.go:107 +0x2a github.com/coredns/coredns/plugin/metrics.(*Metrics).OnShutdown-fm(0x0, 0x0) /home/miek/g/src/github.com/coredns/coredns/plugin/metrics/setup.go:39 +0x2a github.com/mholt/caddy.(*Instance).ShutdownCallbacks(0xc4202c81e0, 0x0, 0x0, 0x0) /home/miek/g/src/github.com/mholt/caddy/caddy.go:164 +0xb3 github.com/mholt/caddy.allShutdownCallbacks(0x1743935, 0x8, 0x14a1b40) /home/miek/g/src/github.com/mholt/caddy/sigtrap.go:95 +0x10d github.com/mholt/caddy.executeShutdownCallbacks.func1() /home/miek/g/src/github.com/mholt/caddy/sigtrap.go:75 +0x8f sync.(*Once).Do(0x2256b80, 0xc42036df88) /home/miek/upstream/go/src/sync/once.go:44 +0xbe github.com/mholt/caddy.executeShutdownCallbacks(0x174033f, 0x6, 0x0) /home/miek/g/src/github.com/mholt/caddy/sigtrap.go:71 +0x73 github.com/mholt/caddy.trapSignalsCrossPlatform.func1.1() /home/miek/g/src/github.com/mholt/caddy/sigtrap.go:61 +0x36 created by github.com/mholt/caddy.trapSignalsCrossPlatform.func1 /home/miek * comments on why
Diffstat (limited to 'plugin/metrics/metrics.go')
-rw-r--r--plugin/metrics/metrics.go9
1 files changed, 8 insertions, 1 deletions
diff --git a/plugin/metrics/metrics.go b/plugin/metrics/metrics.go
index 0c24ffd15..a49984b3d 100644
--- a/plugin/metrics/metrics.go
+++ b/plugin/metrics/metrics.go
@@ -104,7 +104,14 @@ func (m *Metrics) OnStartup() error {
}
// OnShutdown tears down the metrics listener on shutdown and restart.
-func (m *Metrics) OnShutdown() error { return m.ln.Close() }
+func (m *Metrics) OnShutdown() error {
+ // We allow prometheus statements in multiple Server Blocks, but only the first
+ // will open the listener, for the rest they are all nil; guard against that.
+ if m.ln != nil {
+ return m.ln.Close()
+ }
+ return nil
+}
func keys(m map[string]bool) []string {
sx := []string{}