Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 47a38032a6 | |||
| b59931f357 | |||
| 1420b08a43 | |||
| cd5bdb5938 | |||
| 69ade8dcbb |
38
app.py
38
app.py
@@ -1155,7 +1155,7 @@ HTML_TEMPLATE = '''<!DOCTYPE html>
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>项目服务管理面板 v3.3</title>
|
<title>项目服务管理面板 v3.3.1</title>
|
||||||
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>📊</text></svg>">
|
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>📊</text></svg>">
|
||||||
<script src="https://cdn.tailwindcss.com"></script>
|
<script src="https://cdn.tailwindcss.com"></script>
|
||||||
<link href="https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css" rel="stylesheet">
|
<link href="https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css" rel="stylesheet">
|
||||||
@@ -1380,7 +1380,7 @@ HTML_TEMPLATE = '''<!DOCTYPE html>
|
|||||||
</div>
|
</div>
|
||||||
<div class="card rounded-xl p-6">
|
<div class="card rounded-xl p-6">
|
||||||
<div class="flex items-center justify-between mb-4">
|
<div class="flex items-center justify-between mb-4">
|
||||||
<h3 class="font-bold text-lg flex items-center gap-2"><i class="ri-memory-card-line text-green-400"></i> 内存使用</h3>
|
<h3 class="font-bold text-lg flex items-center gap-2"><i class="ri-database-2-line text-green-400"></i> 内存使用</h3>
|
||||||
<span id="memPercent" class="text-2xl font-bold text-green-400">-</span>
|
<span id="memPercent" class="text-2xl font-bold text-green-400">-</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="w-full bg-gray-700 rounded-full h-4 mb-2">
|
<div class="w-full bg-gray-700 rounded-full h-4 mb-2">
|
||||||
@@ -1446,7 +1446,7 @@ HTML_TEMPLATE = '''<!DOCTYPE html>
|
|||||||
</div>
|
</div>
|
||||||
<div class="threshold-item">
|
<div class="threshold-item">
|
||||||
<div class="threshold-label">
|
<div class="threshold-label">
|
||||||
<i class="ri-memory-card-line threshold-icon text-green-400"></i>
|
<i class="ri-database-2-line threshold-icon text-green-400"></i>
|
||||||
<span class="text-gray-300 text-sm">内存使用率</span>
|
<span class="text-gray-300 text-sm">内存使用率</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex items-center gap-2">
|
<div class="flex items-center gap-2">
|
||||||
@@ -1516,6 +1516,10 @@ HTML_TEMPLATE = '''<!DOCTYPE html>
|
|||||||
</select>
|
</select>
|
||||||
<span id="realtimeIndicator" class="text-xs text-green-400 ml-1 hidden">●</span>
|
<span id="realtimeIndicator" class="text-xs text-green-400 ml-1 hidden">●</span>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="flex items-center gap-2 ml-4">
|
||||||
|
<input type="checkbox" id="showProcessListCheck" class="w-4 h-4 cursor-pointer" onchange="toggleProcessList()">
|
||||||
|
<label for="showProcessListCheck" class="text-gray-300 text-xs cursor-pointer">显示进程列表</label>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- 进程列表(实时监控时显示) -->
|
<!-- 进程列表(实时监控时显示) -->
|
||||||
@@ -1908,6 +1912,7 @@ HTML_TEMPLATE = '''<!DOCTYPE html>
|
|||||||
clearInterval(realtimeTimer);
|
clearInterval(realtimeTimer);
|
||||||
realtimeTimer = null;
|
realtimeTimer = null;
|
||||||
document.getElementById('realtimeCheck').checked = false;
|
document.getElementById('realtimeCheck').checked = false;
|
||||||
|
document.getElementById('showProcessListCheck').checked = false;
|
||||||
document.getElementById('realtimeToggle').classList.remove('active');
|
document.getElementById('realtimeToggle').classList.remove('active');
|
||||||
document.getElementById('realtimeIndicator').classList.add('hidden');
|
document.getElementById('realtimeIndicator').classList.add('hidden');
|
||||||
document.getElementById('processListSection').classList.add('hidden');
|
document.getElementById('processListSection').classList.add('hidden');
|
||||||
@@ -2134,8 +2139,8 @@ HTML_TEMPLATE = '''<!DOCTYPE html>
|
|||||||
// 检查阈值
|
// 检查阈值
|
||||||
checkThresholds(data);
|
checkThresholds(data);
|
||||||
|
|
||||||
// 如果实时监控开启,加载进程列表
|
// 如果实时监控和进程列表都开启,加载进程列表
|
||||||
if (document.getElementById('realtimeCheck').checked) {
|
if (document.getElementById('realtimeCheck').checked && document.getElementById('showProcessListCheck').checked) {
|
||||||
loadTopProcesses();
|
loadTopProcesses();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2195,21 +2200,23 @@ HTML_TEMPLATE = '''<!DOCTYPE html>
|
|||||||
const checked = document.getElementById('realtimeCheck').checked;
|
const checked = document.getElementById('realtimeCheck').checked;
|
||||||
const toggle = document.getElementById('realtimeToggle');
|
const toggle = document.getElementById('realtimeToggle');
|
||||||
const indicator = document.getElementById('realtimeIndicator');
|
const indicator = document.getElementById('realtimeIndicator');
|
||||||
const processSection = document.getElementById('processListSection');
|
|
||||||
|
|
||||||
if (checked) {
|
if (checked) {
|
||||||
toggle.classList.add('active');
|
toggle.classList.add('active');
|
||||||
indicator.classList.remove('hidden');
|
indicator.classList.remove('hidden');
|
||||||
processSection.classList.remove('hidden');
|
|
||||||
// 立即加载一次
|
// 立即加载一次
|
||||||
loadSystemStats();
|
loadSystemStats();
|
||||||
loadTopProcesses();
|
|
||||||
// 启动定时器
|
// 启动定时器
|
||||||
realtimeTimer = setInterval(loadSystemStats, realtimeInterval * 1000);
|
realtimeTimer = setInterval(loadSystemStats, realtimeInterval * 1000);
|
||||||
|
// 如果进程列表开关也开启,则显示并加载
|
||||||
|
if (document.getElementById('showProcessListCheck').checked) {
|
||||||
|
document.getElementById('processListSection').classList.remove('hidden');
|
||||||
|
loadTopProcesses();
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
toggle.classList.remove('active');
|
toggle.classList.remove('active');
|
||||||
indicator.classList.add('hidden');
|
indicator.classList.add('hidden');
|
||||||
processSection.classList.add('hidden');
|
document.getElementById('processListSection').classList.add('hidden');
|
||||||
// 停止定时器
|
// 停止定时器
|
||||||
if (realtimeTimer) {
|
if (realtimeTimer) {
|
||||||
clearInterval(realtimeTimer);
|
clearInterval(realtimeTimer);
|
||||||
@@ -2218,6 +2225,19 @@ HTML_TEMPLATE = '''<!DOCTYPE html>
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function toggleProcessList() {
|
||||||
|
const checked = document.getElementById('showProcessListCheck').checked;
|
||||||
|
const realtimeChecked = document.getElementById('realtimeCheck').checked;
|
||||||
|
const processSection = document.getElementById('processListSection');
|
||||||
|
|
||||||
|
if (checked && realtimeChecked) {
|
||||||
|
processSection.classList.remove('hidden');
|
||||||
|
loadTopProcesses();
|
||||||
|
} else {
|
||||||
|
processSection.classList.add('hidden');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// IP 保存
|
// IP 保存
|
||||||
function saveExternalIp() {
|
function saveExternalIp() {
|
||||||
externalIp = document.getElementById('externalIp').value.trim();
|
externalIp = document.getElementById('externalIp').value.trim();
|
||||||
|
|||||||
30300
logs/app.log
30300
logs/app.log
File diff suppressed because it is too large
Load Diff
@@ -64,6 +64,19 @@
|
|||||||
"git_repo": "http://192.168.2.8:12007/coder/ai-chat-system",
|
"git_repo": "http://192.168.2.8:12007/coder/ai-chat-system",
|
||||||
"version": "v2.5.4"
|
"version": "v2.5.4"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"id": "ai-chat-app",
|
||||||
|
"name": "AI Chat App",
|
||||||
|
"type": "web",
|
||||||
|
"ports": [19021],
|
||||||
|
"directory": "works/ai-chat-app-new/backend",
|
||||||
|
"start_cmd": "mkdir -p logs && nohup python3 app.py > logs/app.log 2>&1 & disown",
|
||||||
|
"health_url": "http://localhost:19021/api/config",
|
||||||
|
"description": "AI对话助手移动端应用,智能体对话、TTS语音、思考模式",
|
||||||
|
"admin_url": "http://localhost:19021/admin",
|
||||||
|
"git_repo": "http://192.168.2.8:12007/coder/ai-chat-app-v4",
|
||||||
|
"version": "v3.15.1"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"id": "product-crawler",
|
"id": "product-crawler",
|
||||||
"name": "产品参数爬取系统",
|
"name": "产品参数爬取系统",
|
||||||
|
|||||||
Reference in New Issue
Block a user