gocron/templates/task/log.html

161 lines
5.7 KiB
Go
Raw Normal View History

{{{ 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>
<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>
</div>
</h3>
</div>
</div>
<form class="ui form">
<div class="six fields search">
<div class="field">
<input type="text" placeholder="任务ID" name="task_id" value="{{{if gt .Params.TaskId 0}}}{{{.Params.TaskId}}}{{{end}}}">
</div>
<div class="field">
<select name="protocol" id="protocol">
2017-05-05 08:31:24 +00:00
<option value="0"></option>
2017-05-28 15:13:22 +00:00
<option value="2" {{{if eq .Params.Protocol 2}}}selected{{{end}}} data-match="host_id" data-validate-type="selectProtocol">SHELL</option>
<option value="1" {{{if eq .Params.Protocol 1}}}selected{{{end}}}>HTTP</option>
</select>
</div>
<div class="field">
<select name="status">
<option value="0"></option>
<option value="1" {{{if eq .Params.Status 0}}}selected{{{end}}} ></option>
<option value="2" {{{if eq .Params.Status 1}}}selected{{{end}}}></option>
<option value="3" {{{if eq .Params.Status 2}}}selected{{{end}}}></option>
2017-04-28 03:54:46 +00:00
<option value="4" {{{if eq .Params.Status 3}}}selected{{{end}}}></option>
</select>
</div>
<div class="field">
<button class="ui linkedin submit button"></button>
</div>
</div>
</form>
2017-04-13 09:35:59 +00:00
<table class="ui pink table">
<thead>
<tr>
<th>ID</th>
2017-04-13 09:35:59 +00:00
<th></th>
<th>cron</th>
<th></th>
<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>
</tr>
</thead>
<tbody>
{{{range $i, $v := .Logs}}}
<tr>
<td><a href="/task?id={{{.TaskId}}}">{{{.TaskId}}}</a></td>
<td>{{{.Name}}}</td>
<td>{{{.Spec}}}</td>
2017-05-28 15:13:22 +00:00
<td>{{{if eq .Protocol 1}}} HTTP {{{else if eq .Protocol 2}}} SHELL {{{end}}}</td>
<td>{{{.RetryTimes}}}</td>
2017-04-13 09:35:59 +00:00
<td>{{{.Hostname}}}</td>
<td>
2017-05-04 02:47:14 +00:00
{{{if and (ne .Status 3) (ne .Status 4)}}}
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}}}
{{{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 if eq .Status 3}}}
<span style="color:#4499EE"></span>
2017-04-13 09:35:59 +00:00
{{{end}}}
</td>
<td>
{{{if or (eq .Status 2) (eq .Status 0)}}}
2017-04-21 05:36:45 +00:00
<button class="ui small primary button"
onclick="showResult('{{{.Name}}}', '{{{.Command}}}', '{{{.Result}}}')"
>
</button>
{{{end}}}
2017-04-13 09:35:59 +00:00
</td>
</tr>
{{{end}}}
</tbody>
</table>
2017-04-23 06:11:53 +00:00
{{{ template "common/pagination" .}}}
</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>
<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();
});
});
}
</script>
{{{ template "common/footer" . }}}