ingress-nginx-helm/pkg/cmd/controller/metrics.go

98 lines
2.4 KiB
Go
Raw Normal View History

2016-11-29 01:39:17 +00:00
/*
Copyright 2016 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"github.com/golang/glog"
"github.com/prometheus/client_golang/prometheus"
"k8s.io/ingress/controllers/nginx/pkg/metric/collector"
2016-11-29 01:39:17 +00:00
)
2017-03-12 15:27:05 +00:00
const (
2017-08-31 17:19:32 +00:00
ngxStatusPath = "/nginx_status"
2017-03-12 15:27:05 +00:00
ngxVtsPath = "/nginx_status/format/json"
)
func (n *NGINXController) setupMonitor(sm statusModule) {
csm := n.statusModule
if csm != sm {
2017-03-12 15:27:05 +00:00
glog.Infof("changing prometheus collector from %v to %v", csm, sm)
n.stats.stop(csm)
n.stats.start(sm)
n.statusModule = sm
}
}
type statsCollector struct {
process prometheus.Collector
2017-03-12 15:27:05 +00:00
basic collector.Stopable
vts collector.Stopable
namespace string
watchClass string
2017-08-31 17:19:32 +00:00
port int
2017-03-12 15:27:05 +00:00
}
func (s *statsCollector) stop(sm statusModule) {
switch sm {
case defaultStatusModule:
s.basic.Stop()
prometheus.Unregister(s.basic)
case vtsStatusModule:
s.vts.Stop()
prometheus.Unregister(s.vts)
}
}
2017-03-12 15:27:05 +00:00
func (s *statsCollector) start(sm statusModule) {
switch sm {
case defaultStatusModule:
2017-08-31 17:19:32 +00:00
s.basic = collector.NewNginxStatus(s.namespace, s.watchClass, s.port, ngxStatusPath)
2017-03-12 15:27:05 +00:00
prometheus.Register(s.basic)
break
case vtsStatusModule:
2017-08-31 17:19:32 +00:00
s.vts = collector.NewNGINXVTSCollector(s.namespace, s.watchClass, s.port, ngxVtsPath)
2017-03-12 15:27:05 +00:00
prometheus.Register(s.vts)
break
}
}
2017-08-31 17:19:32 +00:00
func newStatsCollector(ns, class, binary string, port int) *statsCollector {
2017-03-12 15:27:05 +00:00
glog.Infof("starting new nginx stats collector for Ingress controller running in namespace %v (class %v)", ns, class)
2017-08-31 17:19:32 +00:00
glog.Infof("collector extracting information from port %v", port)
2017-03-12 15:27:05 +00:00
pc, err := collector.NewNamedProcess(true, collector.BinaryNameMatcher{
Name: "nginx",
Binary: binary,
})
2016-11-29 01:39:17 +00:00
if err != nil {
2017-03-12 15:27:05 +00:00
glog.Fatalf("unexpected error registering nginx collector: %v", err)
2016-11-29 01:39:17 +00:00
}
err = prometheus.Register(pc)
2016-11-29 01:39:17 +00:00
if err != nil {
glog.Fatalf("unexpected error registering nginx collector: %v", err)
2016-11-29 01:39:17 +00:00
}
2017-03-12 15:27:05 +00:00
return &statsCollector{
namespace: ns,
watchClass: class,
process: pc,
2017-08-31 17:19:32 +00:00
port: port,
}
}