|
|
|
@ -30,20 +30,6 @@ function spPost(method, args, callback){ |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function rebuild(){ |
|
|
|
|
var con = '<button class="btn btn-default btn-sm" onclick="rebuildIndex();">重建索引</button>'; |
|
|
|
|
$(".soft-man-con").html(con); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function rebuildIndex(){ |
|
|
|
|
spPost('rebuild', '', function(data){ |
|
|
|
|
if (data.data == 'ok'){ |
|
|
|
|
layer.msg('在重建中..',{icon:1,time:2000,shade: [0.3, '#000']}); |
|
|
|
|
} else { |
|
|
|
|
layer.msg(data.data,{icon:2,time:2000,shade: [0.3, '#000']}); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function secToTime(s) { |
|
|
|
|
var t; |
|
|
|
@ -65,71 +51,3 @@ function secToTime(s) { |
|
|
|
|
return t; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function runStatus(){ |
|
|
|
|
spPost('run_status', '', function(data){ |
|
|
|
|
var rdata = $.parseJSON(data.data); |
|
|
|
|
if (!rdata['status']){ |
|
|
|
|
layer.msg(rdata['msg'],{icon:2,time:2000,shade: [0.3, '#000']}); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
var idata = rdata.data; |
|
|
|
|
// console.log(idata);
|
|
|
|
|
var con = '<div class="divtable"><table class="table table-hover table-bordered" style="margin-bottom:10px;background-color:#fafafa">\ |
|
|
|
|
<tbody>\ |
|
|
|
|
<tr><th>运行时间</th><td>' + secToTime(idata.uptime) + '</td><th>每秒查询</th><td>' + parseInt(parseInt(idata.queries) / parseInt(idata.uptime)) + '</td></tr>\ |
|
|
|
|
<tr><th>总连接次数</th><td>' + idata.connections + '</td><th>work_queue_length</th><td>' +idata.work_queue_length + '</td></tr>\ |
|
|
|
|
<tr><th>agent_connect</th><td>' + idata.agent_connect+ '</td><th>workers_active</th><td>' + idata.workers_active + '</td></tr>\ |
|
|
|
|
<tr><th>agent_retry</th><td>' + idata.agent_retry + '</td><th>workers_total</th><td>' + idata.workers_total + '</td></tr>\ |
|
|
|
|
</tbody>\ |
|
|
|
|
</table>\ |
|
|
|
|
<table class="table table-hover table-bordered">\ |
|
|
|
|
<thead style="display:none;"><th></th><th></th><th></th><th></th></thead>\ |
|
|
|
|
<tbody>\ |
|
|
|
|
<tr><th>command_delete</th><td>' + idata.command_delete + '</td><td colspan="2">command_delete</td></tr>\ |
|
|
|
|
<tr><th>command_excerpt</th><td>' + idata.command_excerpt + '</td><td colspan="2">command_excerpt</td></tr>\ |
|
|
|
|
<tr><th>command_flushattrs</th><td>' + idata.command_flushattrs + '</td><td colspan="2">command_flushattrs</td></tr>\ |
|
|
|
|
<tr><th>command_keywords</th><td>' + idata.command_keywords + '</td><td colspan="2">command_keywords</td></tr>\ |
|
|
|
|
<tr><th>command_persist</th><td>' + idata.command_persist + '</td><td colspan="2">command_persist</td></tr>\ |
|
|
|
|
<tr><th>command_search</th><td>' + idata.command_search + '</td><td colspan="2">command_search</td></tr>\ |
|
|
|
|
<tr><th>command_status</th><td>' + idata.command_status + '</td><td colspan="2">command_status</td></tr>\ |
|
|
|
|
<tr><th>command_update</th><td>' + idata.command_update + '</td><td colspan="2">command_update</td></tr>\ |
|
|
|
|
<tbody>\ |
|
|
|
|
</table></div>'; |
|
|
|
|
|
|
|
|
|
$(".soft-man-con").html(con); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function readme(){ |
|
|
|
|
spPost('sphinx_cmd', '', function(data){ |
|
|
|
|
|
|
|
|
|
var rdata = $.parseJSON(data.data); |
|
|
|
|
if (!rdata['status']){ |
|
|
|
|
layer.msg(rdata['msg'],{icon:2,time:2000,shade: [0.3, '#000']}); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
var con = '<ul class="help-info-text c7">'; |
|
|
|
|
|
|
|
|
|
con += '<li style="color:red;">如果数据量比较大,第一次启动会失败!(可通过手动建立索引)</li>'; |
|
|
|
|
//主索引
|
|
|
|
|
for (var i = 0; i < rdata['data']['index'].length; i++) { |
|
|
|
|
var index_t = rdata['data']['index'][i]; |
|
|
|
|
con += '<li>主索引:' + rdata['data']['cmd'] + ' '+ index_t +' --rotate</li>'; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
for (var i = 0; i < rdata['data']['delta'].length; i++) { |
|
|
|
|
var delta_t = rdata['data']['delta'][i]; |
|
|
|
|
var list = delta_t.split(':'); |
|
|
|
|
// console.log(list);
|
|
|
|
|
con += '<li>增量索引:' + rdata['data']['cmd'] + ' '+ list[0] +' --rotate</li>'; |
|
|
|
|
con += '<li>合并索引:' + rdata['data']['cmd'] + ' --merge '+ list[1] + ' ' + list[0] +' --rotate</li>'; |
|
|
|
|
} |
|
|
|
|
con += '</ul>'; |
|
|
|
|
|
|
|
|
|
$(".soft-man-con").html(con); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|