Skip to content

Commit

Permalink
add metric to common controller - basic metrics utilities
Browse files Browse the repository at this point in the history
use a different port, use a longer delta
address comments
  • Loading branch information
yuxiangqian committed Apr 7, 2020
1 parent 2890f4a commit f60516a
Show file tree
Hide file tree
Showing 5 changed files with 461 additions and 0 deletions.
4 changes: 4 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,15 @@ require (
github.com/imdario/mergo v0.3.7 // indirect
github.com/kubernetes-csi/csi-lib-utils v0.7.0
github.com/kubernetes-csi/csi-test v2.0.0+incompatible
github.com/prometheus/client_golang v1.0.0
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
github.com/prometheus/common v0.4.1
google.golang.org/grpc v1.26.0
k8s.io/api v0.17.0
k8s.io/apimachinery v0.17.1-beta.0
k8s.io/client-go v0.17.0
k8s.io/code-generator v0.0.0-20191121015212-c4c8f8345c7e
k8s.io/component-base v0.17.0
k8s.io/klog v1.0.0
k8s.io/kubernetes v1.14.0
)
Expand Down
191 changes: 191 additions & 0 deletions pkg/metrics/metrics.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,191 @@
/*
Copyright 2020 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 metrics

import (
"fmt"
"net"
"net/http"
"sync"
"time"

"github.com/prometheus/client_golang/prometheus/promhttp"
"k8s.io/apimachinery/pkg/types"
k8smetrics "k8s.io/component-base/metrics"
"k8s.io/klog"
)

const (
labelDriverName = "driver_name"
labelOperationName = "operation_name"
labelOperationStatus = "operation_status"
subSystem = "snapshot_controller"
metricName = "operation_total_seconds"
metricHelpMsg = "Total number of seconds spent by the controller on an operation from end to end"
)

type OperationState string

const (
// Failed is an operation state which means the controller has encountered
// an error which is not recoverable and the controller has marked a permanent
// failure of the operation.
Failure OperationState = "Failure"

// Success states that the controller has successfully executed the operation.
Success OperationState = "Success"
)

var metricBuckets = []float64{0.1, 0.25, 0.5, 1, 2.5, 5, 10, 15, 30, 60, 120, 300, 600}

type MetricsManager interface {
// StartServing starts the metrics endpoint at the specified addr/pattern for
// metrics managed by this MetricsManager. It spawn a goroutine to listen to
// and serve HTTP requests received on addr/pattern
// if the "pattern" is empty (i.e., ""), no endpoint will be started. An error
// will be returned if there is any.
StartServing(pattern, addr string, logger promhttp.Logger, wg *sync.WaitGroup) (*http.Server, error)

// OperationStart takes in an operation and cache it's start time.
// if the operation already exists, it's an no-op.
OperationStart(op Operation)

// DropOperation removes an operation from cache.
// if the operation does not exist, it's an no-op.
DropOperation(op Operation)

// RecordMetrics records a metric point. Note that it will be an no-op if an
// operation has not been marked "Started" previously via invoking "OperationStart".
// Invoking of RecordMetrics effectively removes the cached entry.
// op - the operation which the metric is associated with.
// state - the operation state
// Failure: record a failure metric
// Success: record a success metric
RecordMetrics(op Operation, state OperationState)
}

// Operation is a structure which holds information to identify a snapshot
// related operation
type Operation struct {
// the name of the operation, for example: "CreateSnapshot", "DeleteSnapshot"
Name string
// the name of the driver which executes the operation
Driver string
// the resource UID to which the operation has been executed against
ResourceID types.UID
}

type operationTs struct {
// startTime is the timestamp when an operation has been picked up by the
// controller for processing
startTime time.Time

// lastFailTime is the timestamp of the last interim failure on an operation
// if this field is not specified, i.e., lastFailTime.IsZero == true, it means
// the operation has never failed previously
lastFailTime time.Time
}

type operationMetricsManager struct {
// cache is a concurrent-safe map which stores start timestamps for all
// ongoing operations.
// key is an Operation
// value is the timestamp of the start time of the operation
cache sync.Map

// registry is a wrapper around Prometheus Registry
registry k8smetrics.KubeRegistry

// opLatencyMetrics is a Histogram metrics
opLatencyMetrics *k8smetrics.HistogramVec
}

func NewMetricsManager() MetricsManager {
mgr := &operationMetricsManager{
cache: sync.Map{},
}
mgr.init()
return mgr
}

func (opMgr *operationMetricsManager) OperationStart(op Operation) {
opMgr.cache.LoadOrStore(op, time.Now())
}

func (opMgr *operationMetricsManager) DropOperation(op Operation) {
opMgr.cache.Delete(op)
}

func (opMgr *operationMetricsManager) RecordMetrics(op Operation, state OperationState) {
// key := op.key()
obj, exists := opMgr.cache.Load(op)
if !exists {
// the operation has not been cached, return directly
return
}
ts, ok := obj.(time.Time)
if !ok {
// the cached item is not a time.Time, should NEVER happen, clean and return
klog.Errorf("Invalid cache entry for key %v", op)
opMgr.cache.Delete(op)
return
}
duration := time.Since(ts).Seconds()
opMgr.opLatencyMetrics.WithLabelValues(op.Driver, op.Name, string(state)).Observe(duration)
opMgr.cache.Delete(op)
}

func (opMgr *operationMetricsManager) init() {
opMgr.registry = k8smetrics.NewKubeRegistry()
opMgr.opLatencyMetrics = k8smetrics.NewHistogramVec(
&k8smetrics.HistogramOpts{
Subsystem: subSystem,
Name: metricName,
Help: metricHelpMsg,
Buckets: metricBuckets,
},
[]string{labelDriverName, labelOperationName, labelOperationStatus},
)
opMgr.registry.MustRegister(opMgr.opLatencyMetrics)
}

func (opMgr *operationMetricsManager) StartServing(pattern, addr string, logger promhttp.Logger, wg *sync.WaitGroup) (*http.Server, error) {
if addr == "" {
return nil, fmt.Errorf("metrics endpoint will not be started as endpoint address is not specified")
}
// start listening
l, err := net.Listen("tcp", addr)
if err != nil {
return nil, fmt.Errorf("failed to listen on address[%s], error[%v]", addr, err)
}
srv := &http.Server{Addr: addr}
http.Handle(pattern, k8smetrics.HandlerFor(
opMgr.registry,
k8smetrics.HandlerOpts{
ErrorLog: logger,
ErrorHandling: k8smetrics.ContinueOnError,
}))

// start serving the endpoint
go func() {
defer wg.Done()
if err := srv.Serve(l); err != http.ErrServerClosed {
klog.Fatalf("failed to start endpoint at:%s/%s, error: %v", addr, pattern, err)
}
}()
return srv, nil
}
Loading

0 comments on commit f60516a

Please sign in to comment.