jumpserver/templates/index.html

222 lines
6.3 KiB
HTML
Raw Normal View History

2015-02-11 09:53:17 +00:00
{% extends 'base.html' %}
{% block content %}
{% include 'nav_cat_bar.html' %}
<div class="wrapper wrapper-content">
<div class="row">
<div class="col-lg-3">
<div class="ibox float-e-margins">
<div class="ibox-title">
<span class="label label-success pull-right">Monthly</span>
<h5>用户总数</h5>
</div>
<div class="ibox-content">
2015-02-12 10:54:40 +00:00
<h1 class="no-margins"><a href="/juser/user_list/">{{ users.count}}</a></h1>
2015-02-11 09:53:17 +00:00
<div class="stat-percent font-bold text-success">98% <i class="fa fa-bolt"></i></div>
<small>All user</small>
</div>
</div>
</div>
<div class="col-lg-3">
<div class="ibox float-e-margins">
<div class="ibox-title">
<span class="label label-info pull-right">Annual</span>
<h5>主机总数</h5>
</div>
<div class="ibox-content">
2015-02-12 10:54:40 +00:00
<h1 class="no-margins"><a href="/jasset/host_list/">{{ hosts.count }}</a></h1>
2015-02-11 09:53:17 +00:00
<div class="stat-percent font-bold text-info">20% <i class="fa fa-level-up"></i></div>
<small>All host</small>
</div>
</div>
</div>
<div class="col-lg-3">
<div class="ibox float-e-margins">
<div class="ibox-title">
<span class="label label-primary pull-right">Today</span>
2015-03-10 10:27:47 +00:00
<h5>实时在线用户</h5>
2015-02-11 09:53:17 +00:00
</div>
<div class="ibox-content">
2015-03-10 10:27:47 +00:00
<h1 class="no-margins"><a href="/jlog/log_list/online/"> <span id="online_users"></span></a></h1>
2015-02-11 09:53:17 +00:00
<div class="stat-percent font-bold text-navy">44% <i class="fa fa-level-up"></i></div>
<small>Online user</small>
</div>
</div>
</div>
<div class="col-lg-3">
<div class="ibox float-e-margins">
<div class="ibox-title">
<span class="label label-danger pull-right">Low value</span>
<h5>已连接服务器</h5>
</div>
<div class="ibox-content">
2015-03-10 10:27:47 +00:00
<h1 class="no-margins"><a href="/jlog/log_list/online/"> <span id="online_hosts"></span></a></h1>
2015-02-11 09:53:17 +00:00
<div class="stat-percent font-bold text-danger">38% <i class="fa fa-level-down"></i></div>
<small>Connect host</small>
</div>
</div>
</div>
2015-03-12 03:03:53 +00:00
<div class="row">
<div class="col-lg-6" id="top10" style="width:50%;height:400px;"></div>
<div class="col-lg-6" id="usertop10" style="width:50%;height:400px;"></div>
</div>
<div class="row">
<div class="col-lg-6" id="hosttop10" style="width:50%;height:400px; margin-top: 20px"></div>
</div>
2015-02-11 09:53:17 +00:00
</div>
</div>
2015-02-12 10:54:40 +00:00
<script>
2015-02-27 15:18:40 +00:00
var cate = {{ li_str|safe }};
2015-02-12 10:54:40 +00:00
$(function () {
2015-03-05 10:46:12 +00:00
$('#top10').highcharts({
2015-03-12 03:03:53 +00:00
chart: {
type: 'column'
},
2015-03-05 10:46:12 +00:00
title: {
2015-03-12 03:03:53 +00:00
text: '一周数据总览',
2015-03-05 10:46:12 +00:00
x: -20 //center
},
subtitle: {
text: 'Source: JumpServer',
x: -20
},
rangeSelector: {
allButtonsEnabled: true,
selected: 2
},
xAxis: {
type: 'datetime',
categories: cate
},
yAxis:{
min: 0,
title: {
text: '登录次数'
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
tooltip: {
valueSuffix: '次'
},
2015-03-07 07:29:49 +00:00
navigation: {
buttonOptions: {
align: 'right'
}
},
2015-03-05 10:46:12 +00:00
series: [
{% for k,v in top_dic.items %}
{
name: '{{ k }}',
data: {{ v }}
},
{% endfor %}
]
});
2015-03-04 15:14:07 +00:00
$('#usertop10').highcharts({
2015-02-12 10:54:40 +00:00
title: {
text: '一周用户登录TOP10',
x: -20 //center
},
subtitle: {
text: 'Source: JumpServer',
x: -20
},
xAxis: {
2015-02-27 10:48:24 +00:00
type: 'datetime',
categories: cate
2015-02-12 10:54:40 +00:00
},
2015-02-27 15:18:40 +00:00
yAxis:{
min: 0,
2015-02-12 10:54:40 +00:00
title: {
2015-02-26 10:02:39 +00:00
text: '登录次数'
2015-02-12 10:54:40 +00:00
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
tooltip: {
valueSuffix: '次'
},
2015-02-26 10:02:39 +00:00
series: [
2015-03-04 15:14:07 +00:00
{% for k,v in user_dic.items %}
2015-03-01 04:09:33 +00:00
{
name: '{{ k }}',
data: {{ v }}
},
2015-02-26 10:02:39 +00:00
{% endfor %}
]
2015-02-12 10:54:40 +00:00
});
2015-02-27 15:18:40 +00:00
2015-03-04 15:14:07 +00:00
$('#hosttop10').highcharts({
title: {
text: '一周主机登录TOP10',
x: -20 //center
},
subtitle: {
text: 'Source: JumpServer',
x: -20
},
xAxis: {
type: 'datetime',
categories: cate
},
yAxis:{
min: 0,
title: {
text: '登录次数'
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
tooltip: {
valueSuffix: '次'
},
series: [
{% for k,v in host_dic.items %}
{
name: '{{ k }}',
data: {{ v }}
},
{% endfor %}
]
});
2015-03-10 10:27:47 +00:00
function magic_number(value, id) {
var num = $("#"+id);
num.animate({count: value}, {
duration: 500,
step: function() {
num.text(String(parseInt(this.count)));
2015-02-27 15:18:40 +00:00
}
});
2015-03-10 10:27:47 +00:00
};
2015-02-27 15:18:40 +00:00
2015-03-10 10:27:47 +00:00
function update() {
$.getJSON('api/user/', function(data) {
var users = data.users;
var hosts = data.hosts;
magic_number(users, 'online_users');
magic_number(hosts, 'online_hosts')
2015-02-27 15:18:40 +00:00
});
2015-03-10 10:27:47 +00:00
};
2015-03-12 03:03:53 +00:00
setInterval(update, 5000); //5秒钟执行一次
2015-03-10 10:27:47 +00:00
update();
2015-02-27 15:18:40 +00:00
2015-02-12 10:54:40 +00:00
});
</script>
2015-02-11 09:53:17 +00:00
{% endblock %}