mirror of https://github.com/midoks/mdserver-web
parent
f492073e21
commit
302c652538
After Width: | Height: | Size: 1.7 KiB |
@ -0,0 +1,53 @@ |
||||
<div class="bt-form"> |
||||
<div class="bt-w-main"> |
||||
<div class="bt-w-menu"> |
||||
<p class="bgw" onclick="pluginService('redis');">服务</p> |
||||
<p onclick="pluginInitD('redis');">自启动</p> |
||||
<p onclick="pluginConfig('redis');">配置修改</p> |
||||
<p onclick="redisStatus();">负载状态</p> |
||||
</div> |
||||
<div class="bt-w-con pd15"> |
||||
<div class="soft-man-con"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<script type="text/javascript"> |
||||
pluginService('redis'); |
||||
|
||||
//redis负载状态 start |
||||
function redisStatus() { |
||||
var loadT = layer.msg('正在获取...', { icon: 16, time: 0, shade: 0.3 }); |
||||
$.post('/plugins/run', {name:'redis', func:'run_info'}, function(data) { |
||||
layer.close(loadT); |
||||
if (!data.status){ |
||||
layer.msg(data.msg,{icon:0,time:2000,shade: [0.3, '#000']}); |
||||
return; |
||||
} |
||||
|
||||
var rdata = $.parseJSON(data.data); |
||||
hit = (parseInt(rdata.keyspace_hits) / (parseInt(rdata.keyspace_hits) + parseInt(rdata.keyspace_misses)) * 100).toFixed(2); |
||||
var Con = '<div class="divtable">\ |
||||
<table class="table table-hover table-bordered" style="width: 490px;">\ |
||||
<thead><th>字段</th><th>当前值</th><th>说明</th></thead>\ |
||||
<tbody>\ |
||||
<tr><th>uptime_in_days</th><td>' + rdata.uptime_in_days + '</td><td>已运行天数</td></tr>\ |
||||
<tr><th>tcp_port</th><td>' + rdata.tcp_port + '</td><td>当前监听端口</td></tr>\ |
||||
<tr><th>connected_clients</th><td>' + rdata.connected_clients + '</td><td>连接的客户端数量</td></tr>\ |
||||
<tr><th>used_memory_rss</th><td>' + toSize(rdata.used_memory_rss) + '</td><td>Redis当前占用的系统内存总量</td></tr>\ |
||||
<tr><th>used_memory</th><td>' + toSize(rdata.used_memory) + '</td><td>Redis当前已分配的内存总量</td></tr>\ |
||||
<tr><th>used_memory_peak</th><td>' + toSize(rdata.used_memory_peak) + '</td><td>Redis历史分配内存的峰值</td></tr>\ |
||||
<tr><th>mem_fragmentation_ratio</th><td>' + rdata.mem_fragmentation_ratio + '%</td><td>内存碎片比率</td></tr>\ |
||||
<tr><th>total_connections_received</th><td>' + rdata.total_connections_received + '</td><td>运行以来连接过的客户端的总数量</td></tr>\ |
||||
<tr><th>total_commands_processed</th><td>' + rdata.total_commands_processed + '</td><td>运行以来执行过的命令的总数量</td></tr>\ |
||||
<tr><th>instantaneous_ops_per_sec</th><td>' + rdata.instantaneous_ops_per_sec + '</td><td>服务器每秒钟执行的命令数量</td></tr>\ |
||||
<tr><th>keyspace_hits</th><td>' + rdata.keyspace_hits + '</td><td>查找数据库键成功的次数</td></tr>\ |
||||
<tr><th>keyspace_misses</th><td>' + rdata.keyspace_misses + '</td><td>查找数据库键失败的次数</td></tr>\ |
||||
<tr><th>hit</th><td>' + hit + '%</td><td>查找数据库键命中率</td></tr>\ |
||||
<tr><th>latest_fork_usec</th><td>' + rdata.latest_fork_usec + '</td><td>最近一次 fork() 操作耗费的微秒数</td></tr>\ |
||||
<tbody>\ |
||||
</table></div>' |
||||
$(".soft-man-con").html(Con); |
||||
},'json'); |
||||
} |
||||
//redis负载状态 end |
||||
</script> |
@ -0,0 +1,8 @@ |
||||
# coding: utf-8 |
||||
|
||||
|
||||
import time |
||||
import os |
||||
import sys |
||||
sys.path.append("/usr/local/lib/python2.7/site-packages") |
||||
import psutil |
@ -0,0 +1,16 @@ |
||||
{ |
||||
"ps": "Gogs是一款极易搭建的自助Git服务", |
||||
"name": "gogs", |
||||
"title": "Gogs", |
||||
"versions": "0.1", |
||||
"updates":"0.1", |
||||
"tip": "soft", |
||||
"checks": "server/gogs", |
||||
"author": "midoks", |
||||
"date": "201-04-01", |
||||
"home": "https://gogs.io", |
||||
"type": "git服务器", |
||||
"shell": "install.sh", |
||||
"pid": "3", |
||||
"sort": 7 |
||||
} |
Loading…
Reference in new issue