milvus/internal/http/webui/query_component.html
jaime 1e8ea4a7e7
feat: add segment/channel/task/slow query render (#37561)
issue: #36621

Signed-off-by: jaime <yun.zhang@zilliz.com>
2024-11-12 17:44:29 +08:00

63 lines
2.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Milvus WebUI - Query Component</title>
<meta name="description" content="Milvus Management WebUI">
<link href="./static/css/bootstrap.min.css" rel="stylesheet">
<link href="./static/css/style.css" rel="stylesheet">
<script src="./static/js/jquery.min.js"></script>
<script src="./static/js/bootstrap.min.js"></script>
<script src="./static/js/bootstrap.bundle.min.js"></script>
<script src="./static/js/render.js"></script>
<script src="./static/js/common.js"></script>
<script src="./static/js/mockdata.js"></script>
</head>
<body>
<div class="container-fluid">
<div id="header"></div>
<div class="row">
<div class="col-md-2">
</div>
<div class="col-md-8">
<h3>Segments</h3>
<table id="querySegmentsTable" class="table table-bordered"></table>
<div style="display: flex; justify-content: space-between;">
<div id="querySegmentsTotalCount"></div>
<div id="querySegmentsPagination"></div>
</div>
<h3>Channels</h3>
<table id="queryChannelsTable" class="table table-bordered"></table>
<div style="display: flex; justify-content: space-between;">
<div id="queryChannelsTotalCount"></div>
<div id="queryChannelsPagination"></div>
</div>
<h3>Replicas</h3>
<table id="replicasTable" class="table table-bordered"></table>
<h3>Resource Groups</h3>
<table id="resourceGroupTable" class="table table-bordered"></table>
</div>
<div class="col-md-2">
</div>
</div>
<div id="footer"></div>
</div>
<script>
$(document).ready(function(){
$('#header').load("header.html");
$('#footer').load("footer.html");
});
fetchAndRenderQuerySegmentsAndChannels();
fetchAndRenderReplicas();
fetchAndRenderResourceGroup()
</script>
</body>
</html>