Skip to content

Commit

Permalink
Adopt MP metrics 5.1.2 (#9446) (#9463)
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Quinn <[email protected]>
Co-authored-by: Tim Quinn <[email protected]>
  • Loading branch information
barchetta and tjquinno authored Nov 4, 2024
1 parent 8e665f8 commit 20c30be
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
<version.lib.microprofile-graphql>2.0</version.lib.microprofile-graphql>
<version.lib.microprofile-health>4.0.1</version.lib.microprofile-health>
<version.lib.microprofile-jwt>2.1</version.lib.microprofile-jwt>
<version.lib.microprofile-metrics-api>5.1.1</version.lib.microprofile-metrics-api>
<version.lib.microprofile-metrics-api>5.1.2</version.lib.microprofile-metrics-api>
<version.lib.microprofile-openapi-api>3.1.1</version.lib.microprofile-openapi-api>
<version.lib.microprofile-reactive-messaging-api>3.0</version.lib.microprofile-reactive-messaging-api>
<version.lib.microprofile-reactive-streams-operators-api>3.0</version.lib.microprofile-reactive-streams-operators-api>
Expand Down
Original file line number Diff line number Diff line change
@@ -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) {

}
}

0 comments on commit 20c30be

Please sign in to comment.