mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
77 lines
2.1 KiB
Go
77 lines
2.1 KiB
Go
// +build !providerless
|
|
|
|
/*
|
|
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 aws
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
"k8s.io/component-base/metrics"
|
|
"k8s.io/component-base/metrics/legacyregistry"
|
|
)
|
|
|
|
var (
|
|
awsAPIMetric = metrics.NewHistogramVec(
|
|
&metrics.HistogramOpts{
|
|
Name: "cloudprovider_aws_api_request_duration_seconds",
|
|
Help: "Latency of AWS API calls",
|
|
StabilityLevel: metrics.ALPHA,
|
|
},
|
|
[]string{"request"})
|
|
|
|
awsAPIErrorMetric = metrics.NewCounterVec(
|
|
&metrics.CounterOpts{
|
|
Name: "cloudprovider_aws_api_request_errors",
|
|
Help: "AWS API errors",
|
|
StabilityLevel: metrics.ALPHA,
|
|
},
|
|
[]string{"request"})
|
|
|
|
awsAPIThrottlesMetric = metrics.NewCounterVec(
|
|
&metrics.CounterOpts{
|
|
Name: "cloudprovider_aws_api_throttled_requests_total",
|
|
Help: "AWS API throttled requests",
|
|
StabilityLevel: metrics.ALPHA,
|
|
},
|
|
[]string{"operation_name"})
|
|
)
|
|
|
|
func recordAWSMetric(actionName string, timeTaken float64, err error) {
|
|
if err != nil {
|
|
awsAPIErrorMetric.With(prometheus.Labels{"request": actionName}).Inc()
|
|
} else {
|
|
awsAPIMetric.With(prometheus.Labels{"request": actionName}).Observe(timeTaken)
|
|
}
|
|
}
|
|
|
|
func recordAWSThrottlesMetric(operation string) {
|
|
awsAPIThrottlesMetric.With(prometheus.Labels{"operation_name": operation}).Inc()
|
|
}
|
|
|
|
var registerOnce sync.Once
|
|
|
|
func registerMetrics() {
|
|
registerOnce.Do(func() {
|
|
legacyregistry.MustRegister(awsAPIMetric)
|
|
legacyregistry.MustRegister(awsAPIErrorMetric)
|
|
legacyregistry.MustRegister(awsAPIThrottlesMetric)
|
|
})
|
|
}
|