mirror of
https://github.com/prometheus/prometheus.git
synced 2025-02-02 08:31:11 -08:00
Remove HTTP client doc from nomad and marathon
Signed-off-by: Julien <roidelapluie@o11y.eu>
This commit is contained in:
parent
1dd45fd286
commit
530c3fc345
|
@ -2863,69 +2863,9 @@ servers:
|
||||||
# It is mutually exclusive with `auth_token` and other authentication mechanisms.
|
# It is mutually exclusive with `auth_token` and other authentication mechanisms.
|
||||||
[ auth_token_file: <filename> ]
|
[ auth_token_file: <filename> ]
|
||||||
|
|
||||||
# Sets the `Authorization` header on every request with the
|
# HTTP client settings, including authentication methods (such as basic auth and
|
||||||
# configured username and password.
|
# authorization), proxy configurations, TLS options, custom HTTP headers, etc.
|
||||||
# This is mutually exclusive with other authentication mechanisms.
|
[ <http_config> ]
|
||||||
# username and username_file are mutually exclusive.
|
|
||||||
# password and password_file are mutually exclusive.
|
|
||||||
basic_auth:
|
|
||||||
[ username: <string> ]
|
|
||||||
[ username_file: <string> ]
|
|
||||||
[ password: <secret> ]
|
|
||||||
[ password_file: <string> ]
|
|
||||||
|
|
||||||
# Optional `Authorization` header configuration.
|
|
||||||
# NOTE: The current version of DC/OS marathon (v1.11.0) does not support
|
|
||||||
# standard `Authentication` header, use `auth_token` or `auth_token_file`
|
|
||||||
# instead.
|
|
||||||
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> ]
|
|
||||||
|
|
||||||
# Configure whether HTTP requests follow HTTP 3xx redirects.
|
|
||||||
[ follow_redirects: <boolean> | default = true ]
|
|
||||||
|
|
||||||
# Whether to enable HTTP2.
|
|
||||||
[ enable_http2: <boolean> | default: true ]
|
|
||||||
|
|
||||||
# TLS configuration for connecting to marathon servers
|
|
||||||
tls_config:
|
|
||||||
[ <tls_config> ]
|
|
||||||
|
|
||||||
# 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>, ...] ] ]
|
|
||||||
```
|
```
|
||||||
|
|
||||||
By default every app listed in Marathon will be scraped by Prometheus. If not all
|
By default every app listed in Marathon will be scraped by Prometheus. If not all
|
||||||
|
@ -2987,67 +2927,9 @@ The following meta labels are available on targets during [relabeling](#relabel_
|
||||||
[ server: <host> ]
|
[ server: <host> ]
|
||||||
[ tag_separator: <string> | default = ,]
|
[ tag_separator: <string> | default = ,]
|
||||||
|
|
||||||
# Authentication information used to authenticate to the nomad 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> ]
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### `<serverset_sd_config>`
|
### `<serverset_sd_config>`
|
||||||
|
|
Loading…
Reference in a new issue