mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-09 04:46:06 +10:00
add query parameter for thread-dump window reload
This commit is contained in:
@@ -421,7 +421,7 @@
|
||||
if (openType === null || openType === "window") {
|
||||
$window.open(
|
||||
getOpenUrl() +
|
||||
"/threadDump/" + currentApplicationName + "@" + currentServiceType + "/" + agentId,
|
||||
"/threadDump/" + currentApplicationName + "@" + currentServiceType + "/" + agentId + "?" + Date.now().valueOf() ,
|
||||
"Thread Dump Info",
|
||||
"width=1280px,height=800px,menubar=no,toolbar=no,location=no,resizable=yes,scrollbars=no,status=no"
|
||||
);
|
||||
|
||||
+4
-4
@@ -33,9 +33,9 @@
|
||||
var currentAgentId = "";
|
||||
var currentApplicationName = "";
|
||||
|
||||
$el.draggable({
|
||||
handle: ".panel-heading"
|
||||
});
|
||||
// $el.draggable({
|
||||
// handle: ".panel-heading"
|
||||
// });
|
||||
scope.threadList = [];
|
||||
scope.sortType = "-execTime";
|
||||
|
||||
@@ -171,7 +171,7 @@
|
||||
});
|
||||
}
|
||||
function setForWindow() {
|
||||
$el.draggable("destroy");
|
||||
// $el.draggable("destroy");
|
||||
$el.find(".panel-heading").css("cursor", "default").find("button").hide();
|
||||
resetSize();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user