docs/monitoring: change suggested prometheus port to 9811

Change to 9811 as registered with the prometheus project now.

Closes #444.
This commit is contained in:
Lapo Luchini
2021-03-26 07:57:43 +01:00
committed by Christian Schwarz
parent f661d9429f
commit 3b5a1a8b9a
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -70,9 +70,9 @@ func TestPrometheusMonitoring(t *testing.T) {
global:
monitoring:
- type: prometheus
listen: ':9091'
listen: ':9811'
`)
assert.Equal(t, ":9091", conf.Global.Monitoring[0].Ret.(*PrometheusMonitoring).Listen)
assert.Equal(t, ":9811", conf.Global.Monitoring[0].Ret.(*PrometheusMonitoring).Listen)
}
func TestSyslogLoggingOutletFacility(t *testing.T) {