1a789d3acb
* cfg edit 1 * jsonschema deps * feat: lp mig - first few steps * lp mig: default tasks * code comments * docs * lp-mig-progress * shared * comments and todos * fix: curio: rename lotus-provider to curio (#11645) * rename provider to curio * install gotext * fix lint errors, mod tidy * fix typo * fix API_INFO and add gotext to circleCI * add back gotext * add gotext after remerge * lp: channels doc * finish easy-migration TODOs * out generate * merging and more renames * avoid make-all * minor doc stuff * cu: make gen * make gen fix * make gen * tryfix * go mod tidy * minor ez migration fixes * ez setup - ui cleanups * better error message * guided setup colors * better path to saveconfigtolayer * loadconfigwithupgrades fix * readMiner oops * guided - homedir * err if miner is running * prompt error should exit * process already running, miner_id sectors in migration * dont prompt for language a second time * check miner stopped * unlock repo * render and sql oops * curio easyMig - some fixes * easyMigration runs successfully * lint * part 2 of last * message * merge addtl * fixing guided setup for myself * warn-on-no-post * EditorLoads * cleanups and styles * create info * fix tests * make gen * sector early bird * sectors v2 * sector termination v1 * terminate2 * mjs * minor things * flag bad sectors * fix errors * add dealweight and deals * change column width * ui looking better * cleanups * fix pipeline page * comments * curioweb: Add missing sector info file * curioweb: fix hapi root template --------- Co-authored-by: LexLuthr <88259624+LexLuthr@users.noreply.github.com> Co-authored-by: LexLuthr <lexluthr@protocol.ai> Co-authored-by: LexLuthr <lexluthr@curiostorage.org> Co-authored-by: Łukasz Magiera <magik6k@gmail.com>
201 lines
7.0 KiB
HTML
201 lines
7.0 KiB
HTML
<!doctype html>
|
|
<html lang="en" style="background:rgb(11, 22, 34)">
|
|
<head>
|
|
<title>Curio Cluster Overview</title>
|
|
<script src="https://unpkg.com/htmx.org@1.9.5"
|
|
integrity="sha384-xcuj3WpfgjlKF+FXhSQFQ0ZNr39ln+hwjN3npfM9VBnUskLolQAcN80McRIVOPuO"
|
|
crossorigin="anonymous"></script>
|
|
<script type="module" src="chain-connectivity.mjs"></script>
|
|
<script type="module" src="/ux/curio-ux.mjs"></script>
|
|
<style>
|
|
.deadline-box {
|
|
display: grid;
|
|
grid-template-columns: repeat(16, auto);
|
|
grid-template-rows: repeat(3, auto);
|
|
grid-gap: 1px;
|
|
}
|
|
|
|
.deadline-entry {
|
|
width: 10px;
|
|
height: 10px;
|
|
background-color: grey;
|
|
margin: 1px;
|
|
}
|
|
|
|
.deadline-entry-cur {
|
|
border-bottom: 3px solid deepskyblue;
|
|
height: 7px;
|
|
}
|
|
|
|
.deadline-proven {
|
|
background-color: green;
|
|
}
|
|
|
|
.deadline-partially-faulty {
|
|
background-color: yellow;
|
|
}
|
|
|
|
.deadline-faulty {
|
|
background-color: red;
|
|
}
|
|
|
|
.logo {
|
|
display: inline-block;
|
|
}
|
|
|
|
.dash-tile {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 0.75rem;
|
|
background: #3f3f3f;
|
|
|
|
& b {
|
|
padding-bottom: 0.5rem;
|
|
color: deeppink;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body style="visibility:hidden">
|
|
<curio-ux>
|
|
<div class="page">
|
|
<div class="row">
|
|
<div class="col-md-auto" style="width: 50%">
|
|
<div class="info-block">
|
|
<h2>Chain Connectivity</h2>
|
|
<chain-connectivity></chain-connectivity>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-auto">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-auto" style="width: 50%">
|
|
<div class="info-block">
|
|
<h2>Cluster Machines</h2>
|
|
<table class="table table-dark">
|
|
<thead>
|
|
<tr>
|
|
<th>Host</th>
|
|
<th>ID</th>
|
|
<th>Last Contact</th>
|
|
<th>Tasks (24h)</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody hx-get="/hapi/simpleinfo/machines" hx-trigger="load,every 5s">
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-auto">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-auto" style="width: 50%">
|
|
<div class="info-block">
|
|
<h2><a href="/pipeline_porep.html">PoRep Pipeline</a></h2>
|
|
<table class="table table-dark">
|
|
<thead>
|
|
<tr>
|
|
<th>Address</th>
|
|
<th>SDR</th>
|
|
<th>Trees</th>
|
|
<th>Precommit Msg</th>
|
|
<th>Wait Seed</th>
|
|
<th>PoRep</th>
|
|
<th>Commit Msg</th>
|
|
<th>Done</th>
|
|
<th>Failed</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody hx-get="/hapi/simpleinfo/pipeline-porep" hx-trigger="load,every 5s">
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-auto">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-auto" style="width: 50%">
|
|
<div class="info-block">
|
|
<h2>Actor Summary</h2>
|
|
<table class="table table-dark">
|
|
<thead>
|
|
<tr>
|
|
<th>Address</th>
|
|
<th>Config Layers Available</th>
|
|
<th>QaP</th>
|
|
<th>Deadlines</th>
|
|
<th>Balance</th>
|
|
<th>Available</th>
|
|
<th>Worker</th>
|
|
<th>Wins</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody hx-get="/hapi/simpleinfo/actorsummary" hx-trigger="load,every 5s">
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-auto">
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="row">
|
|
<div class="col-md-auto" style="width: 50%">
|
|
<div class="info-block">
|
|
<h2>Recently Finished Tasks</h2>
|
|
<table class="table table-dark">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>ID</th>
|
|
<th>Executor</th>
|
|
<th>Posted</th>
|
|
<th>Start</th>
|
|
<th>Queued</th>
|
|
<th>Took</th>
|
|
<th>Outcome</th>
|
|
<th>Message</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody hx-get="/hapi/simpleinfo/taskhistory" hx-trigger="load, every 2s">
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-auto">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-auto" style="width: 50%">
|
|
<div class="info-block">
|
|
<h2>Cluster Tasks</h2>
|
|
<table class="table table-dark">
|
|
<thead>
|
|
<tr>
|
|
<th style="min-width: 128px">Task</th>
|
|
<th>ID</th>
|
|
<th>Posted</th>
|
|
<th>Owner</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody hx-get="/hapi/simpleinfo/tasks" hx-trigger="load,every 1s">
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-auto">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</curio-ux>
|
|
</body>
|
|
|
|
</html> |