Skip to content

Commit

Permalink
fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
tmiddlet2666 committed Feb 27, 2024
1 parent a87e832 commit d425a17
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,18 +121,11 @@ public String preProcessReporterXML(VisualVMModel model, String sReporterXML)
{
// the report XML contains the following tokens that require substitution: %SERVICE_NAME% and %VIEW_NAME%
Pair<String, String> selectedCache = model.getSelectedCache();

String sServiceName = null;

if (selectedCache != null)
{
String[] asServiceDetails = getDomainAndService(selectedCache.getX());
sServiceName = asServiceDetails[1];
}
String sServiceName = selectedCache.getX();

return sServiceName == null ? sReporterXML :
sReporterXML.replaceAll("%SERVICE_NAME%", escape(sServiceName)
.replaceAll("%VIEW_NAME%", escape(selectedCache.getY()));
.replaceAll("%VIEW_NAME%", escape(selectedCache.getY())));
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ OpenIDE-Module-Long-Description=\
<li>Machines - Displays a list of the physical machines that make up the Coherence cluster as well as information about the load averages and available memory on these machines.</li> \
<li>Members - Displays the full list of Coherence members/nodes including individual publisher/ receiver success rates, memory and send queue sizes.</li> \
<li>Services - Displays information about the running services including partition counts and statusHA values. If you select a service, on the next data refresh you will see detailed thread information for each node of the service as well as graphs of that information. </li> \
<li>Caches - Displays information about any caches including size, and memory usage information. To get the correct information to be displayed for memory usage, you must be using the binary unit-calculator. If you select a cache, on the next data refresh you will see detailed information about each node hosting that service and cache. </li> \
<li>Caches - Displays information about any caches including size, and memory usage information. To get the correct information to be displayed for memory usage, you must be using the binary unit-calculator. If you select a cache, on the next data refresh you will see detailed information about each node hosting that service and cache as well as view caches if any exist.</li> \
<li>Topics - Displays information about any active Topics including size, message rates and unconsumed messages.</li> \
<li>Proxy Servers - If your cluster is running proxy servers, this tab displays information about the proxy servers and the number of connections across each proxy server and total connections. </li> \
<li>HTTP Servers - If your cluster is running proxy servers with HTTP acceptors, this tab displays information about the HTTP servers, the number of connections across each server, total connections and graphs of response codes, errors and requests over time for a selected service. </li> \
Expand Down

0 comments on commit d425a17

Please sign in to comment.