Files
EdgeAdmin/web/views/@default/servers/metrics/update.html
2021-07-19 15:23:20 +08:00

62 lines
2.3 KiB
HTML

{$layout "layout"}
{$template "item_menu"}
<warning-message>修改统计对象、统计周期、统计数值等任一参数时,将重新记录数据。</warning-message>
<form class="ui form" data-tea-action="$" data-tea-success="success">
<csrf-token></csrf-token>
<input type="hidden" name="itemId" :value="item.id"/>
<table class="ui table definition selectable">
<tr>
<td class="title">指标名称 *</td>
<td>
<input type="text" name="name" maxlength="100" ref="focus" v-model="item.name"/>
</td>
</tr>
<tr>
<td>统计对象 *</td>
<td>
<metric-keys-config-box :v-category="item.category" :v-keys="item.keys"></metric-keys-config-box>
</td>
</tr>
<tr>
<td>统计周期 *</td>
<td>
<metric-period-config-box :v-period="item.period" :v-period-unit="item.periodUnit"></metric-period-config-box>
</td>
</tr>
<tr>
<td>统计数值 *</td>
<td>
<!-- HTTP -->
<select class="ui dropdown auto-width" name="value" v-if="item.category == 'http'" v-model="item.value">
<option v-for="def in valueDefinitions" :value="def.code">{{def.name}}</option>
</select>
<!-- TCP -->
<select class="ui dropdown auto-width" name="value" v-if="item.category == 'tcp'">
<option v-for="def in valueDefinitions" :value="def.code">{{def.name}}</option>
</select>
<!-- UDP -->
<select class="ui dropdown auto-width" name="value" v-if="item.category == 'udp'">
<option v-for="def in valueDefinitions" :value="def.code">{{def.name}}</option>
</select>
</td>
</tr>
<tr>
<td>是否公用</td>
<td>
<checkbox name="isPublic" v-model="item.isPublic"></checkbox>
<p class="comment">选中表示所有集群自动使用此指标。</p>
</td>
</tr>
<tr>
<td>是否启用</td>
<td>
<checkbox name="isOn" v-model="item.isOn" value="1"></checkbox>
</td>
</tr>
</table>
<submit-btn></submit-btn>
</form>