mirror of https://github.com/status-im/consul.git
38 lines
1.1 KiB
Handlebars
38 lines
1.1 KiB
Handlebars
<div id="exposed-paths" class="tab-section">
|
|
<div role="tabpanel">
|
|
<p>
|
|
You can expose individual HTTP paths like /metrics through Envoy for external services like Prometheus.
|
|
</p>
|
|
<TabularCollection
|
|
data-test-exposedpaths
|
|
class="exposedpaths"
|
|
@items={{item.Proxy.Expose.Paths}} as |path index|
|
|
>
|
|
<BlockSlot @name="header">
|
|
<th>Path</th>
|
|
<th>Protocol</th>
|
|
<th>Listener port</th>
|
|
<th>Local path port</th>
|
|
<th>Combined address<span><em role="tooltip">Service address, listener port, and path all combined into one URL.</em></span></th>
|
|
</BlockSlot>
|
|
<BlockSlot @name="row">
|
|
<td>
|
|
<span>{{path.Path}}</span>
|
|
</td>
|
|
<td>
|
|
{{path.Protocol}}
|
|
</td>
|
|
<td>
|
|
{{path.ListenerPort}}
|
|
</td>
|
|
<td>
|
|
{{path.LocalPathPort}}
|
|
</td>
|
|
<td>
|
|
<span data-test-combined-address>{{item.Address}}:{{path.ListenerPort}}{{path.Path}}</span>
|
|
</td>
|
|
</BlockSlot>
|
|
</TabularCollection>
|
|
</div>
|
|
</div>
|