mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
8609ced24b
* chore(deps): bump k8s.io/apiextensions-apiserver from 0.19.2 to 0.21.3 Bumps [k8s.io/apiextensions-apiserver](https://github.com/kubernetes/apiextensions-apiserver) from 0.19.2 to 0.21.3. - [Release notes](https://github.com/kubernetes/apiextensions-apiserver/releases) - [Commits](https://github.com/kubernetes/apiextensions-apiserver/compare/v0.19.2...v0.21.3) --- updated-dependencies: - dependency-name: k8s.io/apiextensions-apiserver dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * chore(deps): bump google.golang.org/api from 0.34.0 to 0.52.0 Bumps [google.golang.org/api](https://github.com/googleapis/google-api-go-client) from 0.34.0 to 0.52.0. - [Release notes](https://github.com/googleapis/google-api-go-client/releases) - [Changelog](https://github.com/googleapis/google-api-go-client/blob/master/CHANGES.md) - [Commits](https://github.com/googleapis/google-api-go-client/compare/v0.34.0...v0.52.0) --- updated-dependencies: - dependency-name: google.golang.org/api dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * start update dependencies * update mods and otlp * fix(build): update to go 1.16 * old version for k8s mods * update k8s versions * update orbos * with batcher * add batch span processor * try with older otel version 0.20 * remove syncer * otel rc2 * fix config Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Stefan Benz <stefan@caos.ch>
75 lines
1.9 KiB
Go
75 lines
1.9 KiB
Go
package metrics
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
"go.opentelemetry.io/otel/metric"
|
|
)
|
|
|
|
const (
|
|
ActiveSessionCounter = "zitadel.active_session_counter"
|
|
ActiveSessionCounterDescription = "Active session counter"
|
|
SpoolerDivCounter = "zitadel.spooler_div_milliseconds"
|
|
SpoolerDivCounterDescription = "Spooler div from last successful run to now in milliseconds"
|
|
Database = "database"
|
|
ViewName = "view_name"
|
|
)
|
|
|
|
type Metrics interface {
|
|
GetExporter() http.Handler
|
|
GetMetricsProvider() metric.MeterProvider
|
|
RegisterCounter(name, description string) error
|
|
AddCount(ctx context.Context, name string, value int64, labels map[string]interface{}) error
|
|
RegisterUpDownSumObserver(name, description string, callbackFunc metric.Int64ObserverFunc) error
|
|
RegisterValueObserver(name, description string, callbackFunc metric.Int64ObserverFunc) error
|
|
}
|
|
|
|
type Config interface {
|
|
NewMetrics() error
|
|
}
|
|
|
|
var M Metrics
|
|
|
|
func GetExporter() http.Handler {
|
|
if M == nil {
|
|
return nil
|
|
}
|
|
return M.GetExporter()
|
|
}
|
|
|
|
func GetMetricsProvider() metric.MeterProvider {
|
|
if M == nil {
|
|
return nil
|
|
}
|
|
return M.GetMetricsProvider()
|
|
}
|
|
|
|
func RegisterCounter(name, description string) error {
|
|
if M == nil {
|
|
return nil
|
|
}
|
|
return M.RegisterCounter(name, description)
|
|
}
|
|
|
|
func AddCount(ctx context.Context, name string, value int64, labels map[string]interface{}) error {
|
|
if M == nil {
|
|
return nil
|
|
}
|
|
return M.AddCount(ctx, name, value, labels)
|
|
}
|
|
|
|
func RegisterUpDownSumObserver(name, description string, callbackFunc metric.Int64ObserverFunc) error {
|
|
if M == nil {
|
|
return nil
|
|
}
|
|
return M.RegisterUpDownSumObserver(name, description, callbackFunc)
|
|
}
|
|
|
|
func RegisterValueObserver(name, description string, callbackFunc metric.Int64ObserverFunc) error {
|
|
if M == nil {
|
|
return nil
|
|
}
|
|
return M.RegisterValueObserver(name, description, callbackFunc)
|
|
}
|