nezha/resource/template/component/monitor.html

67 lines
2.3 KiB
HTML
Vendored
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{{define "component/monitor"}}
<div class="ui tiny monitor modal transition hidden">
<div class="header">添加监控</div>
<div class="content">
<form id="monitorForm" class="ui form">
<input type="hidden" name="ID" />
<div class="field">
<label>名称</label>
<input type="text" name="Name" placeholder="博客" />
</div>
<div class="field">
<label>目标</label>
<input
type="text"
name="Target"
placeholder="HTTP(https://t.tt)Ping(t.tt)TCP(t.tt:80)"
/>
</div>
<div class="field">
<label>类型</label>
<select name="Type" class="ui fluid dropdown">
<option value="1">HTTP-GET(SSL到期、变更)</option>
<option value="2">ICMP-Ping</option>
<option value="3">TCP-Ping</option>
</select>
</div>
<div class="field">
<label>覆盖范围</label>
<select name="Cover" class="ui fluid dropdown">
<option value="0">覆盖所有,仅忽略指定服务器</option>
<option value="1">忽略所有,仅通过指定服务器请求</option>
</select>
</div>
<div class="field">
<label>指定服务器</label>
<div class="ui fluid multiple servers search selection dropdown">
<input type="hidden" name="SkipServersRaw" />
<i class="dropdown icon"></i>
<div class="default text">输入ID/名称以搜索</div>
<div class="menu"></div>
</div>
</div>
<div class="field">
<div class="ui nb-notify checkbox">
<input name="Notify" type="checkbox" tabindex="0" class="hidden" />
<label>启用故障通知</label>
</div>
</div>
</form>
<div class="ui warning message">
<p>
类型为 <b>HTTP-GET</b> 时输入URL(带 http/https, HTTPS
协议的会顺带监控SSL证书)<br />
类型为 <b>ICMP-Ping</b> 时输入主机名/IP不带端口<br />
类型为 <b>TCP-Ping</b> 时输入主机名/IP + 端口号example.com:22
</p>
</div>
</div>
<div class="actions">
<div class="ui negative button">取消</div>
<button class="ui positive right labeled icon button">
确认<i class="checkmark icon"></i>
</button>
</div>
</div>
{{end}}