|
|
|
@ -405,7 +405,69 @@ defineExpose({
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<hr />
|
|
|
|
<hr />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="tab-pane fade tab-pane-scroll" id="postman-tab-pane" role="tabpanel" aria-labelledby="postman-tab" tabindex="0">postman</div>
|
|
|
|
<div class="tab-pane fade" id="postman-tab-pane" role="tabpanel" aria-labelledby="postman-tab" tabindex="0">
|
|
|
|
|
|
|
|
<div class="row mb-2">
|
|
|
|
|
|
|
|
<div class="col-md-12">
|
|
|
|
|
|
|
|
<h5>Postman General</h5>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="row mb-2">
|
|
|
|
|
|
|
|
<div class="col-md-5">
|
|
|
|
|
|
|
|
<div class="input-group">
|
|
|
|
|
|
|
|
<span class="input-group-text" id="agent-config-postman-thread-pool-size-label">threadPoolSize</span>
|
|
|
|
|
|
|
|
<input type="number" class="form-control" id="agent-config-postman-thread-pool-size-input" aria-describedby="agent-config-postman-thread-pool-size-label agent-config-postman-thread-pool-size-input" v-model="agentConfig.postmanConfig.threadPoolSize" />
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<hr />
|
|
|
|
|
|
|
|
<div class="row m-1">
|
|
|
|
|
|
|
|
<div class="card p-0">
|
|
|
|
|
|
|
|
<div class="card-header"><h5>postmanList</h5></div>
|
|
|
|
|
|
|
|
<div class="card-body data-table-wrapper">
|
|
|
|
|
|
|
|
<table class="table table-striped table-bordered align-middle data-table">
|
|
|
|
|
|
|
|
<thead>
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
|
|
<th scope="col" class="text-center" rowspan="2">postmanId</th>
|
|
|
|
|
|
|
|
<th scope="col" class="text-center" rowspan="2">taskType</th>
|
|
|
|
|
|
|
|
<th scope="col" class="text-center" colspan="2">action</th>
|
|
|
|
|
|
|
|
<th scope="col" class="text-center" colspan="4">message</th>
|
|
|
|
|
|
|
|
<th scope="col" class="text-center" rowspan="2">recipientHostId</th>
|
|
|
|
|
|
|
|
<th scope="col" class="text-center" rowspan="2">recipientDropBoxId</th>
|
|
|
|
|
|
|
|
<th scope="col" class="text-center" rowspan="2">description</th>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
|
|
<th scope="col" class="text-center">type</th>
|
|
|
|
|
|
|
|
<th scope="col" class="text-center">cron</th>
|
|
|
|
|
|
|
|
<th scope="col" class="text-center">messageType</th>
|
|
|
|
|
|
|
|
<th scope="col" class="text-center">dataSourceId</th>
|
|
|
|
|
|
|
|
<th scope="col" class="text-center">sqlId</th>
|
|
|
|
|
|
|
|
<th scope="col" class="text-center">postProcessingSqlId</th>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tbody class="table-group-divider">
|
|
|
|
|
|
|
|
<tr v-if="agentConfig.postmanConfig.postmanList.length > 0" v-for="postman in agentConfig.postmanConfig.postmanList" :key="postman.postmanId">
|
|
|
|
|
|
|
|
<td scope="row">{{ postman.postmanId }}</td>
|
|
|
|
|
|
|
|
<td>{{ postman.taskType }}</td>
|
|
|
|
|
|
|
|
<td>{{ postman.action.type }}</td>
|
|
|
|
|
|
|
|
<td>{{ postman.action.cron }}</td>
|
|
|
|
|
|
|
|
<td>{{ postman.message.messageType }}</td>
|
|
|
|
|
|
|
|
<td>{{ postman.message.dataSourceId }}</td>
|
|
|
|
|
|
|
|
<td>{{ postman.message.sqlId }}</td>
|
|
|
|
|
|
|
|
<td>{{ postman.message.postProcessingSqlId }}</td>
|
|
|
|
|
|
|
|
<td>{{ postman.recipientHostId }}</td>
|
|
|
|
|
|
|
|
<td>{{ postman.recipientDropBoxId }}</td>
|
|
|
|
|
|
|
|
<td>{{ postman.description }}</td>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tr v-else>
|
|
|
|
|
|
|
|
<td scope="row" class="text-center" colspan="11">no postman.</td>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<hr />
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|