aboutsummaryrefslogtreecommitdiff
path: root/weed/server/volume_server.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2020-09-24 10:21:23 -0700
committerChris Lu <chris.lu@gmail.com>2020-09-24 10:21:23 -0700
commit4856bce0ee929088c64e311b4ac554e872fba12e (patch)
treed67aac32f6f554a0ea901a36a07a7bf34390146c /weed/server/volume_server.go
parentd2d3aec3e160f4ae44a4f3f21595a9be51fd9189 (diff)
downloadseaweedfs-4856bce0ee929088c64e311b4ac554e872fba12e.tar.xz
seaweedfs-4856bce0ee929088c64e311b4ac554e872fba12e.zip
adjust for metrics port
Diffstat (limited to 'weed/server/volume_server.go')
-rw-r--r--weed/server/volume_server.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/weed/server/volume_server.go b/weed/server/volume_server.go
index 2a9097f01..83df32fdd 100644
--- a/weed/server/volume_server.go
+++ b/weed/server/volume_server.go
@@ -46,7 +46,6 @@ func NewVolumeServer(adminMux, publicMux *http.ServeMux, ip string,
readRedirect bool,
compactionMBPerSecond int,
fileSizeLimitMB int,
- metricsHttpPort int,
) *VolumeServer {
v := util.GetViper()
@@ -98,8 +97,7 @@ func NewVolumeServer(adminMux, publicMux *http.ServeMux, ip string,
}
go vs.heartbeat()
- go stats.StartMetricsServer(stats.VolumeServerGather, metricsHttpPort)
- go stats.LoopPushingMetric("volumeServer", fmt.Sprintf("%s:%d", ip, port), stats.VolumeServerGather, vs.metricsAddress, vs.metricsIntervalSec)
+ go stats.LoopPushingMetric("volumeServer", fmt.Sprintf("%s:%d", ip, port), vs.metricsAddress, vs.metricsIntervalSec)
return vs
}