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

Doc update based on #9340 #15380

Merged
merged 1 commit into from
Jul 27, 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
8 changes: 4 additions & 4 deletions mysql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ Set [Autodiscovery Integration Templates][11] as Docker labels on your applicati
```yaml
LABEL "com.datadoghq.ad.check_names"='["mysql"]'
LABEL "com.datadoghq.ad.init_configs"='[{}]'
LABEL "com.datadoghq.ad.instances"='[{"server": "%%host%%", "user": "datadog","password": "<UNIQUEPASSWORD>"}]'
LABEL "com.datadoghq.ad.instances"='[{"server": "%%host%%", "username": "datadog","password": "<UNIQUEPASSWORD>"}]'
```

See [Autodiscovery template variables][12] for details on using `<UNIQUEPASSWORD>` as an environment variable instead of a label.
Expand Down Expand Up @@ -278,7 +278,7 @@ metadata:
[
{
"server": "%%host%%",
"user": "datadog",
"username": "datadog",
"password": "<UNIQUEPASSWORD>"
}
]
Expand All @@ -303,7 +303,7 @@ metadata:
"instances": [
{
"server": "%%host%%",
"user": "datadog",
"username": "datadog",
"password": "<UNIQUEPASSWORD>"
}
]
Expand Down Expand Up @@ -357,7 +357,7 @@ Set [Autodiscovery Integrations Templates][11] as Docker labels on your applicat
"dockerLabels": {
"com.datadoghq.ad.check_names": "[\"mysql\"]",
"com.datadoghq.ad.init_configs": "[{}]",
"com.datadoghq.ad.instances": "[{\"server\": \"%%host%%\", \"user\": \"datadog\",\"password\": \"<UNIQUEPASSWORD>\"}]"
"com.datadoghq.ad.instances": "[{\"server\": \"%%host%%\", \"username\": \"datadog\",\"password\": \"<UNIQUEPASSWORD>\"}]"
}
}]
}
Expand Down
10 changes: 5 additions & 5 deletions oracle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,10 +184,10 @@ instances:
#
service_name: "<SERVICE_NAME>"

## @param user - string - required
## @param username - string - required
## The username for the user account.
#
user: <USER>
username: <USER>

## @param password - string - required
## The password for the user account.
Expand Down Expand Up @@ -221,10 +221,10 @@ instances:
#
service_name: "<SERVICE_NAME>"

## @param user - string - required
## @param username - string - required
## The username for the user account.
#
user: <USER>
username: <USER>

## @param password - string - required
## The password for the user account.
Expand Down Expand Up @@ -357,7 +357,7 @@ Create a query configuration to help identify database locks:
instances:
- server: localhost:1521
service_name: orcl11g.us.oracle.com
user: datadog
username: datadog
password: xxxxxxx
jdbc_driver_path: /u01/app/oracle/product/11.2/dbhome_1/jdbc/lib/ojdbc6.jar
tags:
Expand Down
2 changes: 1 addition & 1 deletion supervisord/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ For containerized environments, see the [Autodiscovery Integration Templates][6]
| -------------------- | ------------------------------------------------------------------------------------------------------------------ |
| `<INTEGRATION_NAME>` | `supervisord` |
| `<INIT_CONFIG>` | blank or `{}` |
| `<INSTANCE_CONFIG>` | `{"name":"<SUPERVISORD_SERVER_NAME>", "host":"%%host%%", "port":"9001", "user":"<USERNAME>", "pass":"<PASSWORD>"}` |
| `<INSTANCE_CONFIG>` | `{"name":"<SUPERVISORD_SERVER_NAME>", "host":"%%host%%", "port":"9001", "username":"<USERNAME>", "password":"<PASSWORD>"}` |

<!-- xxz tab xxx -->
<!-- xxz tabs xxx -->
Expand Down