-
Notifications
You must be signed in to change notification settings - Fork 306
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PAYARA-161 Healthcheck stuck threads check (#1796)
* PAYARA-161 Initial stuck thread healthcheck Includes two different attempts at check for stuck threads. One of these is using the Thread MBean to check for deadlocked threads. The other is getting the stack trace of each thread and if it is the same when the healthcheck runs again then it says it is a stuck thread. However listeners and the like are at the same point each time which is expected behaviour so it prints out a load of unnecessary stack traces. * PAYARA-161 Use long requests to check for stuck threads * PAYARA-161 Moved healthchecks to their own modules. Still doesn't work, caused by OSGi wierdness * PAYARA-161 moved packages * PAYARA-161 server now boots Thread ids of stuck threads are listed, now to provide more information * PAYARA-161 healthcheck stuck threads now works * Added description for PAYARA-1411 * Admin Console integration for Stuck Thread checker PAYARA-1877
- Loading branch information
Showing
36 changed files
with
1,496 additions
and
221 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
135 changes: 135 additions & 0 deletions
135
...vice-console-plugin/src/main/resources/healthcheck/checkers/stuckThreadsConfiguration.jsf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
<!-- | ||
|
||
Copyright (c) 2017 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. | ||
--> | ||
|
||
<!initPage | ||
setResourceBundle(key="i18nhx" bundle="fish.payara.admingui.healthcheck.Strings"); | ||
/> | ||
<!composition template="/templates/default.layout" | ||
guiTitle="$resource{i18nhx.healthcheck.checker.configuration.garbageCollector.pageTitle}"> | ||
|
||
<!define name="content"> | ||
|
||
<event> | ||
<!beforeCreate | ||
getRequestValue(key="configName" value="#{pageSession.configName}"); | ||
setPageSessionAttribute(key="HEALTHCHECK_CONFIG_URL", | ||
value="#{sessionScope.REST_URL}/configs/config/#{pageSession.configName}/health-check-service-configuration"); | ||
|
||
gf.restRequest(endpoint="#{pageSession.HEALTHCHECK_CONFIG_URL}/get-healthcheck-configuration?target=#{pageSession.configName}" | ||
method="GET" result="#{requestScope.resp}"); | ||
setPageSessionAttribute(key="valueMap", | ||
value="#{requestScope.resp.data.subReports.get(3).extraProperties.stuckThreads}"); | ||
mapPut(map="#{pageSession.valueMap}" key="target" value="#{pageSession.configName}"); | ||
|
||
setPageSessionAttribute(key="convertToFalseList", value={"enabled", "dynamic"}); | ||
if (#{pageSession.valueMap['enabled']}=true) { | ||
setPageSessionAttribute(key="enabledSelected", value="true"); | ||
} | ||
|
||
setPageSessionAttribute(key="dynamic", value="true"); | ||
/> | ||
</event> | ||
|
||
<sun:form id="propertyForm"> | ||
#include "/common/shared/alertMsg_1.inc" | ||
#include "/healthcheck/healthcheck/healthcheckConfigTabs.inc | ||
<sun:title id="propertyContentPage" title="$resource{i18nhx.healthcheck.checker.configuration.stuckThreads.pageTitle}" | ||
helpText="$resource{i18nhx.healthcheck.checker.configuration.stuckThreads.pageTitleHelpText}" > | ||
<!facet pageButtonsTop> | ||
<sun:panelGroup id="topButtons"> | ||
<sun:button id="saveButton" text="$resource{i18n.button.Save}" | ||
onClick="if (guiValidate('#{reqMsg}','#{reqInt}','#{reqPort}')) submitAndDisable(this, '$resource{i18n.button.Processing}'); return false;" > | ||
<!command | ||
mapPut(map="#{pageSession.valueMap}" key="enabled" value="#{pageSession.enabledSelected}"); | ||
mapPut(map="#{pageSession.valueMap}" key="dynamic" value="#{pageSession.dynamic}"); | ||
prepareSuccessfulMsg(); | ||
gf.updateEntity(endpoint="#{pageSession.HEALTHCHECK_CONFIG_URL}/healthcheck-stuckthreads-configure" | ||
attrs="#{pageSession.valueMap}" convertToFalse="#{pageSession.convertToFalseList}"); | ||
/> | ||
</sun:button> | ||
</sun:panelGroup> | ||
</facet> | ||
</sun:title> | ||
<sun:propertySheet id="propertySheet"> | ||
#include "/common/shared/configNameSection.inc" | ||
<sun:propertySheetSection id="garbageCollectorCheckerProps"> | ||
<sun:property id="enabledProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" | ||
label="$resource{i18nhx.healthcheck.configuration.enabledLabel}" | ||
helpText="$resource{i18nhx.healthcheck.configuration.enabledLabelHelpText}"> | ||
<sun:checkbox id="enabledBox" selected="#{pageSession.enabledSelected}" selectedValue="true" /> | ||
</sun:property> | ||
<sun:property id="dynamicProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" | ||
label="$resource{i18nhx.healthcheck.configuration.dynamicLabel}" | ||
helpText="$resource{i18nhx.healthcheck.configuration.dynamicLabelHelpText}"> | ||
<sun:checkbox id="dynamicBox" selected="#{pageSession.dynamic}" selectedValue="true" /> | ||
</sun:property> | ||
<sun:property id="nameProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" | ||
label="$resource{i18nhx.healthcheck.checker.configuration.nameLabel}" | ||
helpText="$resource{i18nhx.healthcheck.checker.configuration.nameLabelHelpText}"> | ||
<sun:textField id="nameField" columns="$int{40}" maxLength="250" text="#{pageSession.valueMap['checkerName']}"/> | ||
</sun:property> | ||
<sun:property id="timeProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" | ||
label="$resource{i18nhx.healthcheck.checker.configuration.timeLabel}" | ||
helpText="$resource{i18nhx.healthcheck.checker.configuration.timeLabelHelpText}"> | ||
<sun:textField id="timeField" columns="$int{40}" maxLength="250" styleClass="integer" | ||
text="#{pageSession.valueMap['time']}"/> | ||
</sun:property> | ||
<sun:property id="unitProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" | ||
label="$resource{i18nhx.healthcheck.checker.configuration.unitLabel}" | ||
helpText="$resource{i18nhx.healthcheck.checker.configuration.unitLabelHelpText}"> | ||
<sun:dropDown id="unitDropdown" selected="#{pageSession.valueMap['unit']}" | ||
labels={"NANOSECONDS", "MICROSECONDS", "MILLISECONDS", "SECONDS", "MINUTES", "HOURS", "DAYS"} /> | ||
</sun:property> | ||
<sun:property id="thresholdTimeProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" | ||
label="$resource{i18nhx.healthcheck.checker.configuration.stuckThreads.timeThresholdLabel}" | ||
helpText="$resource{i18nhx.healthcheck.checker.configuration.stuckThreads.timeThresholdLabelHelpText}"> | ||
<sun:textField id="timeField" columns="$int{40}" maxLength="250" styleClass="integer" | ||
text="#{pageSession.valueMap['threshold']}"/> | ||
</sun:property> | ||
<sun:property id="thresholdUnitProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" | ||
label="$resource{i18nhx.healthcheck.checker.configuration.stuckThreads.thresholdUnitLabel}" | ||
helpText="$resource{i18nhx.healthcheck.checker.configuration.stuckThreads.thresholdUnitLabelHelpText}"> | ||
<sun:dropDown id="unitDropdown" selected="#{pageSession.valueMap['thresholdUnit']}" | ||
labels={"NANOSECONDS", "MICROSECONDS", "MILLISECONDS", "SECONDS", "MINUTES", "HOURS", "DAYS"} /> | ||
</sun:property> | ||
</sun:propertySheetSection> | ||
</sun:propertySheet> | ||
</sun:form> | ||
</define> | ||
</composition> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.