2020-01-28 19:57:37 +00:00
|
|
|
//
|
|
|
|
// DISCLAIMER
|
|
|
|
//
|
2023-02-20 05:01:54 +00:00
|
|
|
// Copyright 2016-2023 ArangoDB GmbH, Cologne, Germany
|
2020-01-28 19:57:37 +00:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
//
|
|
|
|
|
2022-06-27 06:02:21 +00:00
|
|
|
package metric_descriptions
|
2020-09-03 06:53:56 +00:00
|
|
|
|
2022-06-27 06:02:21 +00:00
|
|
|
import (
|
|
|
|
"sync"
|
|
|
|
"github.com/arangodb/kube-arangodb/pkg/util/metrics"
|
|
|
|
)
|
2021-01-08 14:35:38 +00:00
|
|
|
|
2021-12-06 10:31:17 +00:00
|
|
|
var (
|
2022-06-27 06:02:21 +00:00
|
|
|
descriptions []metrics.Description
|
|
|
|
descriptionsLock sync.Mutex
|
2020-09-03 06:53:56 +00:00
|
|
|
)
|
2022-06-27 06:02:21 +00:00
|
|
|
|
|
|
|
func registerDescription( d ... metrics.Description) {
|
|
|
|
if len(d) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
descriptionsLock.Lock()
|
|
|
|
defer descriptionsLock.Unlock()
|
|
|
|
|
|
|
|
descriptions = append(descriptions, d...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func Descriptions (c metrics.PushDescription) {
|
|
|
|
descriptionsLock.Lock()
|
|
|
|
defer descriptionsLock.Unlock()
|
|
|
|
|
|
|
|
c.Push(descriptions...)
|
|
|
|
}
|