mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-15 17:51:03 +00:00
176 lines
3.8 KiB
Cheetah
176 lines
3.8 KiB
Cheetah
{{- $root := . -}}
|
|
//
|
|
// DISCLAIMER
|
|
//
|
|
// Copyright 2016-2024 ArangoDB GmbH, Cologne, Germany
|
|
//
|
|
// 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.
|
|
//
|
|
// Copyright holder is ArangoDB GmbH, Cologne, Germany
|
|
//
|
|
|
|
package metric_descriptions
|
|
|
|
import (
|
|
"github.com/arangodb/kube-arangodb/pkg/util/metrics"
|
|
{{- if .global }}
|
|
|
|
"sync"
|
|
{{- end }}
|
|
)
|
|
|
|
var (
|
|
{{ .fname }} = metrics.NewDescription("{{ .name }}", "{{ .shortDescription }}", {{ .labels }}, nil)
|
|
)
|
|
|
|
func init() {
|
|
registerDescription({{ .fname }})
|
|
{{- if .global }}
|
|
registerCollector({{ .fname }}Global)
|
|
{{- end }}
|
|
}
|
|
|
|
func {{ .ename }}() metrics.Description {
|
|
return {{ .fname }}
|
|
}
|
|
|
|
{{- if .global }}
|
|
|
|
func {{ .ename }}Get({{ .args }}) float64 {
|
|
return {{ .fname }}Global.Get({{ .ename }}Item{
|
|
{{- range $i, $field := .mapKeys }}
|
|
{{ $field }}: {{ index $root.mapIKeys $field }},
|
|
{{- end }}
|
|
})
|
|
}
|
|
|
|
func {{ .ename }}Add({{ .fparams }}) {
|
|
{{ .fname }}Global.Add(value, {{ .ename }}Item{
|
|
{{- range $i, $field := .mapKeys }}
|
|
{{ $field }}: {{ index $root.mapIKeys $field }},
|
|
{{- end }}
|
|
})
|
|
}
|
|
{{- if eq .type "Counter" }}
|
|
|
|
func {{ .ename }}Inc({{ .args }}) {
|
|
{{ .fname }}Global.Inc({{ .ename }}Item{
|
|
{{- range $i, $field := .mapKeys }}
|
|
{{ $field }}: {{ index $root.mapIKeys $field }},
|
|
{{- end }}
|
|
})
|
|
}
|
|
{{- end }}
|
|
|
|
func Get{{ .ename }}Factory() {{ .ename }}Factory {
|
|
return {{ .fname }}Global
|
|
}
|
|
|
|
var {{ .fname }}Global = &{{ .fname }}Factory{
|
|
items: {{ .fname }}Items{},
|
|
}
|
|
|
|
type {{ .ename }}Factory interface {
|
|
Get(object {{ .ename }}Item) float64
|
|
Add(value float64, object {{ .ename }}Item)
|
|
Remove(object {{ .ename }}Item)
|
|
Items() []{{ .ename }}Item
|
|
{{- if eq .type "Counter" }}
|
|
|
|
Inc(object {{ .ename }}Item)
|
|
{{- end }}
|
|
}
|
|
|
|
type {{ .fname }}Factory struct {
|
|
lock sync.RWMutex
|
|
|
|
items {{ .fname }}Items
|
|
}
|
|
|
|
func (a *{{ .fname }}Factory) Get(object {{ .ename }}Item) float64 {
|
|
a.lock.Lock()
|
|
defer a.lock.Unlock()
|
|
|
|
v, ok := a.items[object]
|
|
if !ok {
|
|
return 0
|
|
}
|
|
|
|
return v
|
|
}
|
|
|
|
func (a *{{ .fname }}Factory) Add(value float64, object {{ .ename }}Item) {
|
|
a.lock.Lock()
|
|
defer a.lock.Unlock()
|
|
|
|
v, ok := a.items[object]
|
|
if !ok {
|
|
a.items[object] = value
|
|
return
|
|
}
|
|
|
|
a.items[object] = value + v
|
|
}
|
|
|
|
func (a *{{ .fname }}Factory) Remove(obj {{ .ename }}Item) {
|
|
a.lock.Lock()
|
|
defer a.lock.Unlock()
|
|
|
|
delete(a.items, obj)
|
|
}
|
|
|
|
func (a *{{ .fname }}Factory) Items() []{{ .ename }}Item {
|
|
a.lock.Lock()
|
|
defer a.lock.Unlock()
|
|
|
|
var r = make([]{{ .ename }}Item, 0, len(a.items))
|
|
|
|
for k := range a.items {
|
|
r = append(r, k)
|
|
}
|
|
|
|
return r
|
|
}
|
|
{{- if eq .type "Counter" }}
|
|
|
|
func (a *{{ .fname }}Factory) Inc(object {{ .ename }}Item) {
|
|
a.Add(1, object)
|
|
}
|
|
{{- end }}
|
|
|
|
func (a *{{ .fname }}Factory) CollectMetrics(in metrics.PushMetric) {
|
|
a.lock.RLock()
|
|
defer a.lock.RUnlock()
|
|
|
|
for k, v := range a.items {
|
|
in.Push({{ .fname }}.{{ .type }}(v{{- range .mapKeys }}, k.{{ . }}{{- end }}))
|
|
}
|
|
}
|
|
|
|
func (a *{{ .fname }}Factory) CollectDescriptions(in metrics.PushDescription) {
|
|
in.Push({{ .fname }})
|
|
}
|
|
|
|
type {{ .fname }}Items map[{{ .ename }}Item]float64
|
|
|
|
type {{ .ename }}Item struct {
|
|
{{- range .mapKeys }}
|
|
{{ . }} {{ index $root.mapTypes . }}
|
|
{{- end }}
|
|
}
|
|
{{- else }}
|
|
|
|
func {{ .ename }}{{ .type }}({{ .fparams }}) metrics.Metric {
|
|
return {{ .ename }}().{{ .type }}({{ .fkeys }})
|
|
}
|
|
{{- end }}
|