mirror of https://github.com/status-im/consul.git
Document proxy-defaults config for prometheus
This commit is contained in:
parent
aa7026a79f
commit
5a1887a09c
|
@ -84,6 +84,39 @@ spec:
|
||||||
</Tab>
|
</Tab>
|
||||||
</Tabs>
|
</Tabs>
|
||||||
|
|
||||||
|
### Prometheus
|
||||||
|
|
||||||
|
<Tabs>
|
||||||
|
<Tab heading="HCL">
|
||||||
|
|
||||||
|
Expose prometheus metrics:
|
||||||
|
|
||||||
|
```hcl
|
||||||
|
Kind = "proxy-defaults"
|
||||||
|
Name = "global"
|
||||||
|
Config {
|
||||||
|
envoy_prometheus_bind_addr = "0.0.0.0:9102"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
</Tab>
|
||||||
|
<Tab heading="Kubernetes YAML">
|
||||||
|
|
||||||
|
Expose prometheus metrics:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
apiVersion: consul.hashicorp.com/v1alpha1
|
||||||
|
kind: ProxyDefaults
|
||||||
|
metadata:
|
||||||
|
name: global
|
||||||
|
spec:
|
||||||
|
config:
|
||||||
|
envoy_prometheus_bind_addr: '0.0.0.0:9102'
|
||||||
|
```
|
||||||
|
|
||||||
|
</Tab>
|
||||||
|
</Tabs>
|
||||||
|
|
||||||
### Proxy-specific defaults
|
### Proxy-specific defaults
|
||||||
|
|
||||||
<Tabs>
|
<Tabs>
|
||||||
|
|
Loading…
Reference in New Issue