summaryrefslogtreecommitdiffstats
path: root/zkfacade/abi-spec.json
diff options
context:
space:
mode:
authorHåkon Hallingstad <hakon@verizonmedia.com>2020-10-03 15:02:53 +0200
committerHåkon Hallingstad <hakon@verizonmedia.com>2020-10-03 15:02:53 +0200
commite925ef8b0a33ed0e67e09ca9320b386339e08cea (patch)
tree066150a4a9f829b3c4935e5f702bb1e17cfefa03 /zkfacade/abi-spec.json
parent58c15afd3ea77235e2ea26f4baa2e171574dd3b6 (diff)
Move lock metrics to MetricsReporter
Adds two new metrics: - The load of acquiring each lock path: The average number of threads waiting to acquire the lock within the last minute (or unit of time). Aka the lock queue (depth). - The load of the lock for each lock path: The average number of threads holding the lock within the last minute (or unit of time). This is always <= 1. Aka the lock utilization. Changes the LockCounters to LockMetrics, and exporting those once every minute through MetricReporter which is designed for this.
Diffstat (limited to 'zkfacade/abi-spec.json')
-rw-r--r--zkfacade/abi-spec.json8
1 files changed, 4 insertions, 4 deletions
diff --git a/zkfacade/abi-spec.json b/zkfacade/abi-spec.json
index 0f421621523..e026559b283 100644
--- a/zkfacade/abi-spec.json
+++ b/zkfacade/abi-spec.json
@@ -68,8 +68,8 @@
"methods": [
"public static com.yahoo.vespa.curator.Curator create(java.lang.String)",
"public static com.yahoo.vespa.curator.Curator create(java.lang.String, java.util.Optional)",
- "public void <init>(com.yahoo.cloud.config.ConfigserverConfig, com.yahoo.jdisc.Metric, com.yahoo.vespa.zookeeper.VespaZooKeeperServer)",
- "protected void <init>(java.lang.String, java.lang.String, java.util.function.Function, java.util.Optional)",
+ "public void <init>(com.yahoo.cloud.config.ConfigserverConfig, com.yahoo.vespa.zookeeper.VespaZooKeeperServer)",
+ "protected void <init>(java.lang.String, java.lang.String, java.util.function.Function)",
"public java.lang.String connectionSpec()",
"public org.apache.curator.framework.recipes.atomic.DistributedAtomicLong createAtomicCounter(java.lang.String)",
"public org.apache.curator.framework.recipes.locks.InterProcessLock createMutex(java.lang.String)",
@@ -104,8 +104,8 @@
"public"
],
"methods": [
- "public void <init>(java.lang.String, com.yahoo.vespa.curator.Curator, java.util.Optional)",
- "public void <init>(java.lang.String, org.apache.curator.framework.recipes.locks.InterProcessLock, java.util.Optional)",
+ "public void <init>(java.lang.String, com.yahoo.vespa.curator.Curator)",
+ "public void <init>(java.lang.String, org.apache.curator.framework.recipes.locks.InterProcessLock)",
"public void acquire(java.time.Duration)",
"public void close()"
],