You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
2.7 KiB
48 lines
2.7 KiB
<div ng-controller="HealthMonitorDetailController as ctrl"> |
|
<detail-status loading="ctrl.loading" error="ctrl.error"></detail-status> |
|
<div ng-if="!ctrl.loading && !ctrl.error"> |
|
<div class="page-header"> |
|
<actions allowed="ctrl.actions" type="row" item="ctrl.healthmonitor" |
|
ng-if="ctrl.healthmonitor" class="actions_column pull-right"></actions> |
|
<ol class="breadcrumb"> |
|
<li><a href="project/load_balancer/"><translate>Load Balancers</translate></a></li> |
|
<li><a href="project/load_balancer/{$ ::ctrl.loadbalancer.id $}">{$ ::(ctrl.loadbalancer.name || ctrl.loadbalancer.id) $}</a></li> |
|
<li><a href="project/load_balancer/{$ ::ctrl.loadbalancer.id $}/listeners/{$ ::ctrl.listener.id $}">{$ ::(ctrl.listener.name || ctrl.listener.id) $}</a></li> |
|
<li><a href="project/load_balancer/{$ ::ctrl.loadbalancer.id $}/listeners/{$ ::ctrl.listener.id $}/pools/{$ ::ctrl.pool.id $}">{$ ::(ctrl.pool.name || ctrl.pool.id) $}</a></li> |
|
<li class="active">{$ ::(ctrl.healthmonitor.name || ctrl.healthmonitor.id) $}</li> |
|
</ol> |
|
</div> |
|
<div class="row"> |
|
<div class="col-md-6 detail"> |
|
<dl class="dl-horizontal"> |
|
<dt translate>Type</dt> |
|
<dd>{$ ::ctrl.healthmonitor.type $}</dd> |
|
<dt translate>Delay</dt> |
|
<dd>{$ ::ctrl.healthmonitor.delay $}</dd> |
|
<dt translate>Max Retries</dt> |
|
<dd>{$ ::ctrl.healthmonitor.max_retries $}</dd> |
|
<dt translate>Max Retries Down</dt> |
|
<dd>{$ ::ctrl.healthmonitor.max_retries_down $}</dd> |
|
<dt translate>Timeout</dt> |
|
<dd>{$ ::ctrl.healthmonitor.timeout $}</dd> |
|
<dt translate ng-if="::ctrl.healthmonitor.http_method">HTTP Method</dt> |
|
<dd ng-if="::ctrl.healthmonitor.http_method">{$ ::ctrl.healthmonitor.http_method $}</dd> |
|
<dt translate ng-if="::ctrl.healthmonitor.expected_codes">Expected Codes</dt> |
|
<dd ng-if="::ctrl.healthmonitor.expected_codes">{$ ::ctrl.healthmonitor.expected_codes $}</dd> |
|
<dt translate ng-if="::ctrl.healthmonitor.url_path">URL Path</dt> |
|
<dd ng-if="::ctrl.healthmonitor.url_path">{$ ::ctrl.healthmonitor.url_path $}</dd> |
|
<dt translate>Admin State Up</dt> |
|
<dd>{$ ctrl.healthmonitor.admin_state_up | yesno $}</dd> |
|
<dt translate>Monitor ID</dt> |
|
<dd>{$ ::ctrl.healthmonitor.id $}</dd> |
|
<dt translate>Project ID</dt> |
|
<dd>{$ ::ctrl.healthmonitor.project_id $}</dd> |
|
<dt translate>Created At</dt> |
|
<dd>{$ ::ctrl.healthmonitor.created_at $}</dd> |
|
<dt translate>Updated At</dt> |
|
<dd>{$ ::ctrl.healthmonitor.updated_at $}</dd> |
|
</dl> |
|
</div> |
|
</div> |
|
</div> |
|
</div>
|
|
|