[ server ] [ executor ]- shell executor optimize - 1

This commit is contained in:
zeaslity
2023-02-06 17:22:02 +08:00
parent f347cedce3
commit f4e636a368
4 changed files with 63 additions and 8 deletions

View File

@@ -1,7 +1,46 @@
<!DOCTYPE html>
<html>
<head><title>Index of /octopus-agent/</title></head>
<head>
<script src="https://cdn.jsdelivr.net/npm/chart.js@2.9.3/dist/Chart.min.js"></script>
</head>
<body>
<h1>Index of /octopus-agent/</h1><hr><pre><a href="../">../</a>
<a href="octopus-agent-2022-12-26-16-00-00.jar">octopus-agent-2022-12-26-16-00-00.jar</a> 27-Dec-2022 07:01 46309416
</pre><hr></body>
<canvas id="myChart" width="800" height="400"></canvas>
<script>
const ctx = document.getElementById("myChart").getContext("2d");
const myChart = new Chart(ctx, {
type: "line",
data: {
labels: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul"],
datasets: [
{
label: "Data Set 1",
data: [1, 4, 2, 5, 3, 7, 6],
backgroundColor: "rgba(255, 99, 132, 0.2)",
borderColor: "rgba(255, 99, 132, 1)",
borderWidth: 1
},
{
label: "Data Set 2",
data: [2, 5, 4, 7, 6, 9, 8],
backgroundColor: "rgba(54, 162, 235, 0.2)",
borderColor: "rgba(54, 162, 235, 1)",
borderWidth: 1
}
]
},
options: {
scales: {
xAxes: [
{
type: "time",
time: {
unit: "month"
}
}
]
}
}
});
</script>
</body>
</html>