summaryrefslogtreecommitdiffstats
path: root/metrics
diff options
context:
space:
mode:
authoryngveaasheim <yngve@yahooinc.com>2023-08-01 09:55:53 +0200
committeryngveaasheim <yngve@yahooinc.com>2023-08-01 09:55:53 +0200
commitea9d53d09316663cf858eb8de2b5b7c754600a3a (patch)
tree493aa3d209d174abb0bcfb9681899ee30d7ce6e0 /metrics
parentdeb2e40366ff3211e7ba4964fb85b90d38ec5ce2 (diff)
Improve commet, remove whitespace
Diffstat (limited to 'metrics')
-rw-r--r--metrics/src/main/java/ai/vespa/metrics/ControllerMetrics.java6
1 files changed, 1 insertions, 5 deletions
diff --git a/metrics/src/main/java/ai/vespa/metrics/ControllerMetrics.java b/metrics/src/main/java/ai/vespa/metrics/ControllerMetrics.java
index c2307eb1376..4770fe51830 100644
--- a/metrics/src/main/java/ai/vespa/metrics/ControllerMetrics.java
+++ b/metrics/src/main/java/ai/vespa/metrics/ControllerMetrics.java
@@ -21,8 +21,6 @@ public enum ControllerMetrics implements VespaMetrics {
DEPLOYMENT_CANCEL("deployment.cancel", Unit.DEPLOYMENT, "Deployments that were canceled"),
DEPLOYMENT_SUCCESS("deployment.success", Unit.DEPLOYMENT, "Successful deployments"),
DEPLOYMENT_QUOTA_EXCEEDED("deployment.quotaExceeded", Unit.DEPLOYMENT, "Deployments stopped due to exceeding quota"),
-
-
BILLING_TENANTS("billing.tenants", Unit.TENANT, "Billing tenants"),
DEPLOYMENT_FAILURE_PERCENTAGE("deployment.failurePercentage", Unit.PERCENTAGE, "Deployment: Failure percentage"),
DEPLOYMENT_AVERAGE_DURATION("deployment.averageDuration", Unit.SECOND, "Deployment duration"),
@@ -38,10 +36,9 @@ public enum ControllerMetrics implements VespaMetrics {
REMAINING_ROTATIONS("remaining_rotations", Unit.ROTATION, "Remaining rotations"),
DNS_QUEUED_REQUESTS("dns.queuedRequests", Unit.REQUEST, "Queued DNS requests"),
ZMS_QUOTA_USAGE("zms.quota.usage", Unit.FRACTION, "ZMS Quota usage per resource type"),
-
COREDUMP_PROCESSED("coredump.processed", Unit.FAILURE,"Controller: Core dumps processed"),
- // Metrics per API, metrics created in ControllerMaintainer/MetricsReporter
+ // Metrics per API, metrics names generated in ControllerMaintainer/MetricsReporter
OPERATION_APPLICATION("operation.application", Unit.REQUEST, "Controller: Requests for /application API"),
OPERATION_CHANGEMANAGEMENT("operation.changemanagement", Unit.REQUEST, "Controller: Requests for /changemanagement API"),
OPERATION_CONFIGSERVER("operation.configserver", Unit.REQUEST, "Controller: Requests for /configserver API"),
@@ -60,7 +57,6 @@ public enum ControllerMetrics implements VespaMetrics {
METERING_LAST_REPORTED("metering_last_reported", Unit.SECONDS_SINCE_EPOCH, "Controller: Metering last reported"),
METERING_TOTAL_REPORTED("metering_total_reported", Unit.ITEM, "Controller: Metering total reported (sum of resources)");
-
private final String name;
private final Unit unit;
private final String description;