1
0
Fork 0
mirror of https://github.com/external-secrets/external-secrets.git synced 2024-12-14 11:57:59 +00:00
external-secrets/pkg/metrics/metrics.go
Yuri Sa b389570c81
Creating constants file (#2291)
* Creating constants file

Signed-off-by: Yuri Sa <yurimsa@gmail.com>

* Fixing lints

Signed-off-by: Yuri Sa <yurimsa@gmail.com>

---------

Signed-off-by: Yuri Sa <yurimsa@gmail.com>
2023-05-15 17:22:18 +02:00

50 lines
1.4 KiB
Go

/*
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 (
"github.com/prometheus/client_golang/prometheus"
"sigs.k8s.io/controller-runtime/pkg/metrics"
"github.com/external-secrets/external-secrets/pkg/constants"
)
const (
ExternalSecretSubsystem = "externalsecret"
providerAPICalls = "provider_api_calls_count"
)
var (
syncCallsTotal = prometheus.NewCounterVec(prometheus.CounterOpts{
Subsystem: ExternalSecretSubsystem,
Name: providerAPICalls,
Help: "Number of API calls towards the secret provider",
}, []string{"provider", "call", "status"})
)
func ObserveAPICall(provider, call string, err error) {
syncCallsTotal.WithLabelValues(provider, call, deriveStatus(err)).Inc()
}
func deriveStatus(err error) string {
if err != nil {
return constants.StatusError
}
return constants.StatusSuccess
}
func init() {
metrics.Registry.MustRegister(syncCallsTotal)
}