mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-03-12 20:34:46 +00:00
Make the monitor type list a bit clear
This commit is contained in:
parent
e1681ce370
commit
d4485fe62f
1 changed files with 35 additions and 27 deletions
|
@ -11,6 +11,7 @@
|
||||||
<div class="my-3">
|
<div class="my-3">
|
||||||
<label for="type" class="form-label">{{ $t("Monitor Type") }}</label>
|
<label for="type" class="form-label">{{ $t("Monitor Type") }}</label>
|
||||||
<select id="type" v-model="monitor.type" class="form-select">
|
<select id="type" v-model="monitor.type" class="form-select">
|
||||||
|
<optgroup label="General Monitor Type">
|
||||||
<option value="http">
|
<option value="http">
|
||||||
HTTP(s)
|
HTTP(s)
|
||||||
</option>
|
</option>
|
||||||
|
@ -26,9 +27,15 @@
|
||||||
<option value="dns">
|
<option value="dns">
|
||||||
DNS
|
DNS
|
||||||
</option>
|
</option>
|
||||||
|
</optgroup>
|
||||||
|
|
||||||
|
<optgroup label="Passive Monitor Type">
|
||||||
<option value="push">
|
<option value="push">
|
||||||
Push
|
Push
|
||||||
</option>
|
</option>
|
||||||
|
</optgroup>
|
||||||
|
|
||||||
|
<optgroup label="Specific Monitor Type">
|
||||||
<option value="steam">
|
<option value="steam">
|
||||||
{{ $t("Steam Game Server") }}
|
{{ $t("Steam Game Server") }}
|
||||||
</option>
|
</option>
|
||||||
|
@ -38,6 +45,7 @@
|
||||||
<option value="sqlserver">
|
<option value="sqlserver">
|
||||||
SQL Server
|
SQL Server
|
||||||
</option>
|
</option>
|
||||||
|
</optgroup>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue