org.jitsi.metrics.DoubleGaugeMetric.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jicoco-metrics Show documentation
Show all versions of jicoco-metrics Show documentation
Jitsi Common Components (Metrics)
/*
* Copyright @ 2022 - present 8x8, Inc.
*
* 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 org.jitsi.metrics
import io.prometheus.client.CollectorRegistry
import io.prometheus.client.Gauge
/**
* A double metric wrapper for Prometheus [Gauges][Gauge].
* Provides atomic operations such as [incAndGet].
*
* @see [Prometheus Gauge](https://prometheus.io/docs/concepts/metric_types/.gauge)
*/
class DoubleGaugeMetric @JvmOverloads constructor(
/** the name of this metric */
override val name: String,
/** the description of this metric */
help: String,
/** the namespace (prefix) of this metric */
namespace: String,
/** an optional initial value for this metric */
internal val initialValue: Double = 0.0
) : Metric() {
private val gauge = Gauge.build(name, help).namespace(namespace).create().apply { set(initialValue) }
override fun get() = gauge.get()
override fun reset() = set(initialValue)
override fun register(registry: CollectorRegistry) = this.also { registry.register(gauge) }
/**
* Sets the value of this gauge to the given value.
*/
fun set(newValue: Double) = gauge.set(newValue)
/**
* Atomically sets the gauge to the given value, returning the updated value.
*
* @return the updated value
*/
fun setAndGet(newValue: Double): Double = synchronized(gauge) {
gauge.set(newValue)
return gauge.get()
}
/**
* Atomically adds the given value to this gauge, returning the updated value.
*
* @return the updated value
*/
fun addAndGet(delta: Double): Double = synchronized(gauge) {
gauge.inc(delta)
return gauge.get()
}
/**
* Atomically increments the value of this gauge by one, returning the updated value.
*
* @return the updated value
*/
fun incAndGet() = addAndGet(1.0)
/**
* Atomically decrements the value of this gauge by one, returning the updated value.
*
* @return the updated value
*/
fun decAndGet() = addAndGet(-1.0)
}