forked from openshift/origin-web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_probe.html
23 lines (22 loc) · 783 Bytes
/
_probe.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!-- Make sure there is no whitespace before comma -->
<span ng-if="probe.httpGet">
GET {{probe.httpGet.path || '/'}} on port {{probe.httpGet.port || 'unknown'}} ({{probe.httpGet.scheme || 'HTTP'}})
</span>
<span ng-if="probe.exec.command">
<code class="command">
<truncate-long-text
content="probe.exec.command.join(' ')"
limit="80"
newline-limit="1"
expandable="true"
use-word-boundary="false">
</truncate-long-text>
</code>
</span>
<span ng-if="probe.tcpSocket">
Open socket on port {{probe.tcpSocket.port}}
</span>
<small class="text-muted">
<span ng-if="probe.initialDelaySeconds" class="nowrap">{{probe.initialDelaySeconds}}s delay,</span>
<span class="nowrap">{{probe.timeoutSeconds || 1}}s timeout</span>
</small>