2017-04-08 09:15:30 +00:00
|
|
|
{{{ template "common/header" . }}}
|
2017-04-13 09:35:59 +00:00
|
|
|
<style type="text/css">
|
|
|
|
pre {
|
|
|
|
white-space: pre-wrap;
|
|
|
|
word-wrap: break-word;
|
|
|
|
padding:10px;
|
|
|
|
background-color: #4C4C4C;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
</style>
|
2017-04-08 09:15:30 +00:00
|
|
|
<div class="ui grid">
|
|
|
|
<!--the vertical menu-->
|
|
|
|
{{{ template "task/menu" . }}}
|
|
|
|
|
|
|
|
<div class="twelve wide column">
|
|
|
|
<div class="pageHeader">
|
|
|
|
<div class="segment">
|
|
|
|
<h3 class="ui dividing header">
|
|
|
|
<div class="content">
|
2017-04-13 09:35:59 +00:00
|
|
|
<button class="ui small teal button" onclick="clearLog()">清空日志</button>
|
2017-04-08 09:15:30 +00:00
|
|
|
</div>
|
|
|
|
</h3>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-04-13 09:35:59 +00:00
|
|
|
<table class="ui pink table">
|
2017-04-08 09:15:30 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2017-04-13 09:35:59 +00:00
|
|
|
<th>任务名称</th>
|
|
|
|
<th>cron表达式</th>
|
|
|
|
<th>协议</th>
|
2017-04-21 05:36:45 +00:00
|
|
|
<th>超时时间</th>
|
2017-04-21 06:50:40 +00:00
|
|
|
<th>重试次数</th>
|
2017-04-13 09:35:59 +00:00
|
|
|
<th>主机</th>
|
2017-04-21 05:36:45 +00:00
|
|
|
<th>执行时长</th>
|
2017-04-13 09:35:59 +00:00
|
|
|
<th>状态</th>
|
|
|
|
<th>执行结果</th>
|
2017-04-08 09:15:30 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{{range $i, $v := .Logs}}}
|
|
|
|
<tr>
|
|
|
|
<td>{{{.Name}}}</td>
|
|
|
|
<td>{{{.Spec}}}</td>
|
2017-04-16 18:01:41 +00:00
|
|
|
<td>{{{if eq .Protocol 1}}} HTTP {{{else if eq .Protocol 2}}} SSH {{{else}}} 本地命令 {{{end}}}</td>
|
2017-04-21 09:41:59 +00:00
|
|
|
<td>{{{if gt .Timeout 0}}}{{{.Timeout}}}秒{{{else}}}不限制{{{end}}}</td>
|
2017-04-21 06:50:40 +00:00
|
|
|
<td>{{{.RetryTimes}}}</td>
|
2017-04-13 09:35:59 +00:00
|
|
|
<td>{{{.Hostname}}}</td>
|
|
|
|
<td>
|
2017-04-21 05:36:45 +00:00
|
|
|
{{{if gt .TotalTime 0}}}{{{.TotalTime}}}秒{{{else}}}1秒{{{end}}}<br>
|
|
|
|
开始时间: {{{.StartTime.Format "2006-01-02 15:04:05" }}}<br>
|
|
|
|
{{{if ne .Status 1}}}
|
|
|
|
结束时间: {{{.EndTime.Format "2006-01-02 15:04:05" }}}
|
|
|
|
{{{end}}}
|
2017-04-13 09:35:59 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{{if eq .Status 2}}}
|
|
|
|
成功
|
|
|
|
{{{else if eq .Status 1}}}
|
|
|
|
<span style="color:green">执行中</span>
|
|
|
|
{{{else if eq .Status 0}}}
|
|
|
|
<span style="color:red">失败</span>
|
|
|
|
{{{else}}}
|
|
|
|
<span style="color:#4499EE">待执行</span>
|
|
|
|
{{{end}}}
|
|
|
|
</td>
|
|
|
|
<td>
|
2017-04-21 05:36:45 +00:00
|
|
|
{{{if ne .Status 1}}}
|
|
|
|
<button class="ui small primary button"
|
|
|
|
onclick="showResult('{{{.Name}}}', '{{{.Command}}}', '{{{.Result}}}')"
|
|
|
|
>查看结果
|
|
|
|
</button>
|
|
|
|
{{{end}}}
|
2017-04-13 09:35:59 +00:00
|
|
|
</td>
|
2017-04-08 09:15:30 +00:00
|
|
|
</tr>
|
|
|
|
{{{end}}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2017-04-13 09:35:59 +00:00
|
|
|
<div class="message">
|
|
|
|
<result></result>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script type="text/x-vue-template" id="task-result">
|
|
|
|
<div class="ui modal">
|
|
|
|
<i class="close icon"></i>
|
|
|
|
<div class="header">
|
|
|
|
{{name}}
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<pre style="background-color:#04477C;color:lightslategray">{{command}}</pre>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<pre>{{result}}</pre>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</script>
|
2017-04-08 09:15:30 +00:00
|
|
|
|
|
|
|
<script type="text/javascript">
|
2017-04-21 05:36:45 +00:00
|
|
|
function showTime(startTime, endTime, status) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-04-13 09:35:59 +00:00
|
|
|
function showResult(name, command,result) {
|
|
|
|
$('.message').html($('#task-result').html());
|
|
|
|
new Vue(
|
|
|
|
{
|
|
|
|
el: '.message',
|
|
|
|
data: {
|
|
|
|
result: result.replace(/\\n/,"<br>"),
|
|
|
|
name: name,
|
|
|
|
command: command
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
$('.ui.modal.transition').remove();
|
|
|
|
$('.ui.modal').modal({
|
|
|
|
detachable: false,
|
|
|
|
observeChanges: true
|
|
|
|
}).modal('refresh').modal('show');
|
|
|
|
}
|
|
|
|
|
|
|
|
function clearLog() {
|
|
|
|
util.confirm("确定要删除所有日志吗?", function() {
|
|
|
|
util.post("/task/log/clear",{}, function() {
|
|
|
|
location.reload();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-04-08 09:15:30 +00:00
|
|
|
$('.ui.form').form(
|
|
|
|
{
|
|
|
|
onSuccess: function(event, fields) {
|
|
|
|
util.post('/host/store', fields, function(code, message) {
|
|
|
|
location.reload();
|
|
|
|
});
|
|
|
|
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
fields: {
|
|
|
|
name: {
|
|
|
|
identifier : 'name',
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
type : 'empty',
|
|
|
|
prompt : '请输入主机名'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
alias: {
|
|
|
|
identifier : 'alias',
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
type : 'empty',
|
|
|
|
prompt : '请输入主机别名'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
username: {
|
|
|
|
identifier : 'username',
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
type : 'empty',
|
|
|
|
prompt : '请输入SSH用户名'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
port: {
|
|
|
|
identifier : 'port',
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
type : 'integer',
|
|
|
|
prompt : '请输入SSH端口'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
inline : true
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
{{{ template "common/footer" . }}}
|