Compare commits
2 Commits
f05f5ae364
...
08201469c5
Author | SHA1 | Date |
---|---|---|
lingel | 08201469c5 | 5 months ago |
lingel | fb687b96ef | 5 months ago |
@ -0,0 +1,3 @@
|
|||||||
|
# 默认忽略的文件
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
@ -0,0 +1,17 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module type="PYTHON_MODULE" version="4">
|
||||||
|
<component name="NewModuleRootManager">
|
||||||
|
<content url="file://$MODULE_DIR$">
|
||||||
|
<excludeFolder url="file://$MODULE_DIR$/.venv" />
|
||||||
|
</content>
|
||||||
|
<orderEntry type="jdk" jdkName="Python 3.12 (G:)" jdkType="Python SDK" />
|
||||||
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
</component>
|
||||||
|
<component name="PackageRequirementsSettings">
|
||||||
|
<option name="requirementsPath" value="" />
|
||||||
|
</component>
|
||||||
|
<component name="PyDocumentationSettings">
|
||||||
|
<option name="format" value="EPYTEXT" />
|
||||||
|
<option name="myDocStringFormat" value="Epytext" />
|
||||||
|
</component>
|
||||||
|
</module>
|
@ -0,0 +1,6 @@
|
|||||||
|
<component name="InspectionProjectProfileManager">
|
||||||
|
<settings>
|
||||||
|
<option name="USE_PROJECT_PROFILE" value="false" />
|
||||||
|
<version value="1.0" />
|
||||||
|
</settings>
|
||||||
|
</component>
|
@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="Black">
|
||||||
|
<option name="sdkName" value="Python 3.12 (controller)" />
|
||||||
|
</component>
|
||||||
|
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.12 (G:)" project-jdk-type="Python SDK" />
|
||||||
|
</project>
|
@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectModuleManager">
|
||||||
|
<modules>
|
||||||
|
<module fileurl="file://$PROJECT_DIR$/.idea/controller.iml" filepath="$PROJECT_DIR$/.idea/controller.iml" />
|
||||||
|
</modules>
|
||||||
|
</component>
|
||||||
|
</project>
|
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="VcsDirectoryMappings">
|
||||||
|
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
|
||||||
|
</component>
|
||||||
|
</project>
|
@ -0,0 +1,11 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# encoding: utf-8
|
||||||
|
# @author: 原凯峰
|
||||||
|
# @contact: 2894340009@qq.com
|
||||||
|
# @software: pycharm
|
||||||
|
# @file: confControl.py
|
||||||
|
# @time: 2024/6/21 11:18
|
||||||
|
# @desc:
|
||||||
|
|
||||||
|
|
||||||
|
#TODO 通过ssh在线更改nginx的conf文件
|
Binary file not shown.
@ -0,0 +1,53 @@
|
|||||||
|
# encoding: utf-8
|
||||||
|
# @author: 原凯峰
|
||||||
|
# @contact: 2894340009@qq.com
|
||||||
|
# @software: pycharm
|
||||||
|
# @file: Server.py
|
||||||
|
# @time: 2024/6/19 9:22
|
||||||
|
# @desc:
|
||||||
|
import json
|
||||||
|
from http.server import BaseHTTPRequestHandler, HTTPServer
|
||||||
|
from MessageHandler.PreDataProcessor import *
|
||||||
|
import time
|
||||||
|
|
||||||
|
class CORSHTTPRequestHandler(BaseHTTPRequestHandler):
|
||||||
|
def do_OPTIONS(self):
|
||||||
|
self.send_response(204)
|
||||||
|
self.send_header('Content-type', 'text/plain')
|
||||||
|
self.send_header('Access-Control-Allow-Origin', '*')
|
||||||
|
self.send_header('Access-Control-Allow-Methods', 'GET, POST, OPTIONS')
|
||||||
|
self.send_header('Access-Control-Allow-Headers', 'Content-Type')
|
||||||
|
self.end_headers()
|
||||||
|
|
||||||
|
def do_POST(self):
|
||||||
|
content_length = int(self.headers['Content-Length'])
|
||||||
|
post_data = self.rfile.read(content_length)
|
||||||
|
|
||||||
|
self.send_response(200)
|
||||||
|
self.send_header('Content-type', 'text/plain')
|
||||||
|
self.send_header('Access-Control-Allow-Origin', '*')
|
||||||
|
self.end_headers()
|
||||||
|
|
||||||
|
print("Request line:", self.requestline)
|
||||||
|
print("Headers:", self.headers)
|
||||||
|
print("Body:", post_data.decode('utf-8'))
|
||||||
|
|
||||||
|
# 处理程序
|
||||||
|
MessageProcessor = preDataProcessor(post_data)
|
||||||
|
# response = {"POST": "request received"}
|
||||||
|
# self.wfile.write(str(response).encode('utf-8'))
|
||||||
|
# time.sleep(1)
|
||||||
|
backMessage =MessageProcessor.returnMessage
|
||||||
|
response = {"POST": backMessage}
|
||||||
|
|
||||||
|
self.wfile.write(str(json.dumps(response)).encode('utf-8'))
|
||||||
|
# self.wfile.write("{\"POST\": \"request received\"}".encode('utf-8'))
|
||||||
|
|
||||||
|
def do_GET(self):
|
||||||
|
self.send_response(200)
|
||||||
|
self.send_header('Content-type', 'text/plain')
|
||||||
|
self.send_header('Access-Control-Allow-Origin', '*')
|
||||||
|
self.end_headers()
|
||||||
|
|
||||||
|
self.wfile.write(b"Hello, world!")
|
||||||
|
|
Binary file not shown.
@ -0,0 +1,74 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# encoding: utf-8
|
||||||
|
# @author: 原凯峰
|
||||||
|
# @contact: 2894340009@qq.com
|
||||||
|
# @software: pycharm
|
||||||
|
# @file: MachineLearningDivider.py
|
||||||
|
# @time: 2024/6/26 8:21
|
||||||
|
# @desc:利用随机森林法进行模型训练,能够通过平均响应时间、故障率等数据计算出服务器的健康状态
|
||||||
|
|
||||||
|
|
||||||
|
from sklearn.model_selection import train_test_split
|
||||||
|
from sklearn.ensemble import RandomForestClassifier
|
||||||
|
from sklearn.metrics import classification_report, accuracy_score
|
||||||
|
import pickle
|
||||||
|
# 假设我们有以下数据集
|
||||||
|
X = [
|
||||||
|
[0.3, 0.005], # 服务器特征:平均响应时间和故障率
|
||||||
|
[2.5, 0.03],
|
||||||
|
[0.7, 0.045],
|
||||||
|
[1.2, 0.002]
|
||||||
|
]
|
||||||
|
y = ['良好', '差', '差', '良好'] # 对应的健康状态标签
|
||||||
|
|
||||||
|
# 将健康状态标签转换为数值
|
||||||
|
label_mapping = {'一般': 0, '良好': 1, '差': 2, '极差': 3}
|
||||||
|
y_encoded = [label_mapping[label] for label in y]
|
||||||
|
|
||||||
|
# 划分训练集和测试集
|
||||||
|
X_train, X_test, y_train, y_test = train_test_split(X, y_encoded, test_size=0.25, random_state=42)
|
||||||
|
|
||||||
|
# 选择模型,这里使用随机森林分类器
|
||||||
|
model = RandomForestClassifier(n_estimators=100, random_state=42)
|
||||||
|
|
||||||
|
# 训练模型
|
||||||
|
model.fit(X_train, y_train)
|
||||||
|
|
||||||
|
# 预测测试集
|
||||||
|
y_pred = model.predict(X_test)
|
||||||
|
|
||||||
|
# 评估模型
|
||||||
|
print(classification_report(y_test, y_pred))
|
||||||
|
print("Accuracy:", accuracy_score(y_test, y_pred))
|
||||||
|
|
||||||
|
with open('server_health_model.pkl', 'wb') as file:
|
||||||
|
pickle.dump(model, file)
|
||||||
|
|
||||||
|
|
||||||
|
# 保存模型
|
||||||
|
with open('server_health_model.pkl', 'wb') as file:
|
||||||
|
pickle.dump(model, file)
|
||||||
|
|
||||||
|
# 定义一个函数来加载模型并进行预测
|
||||||
|
def load_model_and_predict(new_data):
|
||||||
|
with open('server_health_model.pkl', 'rb') as file:
|
||||||
|
loaded_model = pickle.load(file)
|
||||||
|
predictions = loaded_model.predict(new_data)
|
||||||
|
return predictions
|
||||||
|
|
||||||
|
# 定义一个函数来将预测结果转换为健康等级
|
||||||
|
def predict_health_status(new_data):
|
||||||
|
predictions = load_model_and_predict(new_data)
|
||||||
|
# 创建逆向映射字典
|
||||||
|
inverse_label_mapping = {value: key for key, value in label_mapping.items()}
|
||||||
|
# 使用逆向映射字典转换预测结果
|
||||||
|
health_status = [inverse_label_mapping[pred] for pred in predictions]
|
||||||
|
return health_status
|
||||||
|
|
||||||
|
# 测试函数
|
||||||
|
def testcase():
|
||||||
|
new_data = [[0.4, 0.01]] # 新的服务器数据
|
||||||
|
health_status = predict_health_status(new_data)
|
||||||
|
print("预测的健康状态:", health_status)
|
||||||
|
|
||||||
|
testcase()
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,2 @@
|
|||||||
|
dic = {'a':1,'b':2,'c':3}
|
||||||
|
for i in dic.keys():
|
@ -0,0 +1,58 @@
|
|||||||
|
# !/usr/bin/env python
|
||||||
|
# encoding: utf-8
|
||||||
|
# @author: 原凯峰
|
||||||
|
# @contact: 2894340009@qq.com
|
||||||
|
# @software: pycharm
|
||||||
|
# @file: tryselect.py
|
||||||
|
# @time: 2024/6/22 11:32
|
||||||
|
# @desc:
|
||||||
|
|
||||||
|
|
||||||
|
import mysql.connector
|
||||||
|
from mysql.connector import Error
|
||||||
|
import json
|
||||||
|
|
||||||
|
# 数据库配置信息
|
||||||
|
host = ''
|
||||||
|
database = 'nginxdb'
|
||||||
|
user = 'rtsw'
|
||||||
|
password = '123456'
|
||||||
|
|
||||||
|
# SQL查询语句
|
||||||
|
sql_query = "SELECT * FROM tasks" # 替换成你的表名和查询条件
|
||||||
|
|
||||||
|
# 连接到数据库
|
||||||
|
try:
|
||||||
|
connection = mysql.connector.connect(host=host,
|
||||||
|
database=database,
|
||||||
|
user=user,
|
||||||
|
password=password)
|
||||||
|
if connection.is_connected():
|
||||||
|
cursor = connection.cursor()
|
||||||
|
|
||||||
|
# 执行查询语句
|
||||||
|
cursor.execute(sql_query)
|
||||||
|
|
||||||
|
# 获取所有查询结果
|
||||||
|
rows = cursor.fetchall()
|
||||||
|
|
||||||
|
# 将查询结果转换为字典列表
|
||||||
|
# 假设你的表有列名为'id', 'name', 'age'等
|
||||||
|
columns = [i[0] for i in cursor.description] # 获取列名
|
||||||
|
data_list = [dict(zip(columns, row)) for row in rows] # 将每行数据转换为字典
|
||||||
|
|
||||||
|
# 将字典列表转换为JSON格式
|
||||||
|
json_data = json.dumps(data_list, ensure_ascii=False)
|
||||||
|
|
||||||
|
print(json_data) # 打印JSON格式的数据
|
||||||
|
print(data_list[0]["subject"])
|
||||||
|
|
||||||
|
except Error as e:
|
||||||
|
print("Error while connecting to MySQL", e)
|
||||||
|
|
||||||
|
finally:
|
||||||
|
# 关闭数据库连接
|
||||||
|
if connection.is_connected():
|
||||||
|
cursor.close()
|
||||||
|
connection.close()
|
||||||
|
print("MySQL connection is closed")
|
@ -0,0 +1,21 @@
|
|||||||
|
CREATE TABLE `Servers` (
|
||||||
|
`server_name` VARCHAR(32) PRIMARY KEY,
|
||||||
|
`status VARCHAR(32) NOT NULL`,
|
||||||
|
`upstream` VARCHAR(32),
|
||||||
|
`detect_date` TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||||
|
`responseTime` varchar(255) NOT NULL COMMENT '响应时间',
|
||||||
|
`protocol` varchar(32) NOT NULL COMMENT '通信协议名称',
|
||||||
|
) DEFAULT CHARACTER SET = utf8mb4 COMMENT = '服务器列表';
|
||||||
|
|
||||||
|
|
||||||
|
CREATE TABLE `ServerHealthLog` (
|
||||||
|
`health_id` INT AUTO_INCREMENT PRIMARY KEY,
|
||||||
|
`server_name` VARCHAR(32),
|
||||||
|
`upstream` VARCHAR(32),
|
||||||
|
`detect_date` TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||||
|
`status` VARCHAR(32) NOT NULL,
|
||||||
|
`responseTime` varchar(255) NOT NULL COMMENT '响应时间',
|
||||||
|
`protocol` varchar(32) NOT NULL COMMENT '通信协议名称',
|
||||||
|
FOREIGN KEY (`server_name`) REFERENCES Servers(`server_name`),
|
||||||
|
INDEX `check_time_index` (`check_time`)
|
||||||
|
) DEFAULT CHARACTER SET = utf8mb4 COMMENT = '服务器历史信息记录表';
|
@ -0,0 +1,11 @@
|
|||||||
|
CREATE TABLE IF NOT EXISTS `user` (
|
||||||
|
`username` varchar(255) NOT NULL,
|
||||||
|
`real_name` varchar(255) NOT NULL COMMENT '真名',
|
||||||
|
`ID` varchar(255) NOT NULL COMMENT '身份证号',
|
||||||
|
`password` varchar(255) NOT NULL COMMENT '密码',
|
||||||
|
`tel` varchar(255) NOT NULL COMMENT '电话号码',
|
||||||
|
PRIMARY KEY (`id`),
|
||||||
|
) DEFAULT CHARACTER SET = utf8mb4 COMMENT = '用户信息列表';
|
||||||
|
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,187 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>注册页面</title>
|
||||||
|
<!-- 引入格式文件-->
|
||||||
|
<!-- <link rel="stylesheet" href="html&css.css"> -->
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<style>
|
||||||
|
*{
|
||||||
|
margin: 0px;/*所有的外边距为0*/
|
||||||
|
padding: 0px;/*所有的内边距为0*/
|
||||||
|
box-sizing: border-box;/*规定两个并排的带边框的框*/
|
||||||
|
}
|
||||||
|
table{
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
body{
|
||||||
|
background: url("./assets/images/button.jpg")no-repeat center;
|
||||||
|
padding-top: 25px;
|
||||||
|
}
|
||||||
|
.rg_layout{
|
||||||
|
width: 900px;
|
||||||
|
height: 500px;
|
||||||
|
border: 8px solid #EEEEEE;/*solid 定义实线*/
|
||||||
|
background-color: white;
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
.rg_left{
|
||||||
|
float: none;
|
||||||
|
text-align: center;
|
||||||
|
margin: 15px;
|
||||||
|
}
|
||||||
|
.rg_left>p:first-child{
|
||||||
|
color: #FFD026;
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
.rg_left>p:last-child{
|
||||||
|
color: #A6A6A6;
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.rg_center{
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.rg_right{
|
||||||
|
float: none;
|
||||||
|
margin: 250px;
|
||||||
|
padding-left: 10px;
|
||||||
|
white-space:nowrap;
|
||||||
|
}
|
||||||
|
.rg_right p{
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
.rg_right p a{
|
||||||
|
color: coral;
|
||||||
|
}
|
||||||
|
.td_left{
|
||||||
|
padding-left: 250px;
|
||||||
|
width: 100px;
|
||||||
|
text-align: center;
|
||||||
|
height: 45px;
|
||||||
|
white-space:nowrap;
|
||||||
|
}
|
||||||
|
.td_right{
|
||||||
|
padding-left: 40px;
|
||||||
|
text-align: center;
|
||||||
|
white-space:nowrap;
|
||||||
|
}
|
||||||
|
.bt_center{
|
||||||
|
padding-left: 310px;
|
||||||
|
}
|
||||||
|
#username,#real_name,#ID,#password,#tel,#birthday,#checkcode{
|
||||||
|
width: 251px;
|
||||||
|
height: 32px;
|
||||||
|
border: 1px solid #A6A6A6;
|
||||||
|
/*设置边框圆角*/
|
||||||
|
border-radius: 5px;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
#checkcode{
|
||||||
|
width: 110px;
|
||||||
|
}
|
||||||
|
#img_check{
|
||||||
|
height: 32px;
|
||||||
|
vertical-align: middle;/*设置图片的位置垂直居中*/
|
||||||
|
}
|
||||||
|
#btn_sub{
|
||||||
|
width: 100px;
|
||||||
|
height: 40px;
|
||||||
|
background-color: #FFD026;
|
||||||
|
border: 1px solid #FFD026;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
<div class="rg_layout">
|
||||||
|
<div class="rg_left">
|
||||||
|
<p>新用户注册</p>
|
||||||
|
<p>USER REGISTER</p>
|
||||||
|
</div>
|
||||||
|
<div class="rg_center">
|
||||||
|
<div class="rg_form">
|
||||||
|
<form class="ant-form" action="#" method="post">
|
||||||
|
<table>
|
||||||
|
<tr><!--label 标签的作用是当点击文字也会跳到文本输出框-->
|
||||||
|
<!--for属性与ID属性对应规定 label 绑定到哪个表单元素。-->
|
||||||
|
<td class="td_left"><label for="username">用户名</label> </td>
|
||||||
|
<td class="td_right"><input type="text" name="username" id="username"> </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="td_left"><label for="real_name">姓名</label> </td>
|
||||||
|
<td class="td_right"><input type="text" name="real_name" id="real_name"> </td>
|
||||||
|
</tr>
|
||||||
|
<tr><!--label 标签的作用是当点击文字也会跳到文本输出框-->
|
||||||
|
<td class="td_left"><label for="ID">身份证号</label> </td>
|
||||||
|
<td class="td_right"><input type="text" name="ID" id="ID"> </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="td_left"><label for="password">密码</label> </td>
|
||||||
|
<td class="td_right"><input type="password" name="password" id="password"> </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="td_left"><label for="tel">再次输入密码</label> </td>
|
||||||
|
<td class="td_right"><input type="password" name="tel" id="tel"> </td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td colspan="2" align="center" class="bt_center">
|
||||||
|
<input type="submit" value="注册" id="btn_sub">
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
</table>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="rg_right">
|
||||||
|
<p><a href="LoginUI.html">返回登录界面</a></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
<script>
|
||||||
|
document.addEventListener('DOMContentLoaded', function() {
|
||||||
|
// 获取表单元素
|
||||||
|
var form = document.querySelector('.ant-form');
|
||||||
|
|
||||||
|
// 为表单添加提交事件监听器
|
||||||
|
form.addEventListener('submit', function(e) {
|
||||||
|
e.preventDefault(); // 阻止表单的默认提交行为
|
||||||
|
|
||||||
|
// 收集表单数据
|
||||||
|
var formData = {
|
||||||
|
//question_kind: document.getElementsByName('question_kind').value,
|
||||||
|
ID:document.getElementById('ID').value,
|
||||||
|
password: document.getElementById('password').value,
|
||||||
|
real_name:document.getElementById('real_name').value,
|
||||||
|
source:"frontend",
|
||||||
|
tel:document.getElementById('tel').value,
|
||||||
|
type:"register_message",
|
||||||
|
username: document.getElementById('username').value,
|
||||||
|
};
|
||||||
|
console.log(formData);
|
||||||
|
fetch('http://47.96.136.178:8080', {
|
||||||
|
method: 'POST',
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json',
|
||||||
|
},
|
||||||
|
body: JSON.stringify(formData) // 将表单数据转换为JSON字符串
|
||||||
|
})
|
||||||
|
.then(response => response.json()) // 转换响应为JSON
|
||||||
|
.then(data => {
|
||||||
|
console.log('Success:', data);
|
||||||
|
alert('反馈成功提交!');
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.error('Error:', error);
|
||||||
|
alert('提交失败,请稍后重试!');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</html>
|
Loading…
Reference in new issue