Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FISH-5827 Stuck Thread count as MicroProfile Metric Gauge (Payara 5.x) #5957

Merged
merged 4 commits into from
Oct 3, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) [2022] Payara Foundation and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://github.com/payara/Payara/blob/master/LICENSE.txt
* See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at glassfish/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* The Payara Foundation designates this particular file as subject to the "Classpath"
* exception as provided by the Payara Foundation in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package fish.payara.microprofile.metrics.healthcheck;

import fish.payara.nucleus.healthcheck.HealthCheckStatsProvider;
import org.eclipse.microprofile.metrics.Counter;

/**
* Implementation of a counter based off an HealthCheck. As this is just a proxy
* for the HealthCheck calling the {@link #inc() } method will throw an
* {@link UnsupportedOperationException}. Just use the {@link #getCount()}
* method to get the value of the HealthCheck backing this.
*/
public class HealthCheckCounter implements Counter, HealthCheckStatsProvider {

private final HealthCheckStatsProvider healthCheck;

private final ServiceExpression expression;

public HealthCheckCounter(HealthCheckStatsProvider healthCheck, ServiceExpression expression) {
this.healthCheck = healthCheck;
this.expression = expression;
}

/**
* Throws {@link UnsupportedOperationException} - this is all dealt with by
* the backing HealthCheck
*/
@Override
public void inc() {
throw new UnsupportedOperationException("Not supported - use getCount() to get value from HealthCheck directly.");
}

/**
* Throws {@link UnsupportedOperationException} - this is all dealt with by
* the backing HealthCheck
* @param n the increment value
*/
@Override
public void inc(long n) {
throw new UnsupportedOperationException("Not supported - use getCount() to get value from HealthCheck directly.");
}

@Override
public long getCount() {
return getValue(Long.class, expression.getAttributeName());
}

@Override
public <Long> Long getValue(Class<Long> type, String attributeName) {
return healthCheck.getValue(type, attributeName);
}

@Override
public boolean isEnabled() {
return healthCheck.isEnabled();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) [2022] Payara Foundation and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://github.com/payara/Payara/blob/master/LICENSE.txt
* See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at glassfish/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* The Payara Foundation designates this particular file as subject to the "Classpath"
* exception as provided by the Payara Foundation in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package fish.payara.microprofile.metrics.healthcheck;

import fish.payara.nucleus.healthcheck.HealthCheckStatsProvider;
import org.eclipse.microprofile.metrics.Gauge;

/**
* Implementation of a gauge based off an HealthCheck.
*
*/
public class HealthCheckGauge implements Gauge<Number>, HealthCheckStatsProvider {

private final HealthCheckStatsProvider healthCheck;

private final ServiceExpression expression;

public HealthCheckGauge(HealthCheckStatsProvider healthCheck, ServiceExpression expression) {
this.healthCheck = healthCheck;
this.expression = expression;
}

@Override
public Number getValue() {
return getValue(Number.class, expression.getAttributeName());
}

@Override
public boolean isEnabled() {
return healthCheck.isEnabled();
}

@Override
public <Number> Number getValue(Class<Number> type, String attributeName) {
return healthCheck.getValue(type, attributeName);
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) [2022] Payara Foundation and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://github.com/payara/Payara/blob/master/LICENSE.txt
* See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at glassfish/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* The Payara Foundation designates this particular file as subject to the "Classpath"
* exception as provided by the Payara Foundation in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package fish.payara.microprofile.metrics.healthcheck;

public class ServiceExpression {

private String service;

private String attributeName;

private static final String ATTRIBUTE_SEPARATOR = "#";

public ServiceExpression(String expression) {
if (expression == null || expression.trim().isEmpty()) {
throw new IllegalArgumentException("Service Expression is null");
}
int slashIndex = expression.lastIndexOf(ATTRIBUTE_SEPARATOR);
if (slashIndex < 0) {
throw new IllegalArgumentException("MBean Expression is invalid : " + expression);
}
service = expression.substring(0, slashIndex);
attributeName = expression.substring(slashIndex + 1);
}

public String getServiceId() {
return service;
}

public String getAttributeName() {
return attributeName;
}

}
Loading