Skip to content

Commit

Permalink
update outdated conf.yaml.example files (#1147)
Browse files Browse the repository at this point in the history
  • Loading branch information
vatteh authored Feb 15, 2022
1 parent 55da9d4 commit 474c9a6
Show file tree
Hide file tree
Showing 25 changed files with 524 additions and 23 deletions.
22 changes: 22 additions & 0 deletions calico/datadog_checks/calico/data/conf.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ instances:
## A mapping of labels where metrics with matching label name and values are ignored. To match
## all values of a label, set it to `true`.
##
## Note: Labels filtering happens before `rename_labels`.
##
## For example, the following configuration instructs the check to exclude all metrics with
## a label `worker` or a label `pid` with the value of either `23` or `42`.
##
Expand All @@ -126,12 +128,16 @@ instances:
## A list of labels to exclude, useful for high cardinality values like timestamps or UUIDs.
## May be used in conjunction with `include_labels`.
## Labels defined in `excluded labels` will take precedence in case of overlap.
##
## Note: Labels filtering happens before `rename_labels`.
#
# exclude_labels: []

## @param include_labels - list of strings - optional
## A list of labels to include. May be used in conjunction with `exclude_labels`.
## Labels defined in `excluded labels` will take precedence in case of overlap.
##
## Note: Labels filtering happens before `rename_labels`.
#
# include_labels: []

Expand Down Expand Up @@ -436,6 +442,8 @@ instances:

## @param aws_host - string - optional
## If your services require AWS Signature Version 4 signing, set the host.
## This only needs the hostname and does not require the protocol (HTTP, HTTPS, and more).
## For example, if connecting to https://us-east-1.amazonaws.com/, set `aws_host` to `us-east-1.amazonaws.com`.
##
## Note: This setting is not necessary for official integrations.
##
Expand Down Expand Up @@ -494,6 +502,20 @@ instances:
#
# tls_ca_cert: <CA_CERT_PATH>

## @param tls_protocols_allowed - list of strings - optional
## The expected versions of TLS/SSL when fetching intermediate certificates.
## Only `SSLv3`, `TLSv1.2`, `TLSv1.3` are allowed by default. The possible values are:
## SSLv3
## TLSv1
## TLSv1.1
## TLSv1.2
## TLSv1.3
#
# tls_protocols_allowed:
# - SSLv3
# - TLSv1.2
# - TLSv1.3

## @param headers - mapping - optional
## The headers parameter allows you to send specific headers with every request.
## You can use it for explicitly specifying the host header or adding headers for
Expand Down
36 changes: 34 additions & 2 deletions cyral/datadog_checks/cyral/data/conf.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -118,14 +118,30 @@ instances:
#
# send_distribution_sums_as_monotonic: false

## @param use_process_start_time - boolean - optional - default: false
## Whether to enable a heuristic for reporting counter values on the first scrape. When true,
## the first time an endpoint is scraped, check `process_start_time_seconds` to decide whether zero
## initial value can be assumed for counters. This requires keeping metrics in memory until the entire
## response is received.
#
# use_process_start_time: false

## @param exclude_labels - list of strings - optional
## A list of labels to be excluded
## A list of labels to be excluded. May be used in conjunction with `include_labels`.
## Labels defined in `excluded labels` will take precedence in case of overlap.
#
# exclude_labels:
# - timestamp

## @param bearer_token_auth - boolean - optional - default: false
## @param include_labels - list of strings - optional
## A list of labels to include. May be used in conjunction with `exclude_labels`.
## Labels defined in `excluded labels` will take precedence in case of overlap.
#
# include_labels: []

## @param bearer_token_auth - boolean or string - optional - default: false
## If set to true, adds a bearer token authentication header.
## If set to 'tls_only', only adds a bearer token authentication header if the endpoint is secure https.
## Note: If bearer_token_path is not set, the default path is /var/run/secrets/kubernetes.io/serviceaccount/token.
#
# bearer_token_auth: false
Expand Down Expand Up @@ -339,6 +355,8 @@ instances:

## @param aws_host - string - optional
## If your services require AWS Signature Version 4 signing, set the host.
## This only needs the hostname and does not require the protocol (HTTP, HTTPS, and more).
## For example, if connecting to https://us-east-1.amazonaws.com/, set `aws_host` to `us-east-1.amazonaws.com`.
##
## Note: This setting is not necessary for official integrations.
##
Expand Down Expand Up @@ -397,6 +415,20 @@ instances:
#
# tls_ca_cert: <CA_CERT_PATH>

## @param tls_protocols_allowed - list of strings - optional
## The expected versions of TLS/SSL when fetching intermediate certificates.
## Only `SSLv3`, `TLSv1.2`, `TLSv1.3` are allowed by default. The possible values are:
## SSLv3
## TLSv1
## TLSv1.1
## TLSv1.2
## TLSv1.3
#
# tls_protocols_allowed:
# - SSLv3
# - TLSv1.2
# - TLSv1.3

## @param headers - mapping - optional
## The headers parameter allows you to send specific headers with every request.
## You can use it for explicitly specifying the host header or adding headers for
Expand Down
16 changes: 16 additions & 0 deletions eventstore/datadog_checks/eventstore/data/conf.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,8 @@ instances:

## @param aws_host - string - optional
## If your services require AWS Signature Version 4 signing, set the host.
## This only needs the hostname and does not require the protocol (HTTP, HTTPS, and more).
## For example, if connecting to https://us-east-1.amazonaws.com/, set `aws_host` to `us-east-1.amazonaws.com`.
##
## Note: This setting is not necessary for official integrations.
##
Expand Down Expand Up @@ -311,6 +313,20 @@ instances:
#
# tls_ca_cert: <CA_CERT_PATH>

## @param tls_protocols_allowed - list of strings - optional
## The expected versions of TLS/SSL when fetching intermediate certificates.
## Only `SSLv3`, `TLSv1.2`, `TLSv1.3` are allowed by default. The possible values are:
## SSLv3
## TLSv1
## TLSv1.1
## TLSv1.2
## TLSv1.3
#
# tls_protocols_allowed:
# - SSLv3
# - TLSv1.2
# - TLSv1.3

## @param headers - mapping - optional
## The headers parameter allows you to send specific headers with every request.
## You can use it for explicitly specifying the host header or adding headers for
Expand Down
16 changes: 16 additions & 0 deletions filebeat/datadog_checks/filebeat/data/conf.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,8 @@ instances:

## @param aws_host - string - optional
## If your services require AWS Signature Version 4 signing, set the host.
## This only needs the hostname and does not require the protocol (HTTP, HTTPS, and more).
## For example, if connecting to https://us-east-1.amazonaws.com/, set `aws_host` to `us-east-1.amazonaws.com`.
##
## Note: This setting is not necessary for official integrations.
##
Expand Down Expand Up @@ -344,6 +346,20 @@ instances:
#
# tls_ca_cert: <CA_CERT_PATH>

## @param tls_protocols_allowed - list of strings - optional
## The expected versions of TLS/SSL when fetching intermediate certificates.
## Only `SSLv3`, `TLSv1.2`, `TLSv1.3` are allowed by default. The possible values are:
## SSLv3
## TLSv1
## TLSv1.1
## TLSv1.2
## TLSv1.3
#
# tls_protocols_allowed:
# - SSLv3
# - TLSv1.2
# - TLSv1.3

## @param headers - mapping - optional
## The headers parameter allows you to send specific headers with every request.
## You can use it for explicitly specifying the host header or adding headers for
Expand Down
10 changes: 8 additions & 2 deletions flume/datadog_checks/flume/data/conf.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,18 @@ instances:
## This requires the JDK to be installed and the path to tools.jar to be set below.
## Note: It needs to be set when process_name_regex parameter is set
## e.g. .*process_name.*
##
## Note: tools.jar was removed in Java 9: https://openjdk.java.net/jeps/220.
## This option is supported in Java 8 and below.
#
# process_name_regex: <PROCESS_NAME_REGEX>

## @param tools_jar_path - string - optional
## The tool.jar path to be used with the `process_name_regex` parameter,
## for example: /usr/lib/jvm/java-11-openjdk-amd64/lib/tools.jar
## The tools.jar path to be used with the `process_name_regex` parameter,
## for example: /usr/lib/jvm/java-7-openjdk-amd64/lib/tools.jar
##
## Note: tools.jar was removed in Java 9: https://openjdk.java.net/jeps/220.
## This option is supported in Java 8 and below.
#
# tools_jar_path: <TOOLS_JAR_PATH>

Expand Down
36 changes: 34 additions & 2 deletions gatekeeper/datadog_checks/gatekeeper/data/auto_conf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,30 @@ instances:
#
# send_distribution_sums_as_monotonic: false

## @param use_process_start_time - boolean - optional - default: false
## Whether to enable a heuristic for reporting counter values on the first scrape. When true,
## the first time an endpoint is scraped, check `process_start_time_seconds` to decide whether zero
## initial value can be assumed for counters. This requires keeping metrics in memory until the entire
## response is received.
#
# use_process_start_time: false

## @param exclude_labels - list of strings - optional
## A list of labels to be excluded
## A list of labels to be excluded. May be used in conjunction with `include_labels`.
## Labels defined in `excluded labels` will take precedence in case of overlap.
#
# exclude_labels:
# - timestamp

## @param bearer_token_auth - boolean - optional - default: false
## @param include_labels - list of strings - optional
## A list of labels to include. May be used in conjunction with `exclude_labels`.
## Labels defined in `excluded labels` will take precedence in case of overlap.
#
# include_labels: []

## @param bearer_token_auth - boolean or string - optional - default: false
## If set to true, adds a bearer token authentication header.
## If set to 'tls_only', only adds a bearer token authentication header if the endpoint is secure https.
## Note: If bearer_token_path is not set, the default path is /var/run/secrets/kubernetes.io/serviceaccount/token.
#
# bearer_token_auth: false
Expand Down Expand Up @@ -313,6 +329,8 @@ instances:

## @param aws_host - string - optional
## If your services require AWS Signature Version 4 signing, set the host.
## This only needs the hostname and does not require the protocol (HTTP, HTTPS, and more).
## For example, if connecting to https://us-east-1.amazonaws.com/, set `aws_host` to `us-east-1.amazonaws.com`.
##
## Note: This setting is not necessary for official integrations.
##
Expand Down Expand Up @@ -371,6 +389,20 @@ instances:
#
# tls_ca_cert: <CA_CERT_PATH>

## @param tls_protocols_allowed - list of strings - optional
## The expected versions of TLS/SSL when fetching intermediate certificates.
## Only `SSLv3`, `TLSv1.2`, `TLSv1.3` are allowed by default. The possible values are:
## SSLv3
## TLSv1
## TLSv1.1
## TLSv1.2
## TLSv1.3
#
# tls_protocols_allowed:
# - SSLv3
# - TLSv1.2
# - TLSv1.3

## @param headers - mapping - optional
## The headers parameter allows you to send specific headers with every request.
## You can use it for explicitly specifying the host header or adding headers for
Expand Down
36 changes: 34 additions & 2 deletions gatekeeper/datadog_checks/gatekeeper/data/conf.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -123,14 +123,30 @@ instances:
#
# send_distribution_sums_as_monotonic: false

## @param use_process_start_time - boolean - optional - default: false
## Whether to enable a heuristic for reporting counter values on the first scrape. When true,
## the first time an endpoint is scraped, check `process_start_time_seconds` to decide whether zero
## initial value can be assumed for counters. This requires keeping metrics in memory until the entire
## response is received.
#
# use_process_start_time: false

## @param exclude_labels - list of strings - optional
## A list of labels to be excluded
## A list of labels to be excluded. May be used in conjunction with `include_labels`.
## Labels defined in `excluded labels` will take precedence in case of overlap.
#
# exclude_labels:
# - timestamp

## @param bearer_token_auth - boolean - optional - default: false
## @param include_labels - list of strings - optional
## A list of labels to include. May be used in conjunction with `exclude_labels`.
## Labels defined in `excluded labels` will take precedence in case of overlap.
#
# include_labels: []

## @param bearer_token_auth - boolean or string - optional - default: false
## If set to true, adds a bearer token authentication header.
## If set to 'tls_only', only adds a bearer token authentication header if the endpoint is secure https.
## Note: If bearer_token_path is not set, the default path is /var/run/secrets/kubernetes.io/serviceaccount/token.
#
# bearer_token_auth: false
Expand Down Expand Up @@ -344,6 +360,8 @@ instances:

## @param aws_host - string - optional
## If your services require AWS Signature Version 4 signing, set the host.
## This only needs the hostname and does not require the protocol (HTTP, HTTPS, and more).
## For example, if connecting to https://us-east-1.amazonaws.com/, set `aws_host` to `us-east-1.amazonaws.com`.
##
## Note: This setting is not necessary for official integrations.
##
Expand Down Expand Up @@ -402,6 +420,20 @@ instances:
#
# tls_ca_cert: <CA_CERT_PATH>

## @param tls_protocols_allowed - list of strings - optional
## The expected versions of TLS/SSL when fetching intermediate certificates.
## Only `SSLv3`, `TLSv1.2`, `TLSv1.3` are allowed by default. The possible values are:
## SSLv3
## TLSv1
## TLSv1.1
## TLSv1.2
## TLSv1.3
#
# tls_protocols_allowed:
# - SSLv3
# - TLSv1.2
# - TLSv1.3

## @param headers - mapping - optional
## The headers parameter allows you to send specific headers with every request.
## You can use it for explicitly specifying the host header or adding headers for
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,8 @@ instances:

## @param aws_host - string - optional
## If your services require AWS Signature Version 4 signing, set the host.
## This only needs the hostname and does not require the protocol (HTTP, HTTPS, and more).
## For example, if connecting to https://us-east-1.amazonaws.com/, set `aws_host` to `us-east-1.amazonaws.com`.
##
## Note: This setting is not necessary for official integrations.
##
Expand Down Expand Up @@ -288,6 +290,20 @@ instances:
#
# tls_ca_cert: <CA_CERT_PATH>

## @param tls_protocols_allowed - list of strings - optional
## The expected versions of TLS/SSL when fetching intermediate certificates.
## Only `SSLv3`, `TLSv1.2`, `TLSv1.3` are allowed by default. The possible values are:
## SSLv3
## TLSv1
## TLSv1.1
## TLSv1.2
## TLSv1.3
#
# tls_protocols_allowed:
# - SSLv3
# - TLSv1.2
# - TLSv1.3

## @param headers - mapping - optional
## The headers parameter allows you to send specific headers with every request.
## You can use it for explicitly specifying the host header or adding headers for
Expand Down
10 changes: 8 additions & 2 deletions hbase_master/datadog_checks/hbase_master/data/conf.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,18 @@ instances:
## This requires the JDK to be installed and the path to tools.jar to be set below.
## Note: It needs to be set when process_name_regex parameter is set
## e.g. .*process_name.*
##
## Note: tools.jar was removed in Java 9: https://openjdk.java.net/jeps/220.
## This option is supported in Java 8 and below.
#
# process_name_regex: <PROCESS_NAME_REGEX>

## @param tools_jar_path - string - optional
## The tool.jar path to be used with the `process_name_regex` parameter,
## for example: /usr/lib/jvm/java-11-openjdk-amd64/lib/tools.jar
## The tools.jar path to be used with the `process_name_regex` parameter,
## for example: /usr/lib/jvm/java-7-openjdk-amd64/lib/tools.jar
##
## Note: tools.jar was removed in Java 9: https://openjdk.java.net/jeps/220.
## This option is supported in Java 8 and below.
#
# tools_jar_path: <TOOLS_JAR_PATH>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,18 @@ instances:
## This requires the JDK to be installed and the path to tools.jar to be set below.
## Note: It needs to be set when process_name_regex parameter is set
## e.g. .*process_name.*
##
## Note: tools.jar was removed in Java 9: https://openjdk.java.net/jeps/220.
## This option is supported in Java 8 and below.
#
# process_name_regex: <PROCESS_NAME_REGEX>

## @param tools_jar_path - string - optional
## The tool.jar path to be used with the `process_name_regex` parameter,
## for example: /usr/lib/jvm/java-11-openjdk-amd64/lib/tools.jar
## The tools.jar path to be used with the `process_name_regex` parameter,
## for example: /usr/lib/jvm/java-7-openjdk-amd64/lib/tools.jar
##
## Note: tools.jar was removed in Java 9: https://openjdk.java.net/jeps/220.
## This option is supported in Java 8 and below.
#
# tools_jar_path: <TOOLS_JAR_PATH>

Expand Down
Loading

0 comments on commit 474c9a6

Please sign in to comment.