{{#if (gt proxy.Proxy.Upstreams.length 0)}}

Upstreams

    {{#let proxy.Datacenter as |proxyDatacenter|}} {{#each proxy.Proxy.Upstreams as |item|}}
  • {{item.DestinationName}}

      {{#if (env 'CONSUL_NSPACES_ENABLED')}} {{#if (not-eq item.DestinationType 'prepared_query')}}
    • Namespace {{or item.DestinationNamespace 'default'}}
    • {{/if}} {{/if}} {{#if (and (not-eq item.Datacenter proxyDatacenter) (not-eq item.Datacenter ""))}}
    • Datacenter {{item.Datacenter}}
    • {{/if}} {{#if (gt item.LocalBindPort 0)}} {{#let (concat (or item.LocalBindAddress '127.0.0.1') ':' item.LocalBindPort) as |combinedAddress| }}
    • Address {{combinedAddress}}
    • {{/let}} {{/if}}
  • {{/each}} {{/let}}
{{/if}} {{#if (gt proxy.Proxy.Expose.Paths.length 0)}}

Exposed paths

The following list shows individual HTTP paths exposed through Envoy for external services like Prometheus. Read more about this in our documentation.

    {{#each proxy.Proxy.Expose.Paths as |path|}}
  • {{#let (concat item.Address ':' path.Path) as |combinedAddress| }}

    {{combinedAddress}}

    {{/let}}
      {{#if path.Protocol}}
    • Protocol {{path.Protocol}}
    • {{/if}} {{#if path.ListenerPort}}
    • Port listening on :{{path.ListenerPort}}
    • {{/if}} {{#if path.LocalPathPort}}
    • Port local port :{{path.LocalPathPort}}
    • {{/if}} {{#if path.Path}}
    • Path {{path.Path}}
    • {{/if}}
  • {{/each}}
{{/if}} {{#if (or (gt proxy.ServiceChecks.length 0) (gt proxy.NodeChecks.length 0))}}

Proxy health

{{/if}}