197 lines
5.6 KiB
Go
197 lines
5.6 KiB
Go
/*
|
|
Copyright 2017 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 collectors
|
|
|
|
import (
|
|
"log"
|
|
"regexp"
|
|
"strconv"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
"k8s.io/ingress-nginx/internal/nginx"
|
|
"k8s.io/klog/v2"
|
|
)
|
|
|
|
var (
|
|
ac = regexp.MustCompile(`Active connections: (\d+)`)
|
|
sahr = regexp.MustCompile(`(\d+)\s(\d+)\s(\d+)`)
|
|
reading = regexp.MustCompile(`Reading: (\d+)`)
|
|
writing = regexp.MustCompile(`Writing: (\d+)`)
|
|
waiting = regexp.MustCompile(`Waiting: (\d+)`)
|
|
)
|
|
|
|
type (
|
|
nginxStatusCollector struct {
|
|
scrapeChan chan scrapeRequest
|
|
|
|
data *nginxStatusData
|
|
}
|
|
|
|
nginxStatusData struct {
|
|
connectionsTotal *prometheus.Desc
|
|
requestsTotal *prometheus.Desc
|
|
connections *prometheus.Desc
|
|
}
|
|
|
|
basicStatus struct {
|
|
// Active total number of active connections
|
|
Active int
|
|
// Accepted total number of accepted client connections
|
|
Accepted int
|
|
// Handled total number of handled connections. Generally, the parameter value is the same as accepts unless some resource limits have been reached (for example, the worker_connections limit).
|
|
Handled int
|
|
// Requests total number of client requests.
|
|
Requests int
|
|
// Reading current number of connections where nginx is reading the request header.
|
|
Reading int
|
|
// Writing current number of connections where nginx is writing the response back to the client.
|
|
Writing int
|
|
// Waiting current number of idle client connections waiting for a request.
|
|
Waiting int
|
|
}
|
|
)
|
|
|
|
// NGINXStatusCollector defines a status collector interface
|
|
type NGINXStatusCollector interface {
|
|
prometheus.Collector
|
|
|
|
Start()
|
|
Stop()
|
|
}
|
|
|
|
// NewNGINXStatus returns a new prometheus collector the default nginx status module
|
|
func NewNGINXStatus(podName, namespace, ingressClass string) (NGINXStatusCollector, error) {
|
|
|
|
p := nginxStatusCollector{
|
|
scrapeChan: make(chan scrapeRequest),
|
|
}
|
|
|
|
constLabels := prometheus.Labels{
|
|
"controller_namespace": namespace,
|
|
"controller_class": ingressClass,
|
|
"controller_pod": podName,
|
|
}
|
|
|
|
p.data = &nginxStatusData{
|
|
connectionsTotal: prometheus.NewDesc(
|
|
prometheus.BuildFQName(PrometheusNamespace, subSystem, "connections_total"),
|
|
"total number of connections with state {accepted, handled}",
|
|
[]string{"state"}, constLabels),
|
|
|
|
requestsTotal: prometheus.NewDesc(
|
|
prometheus.BuildFQName(PrometheusNamespace, subSystem, "requests_total"),
|
|
"total number of client requests",
|
|
nil, constLabels),
|
|
|
|
connections: prometheus.NewDesc(
|
|
prometheus.BuildFQName(PrometheusNamespace, subSystem, "connections"),
|
|
"current number of client connections with state {active, reading, writing, waiting}",
|
|
[]string{"state"}, constLabels),
|
|
}
|
|
|
|
return p, nil
|
|
}
|
|
|
|
// Describe implements prometheus.Collector.
|
|
func (p nginxStatusCollector) Describe(ch chan<- *prometheus.Desc) {
|
|
ch <- p.data.connectionsTotal
|
|
ch <- p.data.requestsTotal
|
|
ch <- p.data.connections
|
|
}
|
|
|
|
// Collect implements prometheus.Collector.
|
|
func (p nginxStatusCollector) Collect(ch chan<- prometheus.Metric) {
|
|
req := scrapeRequest{results: ch, done: make(chan struct{})}
|
|
p.scrapeChan <- req
|
|
<-req.done
|
|
}
|
|
|
|
func (p nginxStatusCollector) Start() {
|
|
for req := range p.scrapeChan {
|
|
ch := req.results
|
|
p.scrape(ch)
|
|
req.done <- struct{}{}
|
|
}
|
|
}
|
|
|
|
func (p nginxStatusCollector) Stop() {
|
|
close(p.scrapeChan)
|
|
}
|
|
|
|
func toInt(data []string, pos int) int {
|
|
if len(data) == 0 {
|
|
return 0
|
|
}
|
|
if pos > len(data) {
|
|
return 0
|
|
}
|
|
if v, err := strconv.Atoi(data[pos]); err == nil {
|
|
return v
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func parse(data string) *basicStatus {
|
|
acr := ac.FindStringSubmatch(data)
|
|
sahrr := sahr.FindStringSubmatch(data)
|
|
readingr := reading.FindStringSubmatch(data)
|
|
writingr := writing.FindStringSubmatch(data)
|
|
waitingr := waiting.FindStringSubmatch(data)
|
|
|
|
return &basicStatus{
|
|
toInt(acr, 1),
|
|
toInt(sahrr, 1),
|
|
toInt(sahrr, 2),
|
|
toInt(sahrr, 3),
|
|
toInt(readingr, 1),
|
|
toInt(writingr, 1),
|
|
toInt(waitingr, 1),
|
|
}
|
|
}
|
|
|
|
// nginxStatusCollector scrape the nginx status
|
|
func (p nginxStatusCollector) scrape(ch chan<- prometheus.Metric) {
|
|
klog.V(3).InfoS("starting scraping socket", "path", nginx.StatusPath)
|
|
status, data, err := nginx.NewGetStatusRequest(nginx.StatusPath)
|
|
if err != nil {
|
|
log.Printf("%v", err)
|
|
klog.Warningf("unexpected error obtaining nginx status info: %v", err)
|
|
return
|
|
}
|
|
|
|
if status < 200 || status >= 400 {
|
|
klog.Warningf("unexpected error obtaining nginx status info (status %v)", status)
|
|
return
|
|
}
|
|
|
|
s := parse(string(data))
|
|
|
|
ch <- prometheus.MustNewConstMetric(p.data.connectionsTotal,
|
|
prometheus.CounterValue, float64(s.Accepted), "accepted")
|
|
ch <- prometheus.MustNewConstMetric(p.data.connectionsTotal,
|
|
prometheus.CounterValue, float64(s.Handled), "handled")
|
|
ch <- prometheus.MustNewConstMetric(p.data.requestsTotal,
|
|
prometheus.CounterValue, float64(s.Requests))
|
|
ch <- prometheus.MustNewConstMetric(p.data.connections,
|
|
prometheus.GaugeValue, float64(s.Active), "active")
|
|
ch <- prometheus.MustNewConstMetric(p.data.connections,
|
|
prometheus.GaugeValue, float64(s.Reading), "reading")
|
|
ch <- prometheus.MustNewConstMetric(p.data.connections,
|
|
prometheus.GaugeValue, float64(s.Writing), "writing")
|
|
ch <- prometheus.MustNewConstMetric(p.data.connections,
|
|
prometheus.GaugeValue, float64(s.Waiting), "waiting")
|
|
}
|