mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 07:34:04 -08:00
040425b0eb
* local storage selectedTab on targets tab was renamed Signed-off-by: Michał Szczygieł <[email protected]> * added filters when displaying alerts Signed-off-by: Michał Szczygieł <[email protected]> * function was simplified Signed-off-by: Michał Szczygieł <[email protected]> * fixed rebase Signed-off-by: Michał Szczygieł <[email protected]> * minor rename Signed-off-by: Michał Szczygieł <[email protected]> * Active -> Pending Signed-off-by: Michał Szczygieł <[email protected]>
69 lines
2.2 KiB
JavaScript
69 lines
2.2 KiB
JavaScript
function toggleJobTable(button, shouldExpand){
|
|
if (button.length === 0) { return; }
|
|
|
|
if (shouldExpand) {
|
|
button.removeClass("collapsed-table").addClass("expanded-table").html("show less");
|
|
} else {
|
|
button.removeClass("expanded-table").addClass("collapsed-table").html("show more");
|
|
}
|
|
|
|
button.parents(".table-container").find("table").toggle(shouldExpand);
|
|
button.parents(".table-container").find(".collapsed-element").toggle(shouldExpand);
|
|
}
|
|
|
|
function showAll(_, container) {
|
|
$(container).show();
|
|
}
|
|
|
|
function showUnhealthy(_, container) {
|
|
const isHealthy = $(container).find("h2").attr("class").indexOf("danger") < 0;
|
|
if (isHealthy) { $(container).hide(); }
|
|
}
|
|
|
|
function init() {
|
|
if ($("#unhealthy-targets").length) {
|
|
if (!localStorage.selectedTargetsTab || localStorage.selectedTargetsTab == "all-targets") {
|
|
$("#all-targets").parent().addClass("active");
|
|
$(".table-container").each(showAll);
|
|
} else if (localStorage.selectedTargetsTab == "unhealthy-targets") {
|
|
$("#unhealthy-targets").parent().addClass("active");
|
|
$(".table-container").each(showUnhealthy);
|
|
}
|
|
} else {
|
|
$(".table-container").each(showAll);
|
|
}
|
|
|
|
$("button.targets").click(function() {
|
|
const tableTitle = $(this).closest("h2").find("a").attr("id");
|
|
|
|
if ($(this).hasClass("collapsed-table")) {
|
|
localStorage.setItem(tableTitle, "expanded");
|
|
toggleJobTable($(this), true);
|
|
} else if ($(this).hasClass("expanded-table")) {
|
|
localStorage.setItem(tableTitle, "collapsed");
|
|
toggleJobTable($(this), false);
|
|
}
|
|
});
|
|
|
|
$(".job_header a").each(function (_, link) {
|
|
const cachedTableState = localStorage.getItem($(link).attr("id"));
|
|
if (cachedTableState === "collapsed") {
|
|
toggleJobTable($(this).siblings("button"), false);
|
|
}
|
|
});
|
|
|
|
$("#showTargets :input").change(function() {
|
|
const target = $(this).attr("id");
|
|
|
|
if (target === "all-targets") {
|
|
$(".table-container").each(showAll);
|
|
localStorage.setItem("selectedTargetsTab", "all-targets");
|
|
} else if (target === "unhealthy-targets") {
|
|
$(".table-container").each(showUnhealthy);
|
|
localStorage.setItem("selectedTargetsTab", "unhealthy-targets");
|
|
}
|
|
});
|
|
}
|
|
|
|
$(init);
|