Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(DOCS-5505) Replace broken developer tool links in READMEs #1850

Merged
merged 5 commits into from
May 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fluentbit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,4 @@ Need help? Contact [Datadog support][10].
[9]: https://github.com/DataDog/integrations-extras/blob/master/fluentbit/assets/service_checks.json
[10]: https://docs.datadoghq.com/help/
[11]: https://docs.datadoghq.com/integrations/fluentbit/
[12]: https://docs.datadoghq.com/developers/integrations/new_check_howto/#developer-toolkit
[12]: https://docs.datadoghq.com/developers/integrations/python/
4 changes: 4 additions & 0 deletions fluentbit/datadog_checks/fluentbit/config_models/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,10 @@ def instance_hostname_label(field, value):
return get_default_field_value(field, value)


def instance_ignore_connection_errors(field, value):
return False


def instance_ignore_tags(field, value):
return get_default_field_value(field, value)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ class Config:
histogram_buckets_as_distributions: Optional[bool]
hostname_format: Optional[str]
hostname_label: Optional[str]
ignore_connection_errors: Optional[bool]
ignore_tags: Optional[Sequence[str]]
include_labels: Optional[Sequence[str]]
kerberos_auth: Optional[str]
Expand Down
5 changes: 5 additions & 0 deletions fluentbit/datadog_checks/fluentbit/data/conf.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,11 @@ instances:
#
# enable_health_service_check: true

## @param ignore_connection_errors - boolean - optional - default: false
## Whether or not to ignore connection errors when scraping `openmetrics_endpoint`.
#
# ignore_connection_errors: false

## @param hostname_label - string - optional
## Override the hostname for every metric submission with the value of one of its labels.
#
Expand Down
2 changes: 1 addition & 1 deletion fluxcd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ Need help? Contact [Datadog support][9].
[7]: https://github.com/DataDog/integrations-extras/blob/master/fluxcd/metadata.csv
[8]: https://github.com/DataDog/integrations-extras/blob/master/fluxcd/assets/service_checks.json
[9]: https://docs.datadoghq.com/help/
[10]: https://docs.datadoghq.com/developers/integrations/new_check_howto/#developer-toolkit
[10]: https://docs.datadoghq.com/developers/integrations/python/
2 changes: 1 addition & 1 deletion gatekeeper/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ Need help? Contact [Datadog support][10].
[1]: https://github.com/open-policy-agent/gatekeeper
[2]: https://raw.githubusercontent.com/DataDog/integrations-extras/master/gatekeeper/images/gatekeeper_dashboard.png
[3]: https://docs.datadoghq.com/agent/kubernetes/integrations/
[4]: https://docs.datadoghq.com/developers/integrations/new_check_howto/#developer-toolkit
[4]: https://docs.datadoghq.com/developers/integrations/python/
[5]: https://docs.datadoghq.com/agent/kubernetes/daemonset_setup/?tab=k8sfile
[6]: https://github.com/DataDog/integrations-extras/blob/master/gatekeeper/datadog_checks/gatekeeper/data/conf.yaml.example
[7]: https://docs.datadoghq.com/agent/guide/agent-commands/#start-stop-and-restart-the-agent
Expand Down
2 changes: 1 addition & 1 deletion grpc_check/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ Need help? Contact [Datadog support][9].
[7]: https://github.com/DataDog/integrations-extras/blob/master/grpc_check/metadata.csv
[8]: https://github.com/DataDog/integrations-extras/blob/master/grpc_check/assets/service_checks.json
[9]: help@datadoghq.com
[10]: https://docs.datadoghq.com/developers/integrations/new_check_howto/#developer-toolkit
[10]: https://docs.datadoghq.com/developers/integrations/python/
2 changes: 1 addition & 1 deletion hikaricp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ Need help? Contact [Datadog support][9].
[7]: https://github.com/DataDog/integrations-extras/blob/master/hikaricp/metadata.csv
[8]: https://github.com/DataDog/integrations-extras/blob/master/hikaricp/assets/service_checks.json
[9]: https://docs.datadoghq.com/help/
[10]: https://docs.datadoghq.com/developers/integrations/new_check_howto/#developer-toolkit
[10]: https://docs.datadoghq.com/developers/integrations/python/
[11]: https://github.com/DataDog/integrations-extras/blob/master/hikaricp/assets/service_checks.json

