From b547ceff5112071518c77149bf24db4fdb1c1e77 Mon Sep 17 00:00:00 2001 From: Tim Quinn Date: Tue, 29 Oct 2024 17:54:14 -0500 Subject: [PATCH] Adopt MP metrics 5.1.2 (#9446) Signed-off-by: Tim Quinn --- dependencies/pom.xml | 2 +- .../microprofile/metrics/CustomSnapshot.java | 51 +++++++++++++++++++ 2 files changed, 52 insertions(+), 1 deletion(-) create mode 100644 microprofile/metrics/src/test/java/io/helidon/microprofile/metrics/CustomSnapshot.java diff --git a/dependencies/pom.xml b/dependencies/pom.xml index 96aac377b9e..e35ab91b35a 100644 --- a/dependencies/pom.xml +++ b/dependencies/pom.xml @@ -111,7 +111,7 @@ 2.0 4.0.1 2.1 - 5.1.1 + 5.1.2 3.1.1 3.0 3.0 diff --git a/microprofile/metrics/src/test/java/io/helidon/microprofile/metrics/CustomSnapshot.java b/microprofile/metrics/src/test/java/io/helidon/microprofile/metrics/CustomSnapshot.java new file mode 100644 index 00000000000..7b689c433e6 --- /dev/null +++ b/microprofile/metrics/src/test/java/io/helidon/microprofile/metrics/CustomSnapshot.java @@ -0,0 +1,51 @@ +/* + * Copyright (c) 2024 Oracle and/or its affiliates. + * + * 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 io.helidon.microprofile.metrics; + +import java.io.OutputStream; + +import org.eclipse.microprofile.metrics.Snapshot; + +/** + * Make sure subclass of {@link org.eclipse.microprofile.metrics.Snapshot} without a {@link #bucketValues()} implementation + * compiles correctly. + */ +class CustomSnapshot extends Snapshot { + @Override + public long size() { + return 0; + } + + @Override + public double getMax() { + return 0; + } + + @Override + public double getMean() { + return 0; + } + + @Override + public PercentileValue[] percentileValues() { + return new PercentileValue[0]; + } + + @Override + public void dump(OutputStream outputStream) { + + } +}