mirror of
https://github.com/google/nomulus.git
synced 2025-05-14 00:17:20 +02:00
Record a version of EPP metrics with TLD for domain commands
Also fixes the issue that dry run EPP commands were incorrectly being reported on. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=171062984
This commit is contained in:
parent
7e68ffa16a
commit
302a27f0db
13 changed files with 283 additions and 61 deletions
|
@ -42,6 +42,11 @@ public final class MetricRegistryImpl implements MetricRegistry {
|
|||
return INSTANCE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new event metric.
|
||||
*
|
||||
* <p>Note that the order of the labels is significant.
|
||||
*/
|
||||
@Override
|
||||
public EventMetric newEventMetric(
|
||||
String name,
|
||||
|
@ -57,6 +62,11 @@ public final class MetricRegistryImpl implements MetricRegistry {
|
|||
return metric;
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new gauge metric.
|
||||
*
|
||||
* <p>Note that the order of the labels is significant.
|
||||
*/
|
||||
@Override
|
||||
@CanIgnoreReturnValue
|
||||
public <V> Metric<V> newGauge(
|
||||
|
@ -75,6 +85,11 @@ public final class MetricRegistryImpl implements MetricRegistry {
|
|||
return metric;
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new settable metric.
|
||||
*
|
||||
* <p>Note that the order of the labels is significant.
|
||||
*/
|
||||
@Override
|
||||
public <V> SettableMetric<V> newSettableMetric(
|
||||
String name,
|
||||
|
@ -90,6 +105,11 @@ public final class MetricRegistryImpl implements MetricRegistry {
|
|||
return metric;
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new incrementable metric.
|
||||
*
|
||||
* <p>Note that the order of the labels is significant.
|
||||
*/
|
||||
@Override
|
||||
public IncrementableMetric newIncrementableMetric(
|
||||
String name,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue