mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
56cf915dff
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.65.0 to 1.66.0. - [Release notes](https://github.com/grpc/grpc-go/releases) - [Commits](https://github.com/grpc/grpc-go/compare/v1.65.0...v1.66.0) --- updated-dependencies: - dependency-name: google.golang.org/grpc dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
115 lines
3.6 KiB
Go
115 lines
3.6 KiB
Go
/*
|
|
*
|
|
* Copyright 2024 gRPC 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 stats contains experimental metrics/stats API's.
|
|
package stats
|
|
|
|
import "maps"
|
|
|
|
// MetricsRecorder records on metrics derived from metric registry.
|
|
type MetricsRecorder interface {
|
|
// RecordInt64Count records the measurement alongside labels on the int
|
|
// count associated with the provided handle.
|
|
RecordInt64Count(handle *Int64CountHandle, incr int64, labels ...string)
|
|
// RecordFloat64Count records the measurement alongside labels on the float
|
|
// count associated with the provided handle.
|
|
RecordFloat64Count(handle *Float64CountHandle, incr float64, labels ...string)
|
|
// RecordInt64Histo records the measurement alongside labels on the int
|
|
// histo associated with the provided handle.
|
|
RecordInt64Histo(handle *Int64HistoHandle, incr int64, labels ...string)
|
|
// RecordFloat64Histo records the measurement alongside labels on the float
|
|
// histo associated with the provided handle.
|
|
RecordFloat64Histo(handle *Float64HistoHandle, incr float64, labels ...string)
|
|
// RecordInt64Gauge records the measurement alongside labels on the int
|
|
// gauge associated with the provided handle.
|
|
RecordInt64Gauge(handle *Int64GaugeHandle, incr int64, labels ...string)
|
|
}
|
|
|
|
// Metric is an identifier for a metric.
|
|
type Metric string
|
|
|
|
// Metrics is a set of metrics to record. Once created, Metrics is immutable,
|
|
// however Add and Remove can make copies with specific metrics added or
|
|
// removed, respectively.
|
|
//
|
|
// Do not construct directly; use NewMetrics instead.
|
|
type Metrics struct {
|
|
// metrics are the set of metrics to initialize.
|
|
metrics map[Metric]bool
|
|
}
|
|
|
|
// NewMetrics returns a Metrics containing Metrics.
|
|
func NewMetrics(metrics ...Metric) *Metrics {
|
|
newMetrics := make(map[Metric]bool)
|
|
for _, metric := range metrics {
|
|
newMetrics[metric] = true
|
|
}
|
|
return &Metrics{
|
|
metrics: newMetrics,
|
|
}
|
|
}
|
|
|
|
// Metrics returns the metrics set. The returned map is read-only and must not
|
|
// be modified.
|
|
func (m *Metrics) Metrics() map[Metric]bool {
|
|
return m.metrics
|
|
}
|
|
|
|
// Add adds the metrics to the metrics set and returns a new copy with the
|
|
// additional metrics.
|
|
func (m *Metrics) Add(metrics ...Metric) *Metrics {
|
|
newMetrics := make(map[Metric]bool)
|
|
for metric := range m.metrics {
|
|
newMetrics[metric] = true
|
|
}
|
|
|
|
for _, metric := range metrics {
|
|
newMetrics[metric] = true
|
|
}
|
|
return &Metrics{
|
|
metrics: newMetrics,
|
|
}
|
|
}
|
|
|
|
// Join joins the metrics passed in with the metrics set, and returns a new copy
|
|
// with the merged metrics.
|
|
func (m *Metrics) Join(metrics *Metrics) *Metrics {
|
|
newMetrics := make(map[Metric]bool)
|
|
maps.Copy(newMetrics, m.metrics)
|
|
maps.Copy(newMetrics, metrics.metrics)
|
|
return &Metrics{
|
|
metrics: newMetrics,
|
|
}
|
|
}
|
|
|
|
// Remove removes the metrics from the metrics set and returns a new copy with
|
|
// the metrics removed.
|
|
func (m *Metrics) Remove(metrics ...Metric) *Metrics {
|
|
newMetrics := make(map[Metric]bool)
|
|
for metric := range m.metrics {
|
|
newMetrics[metric] = true
|
|
}
|
|
|
|
for _, metric := range metrics {
|
|
delete(newMetrics, metric)
|
|
}
|
|
return &Metrics{
|
|
metrics: newMetrics,
|
|
}
|
|
}
|