mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-27 22:49:40 -08:00
Remove http client config from consul and digitalocean
Signed-off-by: Julien <roidelapluie@o11y.eu>
This commit is contained in:
parent
57e3fd0c51
commit
7eb73b10d8
|
@ -700,67 +700,9 @@ subscription_id: <string>
|
||||||
# instead be specified in the relabeling rule.
|
# instead be specified in the relabeling rule.
|
||||||
[ port: <int> | default = 80 ]
|
[ port: <int> | default = 80 ]
|
||||||
|
|
||||||
# Authentication information used to authenticate to the Azure API.
|
# HTTP client settings, including authentication methods (such as basic auth and
|
||||||
# Note that `basic_auth`, `authorization` and `oauth2` options are
|
# authorization), proxy configurations, TLS options, custom HTTP headers, etc.
|
||||||
# mutually exclusive.
|
[ <http_config> ]
|
||||||
# `username` and `username_file` are mutually exclusive.
|
|
||||||
# `password` and `password_file` are mutually exclusive.
|
|
||||||
|
|
||||||
# Optional HTTP basic authentication information, currently not support by Azure.
|
|
||||||
basic_auth:
|
|
||||||
[ username: <string> ]
|
|
||||||
[ username_file: <string> ]
|
|
||||||
[ password: <secret> ]
|
|
||||||
[ password_file: <string> ]
|
|
||||||
|
|
||||||
# Optional `Authorization` header configuration, currently not supported by Azure.
|
|
||||||
authorization:
|
|
||||||
# Sets the authentication type.
|
|
||||||
[ type: <string> | default: Bearer ]
|
|
||||||
# Sets the credentials. It is mutually exclusive with
|
|
||||||
# `credentials_file`.
|
|
||||||
[ credentials: <secret> ]
|
|
||||||
# Sets the credentials to the credentials read from the configured file.
|
|
||||||
# It is mutually exclusive with `credentials`.
|
|
||||||
[ credentials_file: <filename> ]
|
|
||||||
|
|
||||||
# Optional OAuth 2.0 configuration, currently not supported by Azure.
|
|
||||||
oauth2:
|
|
||||||
[ <oauth2> ]
|
|
||||||
|
|
||||||
# Optional proxy URL.
|
|
||||||
[ proxy_url: <string> ]
|
|
||||||
# Comma-separated string that can contain IPs, CIDR notation, domain names
|
|
||||||
# that should be excluded from proxying. IP and domain names can
|
|
||||||
# contain port numbers.
|
|
||||||
[ no_proxy: <string> ]
|
|
||||||
# Use proxy URL indicated by environment variables (HTTP_PROXY, https_proxy, HTTPs_PROXY, https_proxy, and no_proxy)
|
|
||||||
[ proxy_from_environment: <boolean> | default: false ]
|
|
||||||
# Specifies headers to send to proxies during CONNECT requests.
|
|
||||||
[ proxy_connect_header:
|
|
||||||
[ <string>: [<secret>, ...] ] ]
|
|
||||||
|
|
||||||
# Custom HTTP headers to be sent along with each request.
|
|
||||||
# Headers that are set by Prometheus itself can't be overwritten.
|
|
||||||
http_headers:
|
|
||||||
# Header name.
|
|
||||||
[ <string>:
|
|
||||||
# Header values.
|
|
||||||
[ values: [<string>, ...] ]
|
|
||||||
# Headers values. Hidden in configuration page.
|
|
||||||
[ secrets: [<secret>, ...] ]
|
|
||||||
# Files to read header values from.
|
|
||||||
[ files: [<string>, ...] ] ]
|
|
||||||
|
|
||||||
# Configure whether HTTP requests follow HTTP 3xx redirects.
|
|
||||||
[ follow_redirects: <boolean> | default = true ]
|
|
||||||
|
|
||||||
# Whether to enable HTTP2.
|
|
||||||
[ enable_http2: <boolean> | default: true ]
|
|
||||||
|
|
||||||
# TLS configuration.
|
|
||||||
tls_config:
|
|
||||||
[ <tls_config> ]
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### `<consul_sd_config>`
|
### `<consul_sd_config>`
|
||||||
|
@ -827,67 +769,9 @@ tags:
|
||||||
# On large setup it might be a good idea to increase this value because the catalog will change all the time.
|
# On large setup it might be a good idea to increase this value because the catalog will change all the time.
|
||||||
[ refresh_interval: <duration> | default = 30s ]
|
[ refresh_interval: <duration> | default = 30s ]
|
||||||
|
|
||||||
# Authentication information used to authenticate to the consul server.
|
# HTTP client settings, including authentication methods (such as basic auth and
|
||||||
# Note that `basic_auth`, `authorization` and `oauth2` options are
|
# authorization), proxy configurations, TLS options, custom HTTP headers, etc.
|
||||||
# mutually exclusive.
|
[ <http_config> ]
|
||||||
# `username` and `username_file` are mutually exclusive.
|
|
||||||
# `password` and `password_file` are mutually exclusive.
|
|
||||||
|
|
||||||
# Optional HTTP basic authentication information.
|
|
||||||
basic_auth:
|
|
||||||
[ username: <string> ]
|
|
||||||
[ username_file: <string> ]
|
|
||||||
[ password: <secret> ]
|
|
||||||
[ password_file: <string> ]
|
|
||||||
|
|
||||||
# Optional `Authorization` header configuration.
|
|
||||||
authorization:
|
|
||||||
# Sets the authentication type.
|
|
||||||
[ type: <string> | default: Bearer ]
|
|
||||||
# Sets the credentials. It is mutually exclusive with
|
|
||||||
# `credentials_file`.
|
|
||||||
[ credentials: <secret> ]
|
|
||||||
# Sets the credentials to the credentials read from the configured file.
|
|
||||||
# It is mutually exclusive with `credentials`.
|
|
||||||
[ credentials_file: <filename> ]
|
|
||||||
|
|
||||||
# Optional OAuth 2.0 configuration.
|
|
||||||
oauth2:
|
|
||||||
[ <oauth2> ]
|
|
||||||
|
|
||||||
# Optional proxy URL.
|
|
||||||
[ proxy_url: <string> ]
|
|
||||||
# Comma-separated string that can contain IPs, CIDR notation, domain names
|
|
||||||
# that should be excluded from proxying. IP and domain names can
|
|
||||||
# contain port numbers.
|
|
||||||
[ no_proxy: <string> ]
|
|
||||||
# Use proxy URL indicated by environment variables (HTTP_PROXY, https_proxy, HTTPs_PROXY, https_proxy, and no_proxy)
|
|
||||||
[ proxy_from_environment: <boolean> | default: false ]
|
|
||||||
# Specifies headers to send to proxies during CONNECT requests.
|
|
||||||
[ proxy_connect_header:
|
|
||||||
[ <string>: [<secret>, ...] ] ]
|
|
||||||
|
|
||||||
# Custom HTTP headers to be sent along with each request.
|
|
||||||
# Headers that are set by Prometheus itself can't be overwritten.
|
|
||||||
http_headers:
|
|
||||||
# Header name.
|
|
||||||
[ <string>:
|
|
||||||
# Header values.
|
|
||||||
[ values: [<string>, ...] ]
|
|
||||||
# Headers values. Hidden in configuration page.
|
|
||||||
[ secrets: [<secret>, ...] ]
|
|
||||||
# Files to read header values from.
|
|
||||||
[ files: [<string>, ...] ] ]
|
|
||||||
|
|
||||||
# Configure whether HTTP requests follow HTTP 3xx redirects.
|
|
||||||
[ follow_redirects: <boolean> | default = true ]
|
|
||||||
|
|
||||||
# Whether to enable HTTP2.
|
|
||||||
[ enable_http2: <boolean> | default: true ]
|
|
||||||
|
|
||||||
# TLS configuration.
|
|
||||||
tls_config:
|
|
||||||
[ <tls_config> ]
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Note that the IP number and port used to scrape the targets is assembled as
|
Note that the IP number and port used to scrape the targets is assembled as
|
||||||
|
@ -927,74 +811,15 @@ The following meta labels are available on targets during [relabeling](#relabel_
|
||||||
* `__meta_digitalocean_vpc`: the id of the droplet's VPC
|
* `__meta_digitalocean_vpc`: the id of the droplet's VPC
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Authentication information used to authenticate to the API server.
|
|
||||||
# Note that `basic_auth` and `authorization` options are
|
|
||||||
# mutually exclusive.
|
|
||||||
# username and username_file are mutually exclusive.
|
|
||||||
# password and password_file are mutually exclusive.
|
|
||||||
|
|
||||||
# Optional HTTP basic authentication information, not currently supported by DigitalOcean.
|
|
||||||
basic_auth:
|
|
||||||
[ username: <string> ]
|
|
||||||
[ username_file: <string> ]
|
|
||||||
[ password: <secret> ]
|
|
||||||
[ password_file: <string> ]
|
|
||||||
|
|
||||||
# Optional `Authorization` header configuration.
|
|
||||||
authorization:
|
|
||||||
# Sets the authentication type.
|
|
||||||
[ type: <string> | default: Bearer ]
|
|
||||||
# Sets the credentials. It is mutually exclusive with
|
|
||||||
# `credentials_file`.
|
|
||||||
[ credentials: <secret> ]
|
|
||||||
# Sets the credentials to the credentials read from the configured file.
|
|
||||||
# It is mutually exclusive with `credentials`.
|
|
||||||
[ credentials_file: <filename> ]
|
|
||||||
|
|
||||||
# Optional OAuth 2.0 configuration.
|
|
||||||
# Cannot be used at the same time as basic_auth or authorization.
|
|
||||||
oauth2:
|
|
||||||
[ <oauth2> ]
|
|
||||||
|
|
||||||
# Optional proxy URL.
|
|
||||||
[ proxy_url: <string> ]
|
|
||||||
# Comma-separated string that can contain IPs, CIDR notation, domain names
|
|
||||||
# that should be excluded from proxying. IP and domain names can
|
|
||||||
# contain port numbers.
|
|
||||||
[ no_proxy: <string> ]
|
|
||||||
# Use proxy URL indicated by environment variables (HTTP_PROXY, https_proxy, HTTPs_PROXY, https_proxy, and no_proxy)
|
|
||||||
[ proxy_from_environment: <boolean> | default: false ]
|
|
||||||
# Specifies headers to send to proxies during CONNECT requests.
|
|
||||||
[ proxy_connect_header:
|
|
||||||
[ <string>: [<secret>, ...] ] ]
|
|
||||||
|
|
||||||
# Custom HTTP headers to be sent along with each request.
|
|
||||||
# Headers that are set by Prometheus itself can't be overwritten.
|
|
||||||
http_headers:
|
|
||||||
# Header name.
|
|
||||||
[ <string>:
|
|
||||||
# Header values.
|
|
||||||
[ values: [<string>, ...] ]
|
|
||||||
# Headers values. Hidden in configuration page.
|
|
||||||
[ secrets: [<secret>, ...] ]
|
|
||||||
# Files to read header values from.
|
|
||||||
[ files: [<string>, ...] ] ]
|
|
||||||
|
|
||||||
# Configure whether HTTP requests follow HTTP 3xx redirects.
|
|
||||||
[ follow_redirects: <boolean> | default = true ]
|
|
||||||
|
|
||||||
# Whether to enable HTTP2.
|
|
||||||
[ enable_http2: <boolean> | default: true ]
|
|
||||||
|
|
||||||
# TLS configuration.
|
|
||||||
tls_config:
|
|
||||||
[ <tls_config> ]
|
|
||||||
|
|
||||||
# The port to scrape metrics from.
|
# The port to scrape metrics from.
|
||||||
[ port: <int> | default = 80 ]
|
[ port: <int> | default = 80 ]
|
||||||
|
|
||||||
# The time after which the droplets are refreshed.
|
# The time after which the droplets are refreshed.
|
||||||
[ refresh_interval: <duration> | default = 60s ]
|
[ refresh_interval: <duration> | default = 60s ]
|
||||||
|
|
||||||
|
# HTTP client settings, including authentication methods (such as basic auth and
|
||||||
|
# authorization), proxy configurations, TLS options, custom HTTP headers, etc.
|
||||||
|
[ <http_config> ]
|
||||||
```
|
```
|
||||||
|
|
||||||
### `<docker_sd_config>`
|
### `<docker_sd_config>`
|
||||||
|
|
Loading…
Reference in a new issue