4 changes: 4 additions & 0 deletions hikaricp/datadog_checks/hikaricp/config_models/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,10 @@ def instance_hostname_label(field, value):
return get_default_field_value(field, value)


def instance_ignore_connection_errors(field, value):
return False


def instance_ignore_tags(field, value):
return get_default_field_value(field, value)

Expand Down
1 change: 1 addition & 0 deletions hikaricp/datadog_checks/hikaricp/config_models/instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ class Config:
histogram_buckets_as_distributions: Optional[bool]
hostname_format: Optional[str]
hostname_label: Optional[str]
ignore_connection_errors: Optional[bool]
ignore_tags: Optional[Sequence[str]]
include_labels: Optional[Sequence[str]]
kerberos_auth: Optional[str]
Expand Down
5 changes: 5 additions & 0 deletions hikaricp/datadog_checks/hikaricp/data/conf.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,11 @@ instances:
#
# enable_health_service_check: true

## @param ignore_connection_errors - boolean - optional - default: false
## Whether or not to ignore connection errors when scraping `openmetrics_endpoint`.
#
# ignore_connection_errors: false

## @param hostname_label - string - optional
## Override the hostname for every metric submission with the value of one of its labels.
#
Expand Down
2 changes: 1 addition & 1 deletion octoprint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Need help? Contact [Datadog support][9].

[1]: https://octoprint.org/
[2]: https://docs.datadoghq.com/agent/kubernetes/integrations/
[3]: https://docs.datadoghq.com/developers/integrations/new_check_howto/#developer-toolkit
[3]: https://docs.datadoghq.com/developers/integrations/python/
[4]: https://app.datadoghq.com/account/settings#agent
[5]: https://github.com/DataDog/integrations-extras/blob/master/octoprint/datadog_checks/octoprint/data/conf.yaml.example
[6]: https://docs.datadoghq.com/agent/guide/agent-commands/#start-stop-and-restart-the-agent
Expand Down
2 changes: 1 addition & 1 deletion open_policy_agent/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ Need help? Contact [Datadog support][13].

[1]: https://www.openpolicyagent.org/
[2]: https://docs.datadoghq.com/agent/kubernetes/integrations/
[3]: https://docs.datadoghq.com/developers/integrations/new_check_howto/#developer-toolkit
[3]: https://docs.datadoghq.com/developers/integrations/python/
[4]: https://docs.datadoghq.com/agent/kubernetes/daemonset_setup/?tab=k8sfile
[5]: https://github.com/DataDog/integrations-extras/blob/master/open_policy_agent/datadog_checks/open_policy_agent/data/conf.yaml.example
[6]: https://raw.githubusercontent.com/DataDog/integrations-extras/master/open_policy_agent/images/msg_facet.png
Expand Down
2 changes: 1 addition & 1 deletion php_opcache/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Need help? Contact [Datadog support][10].

[1]: https://www.php.net/manual/en/book.opcache.php
[2]: https://docs.datadoghq.com/agent/kubernetes/integrations/
[3]: https://docs.datadoghq.com/developers/integrations/new_check_howto/#developer-toolkit
[3]: https://docs.datadoghq.com/developers/integrations/python/
[4]: https://app.datadoghq.com/account/settings#agent
[5]: https://github.com/DataDog/integrations-extras/blob/master/php_opcache/datadog_checks/php_opcache/assets/exporter/opcache-dd-handler.php
[6]: https://github.com/DataDog/integrations-extras/blob/master/php_opcache/datadog_checks/php_opcache/data/conf.yaml.example
Expand Down
2 changes: 1 addition & 1 deletion unifi_console/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,5 @@ Need help? Contact [Datadog support][9].
[7]: https://github.com/DataDog/integrations-extras/blob/master/unifi_console/metadata.csv
[8]: https://github.com/DataDog/integrations-extras/blob/master/unifi_console/assets/service_checks.json
[9]: https://docs.datadoghq.com/help/
[10]: https://docs.datadoghq.com/developers/integrations/new_check_howto/#developer-toolkit
[10]: https://docs.datadoghq.com/developers/integrations/python/
[11]: https://github.com/DataDog/integrations-extras/blob/master/unifi_console/datadog_checks/unifi_console/data/conf.yaml.example