Skip to content

Commit

Permalink
Doc update based on #9340
Browse files Browse the repository at this point in the history
  • Loading branch information
ian28223 committed Jul 26, 2023
1 parent db2c91e commit 6934222
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
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

0 comments on commit 6934222

Please sign in to comment.