Skip to content

Commit

Permalink
Update config files
Browse files Browse the repository at this point in the history
  • Loading branch information
ian28223 committed Jun 23, 2021
1 parent 423805c commit a4fda47
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion clickhouse/assets/configuration/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ files:
value:
type: integer
example: 9000
- name: user
- name: username
description: The database user to authenticate as.
value:
type: string
Expand Down
4 changes: 2 additions & 2 deletions clickhouse/datadog_checks/clickhouse/data/conf.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ instances:
#
# port: 9000

## @param user - string - optional - default: default
## @param username - string - optional - default: default
## The database user to authenticate as.
#
# user: default
# username: default

## @param password - string - optional
## The password of `username`.
Expand Down
4 changes: 2 additions & 2 deletions mysql/assets/configuration/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ files:
example: localhost
display_default: null

- name: user
- name: username
description: |
Username used to connect to MySQL.
enabled: true
Expand All @@ -35,7 +35,7 @@ files:
example: datadog
display_default: null

- name: pass
- name: password
description: |
Password associated to the MySQL user.
enabled: true
Expand Down
8 changes: 4 additions & 4 deletions mysql/datadog_checks/mysql/data/conf.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ instances:
#
- host: localhost

## @param user - string - optional
## @param username - string - optional
## Username used to connect to MySQL.
#
user: datadog
username: datadog

## @param pass - string - optional
## @param password - string - optional
## Password associated to the MySQL user.
#
pass: <PASS>
password: <PASSWORD>

## @param port - number - optional - default: 3306
## Port to use when connecting to MySQL.
Expand Down
2 changes: 1 addition & 1 deletion oracle/assets/configuration/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ files:
required: true
value:
type: string
- name: user
- name: username
description: The username for the Datadog user account.
required: true
value:
Expand Down
4 changes: 2 additions & 2 deletions oracle/datadog_checks/oracle/data/conf.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ instances:
#
service_name: <SERVICE_NAME>

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

## @param password - string - required
## The password for the Datadog user account.
Expand Down
2 changes: 1 addition & 1 deletion snowflake/assets/configuration/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ files:
value:
type: string
example: <ACCOUNT>
- name: user
- name: username
required: true
description: Login name for the user.
value:
Expand Down
4 changes: 2 additions & 2 deletions snowflake/datadog_checks/snowflake/data/conf.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ instances:
#
- account: <ACCOUNT>

## @param user - string - required
## @param username - string - required
## Login name for the user.
#
user: <USER>
username: <USER>

## @param password - string - required
## Password for the user
Expand Down
4 changes: 2 additions & 2 deletions supervisord/assets/configuration/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ files:
value:
type: string
example: <SOCKETFILE_PATH>
- name: user
- name: username
description: Required only if a username is configured.
value:
type: string
example: <USERNAME>
- name: pass
- name: password
description: Required only if a password is configured.
value:
type: string
Expand Down
8 changes: 4 additions & 4 deletions supervisord/datadog_checks/supervisord/data/conf.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ instances:
#
# socket: <SOCKETFILE_PATH>

## @param user - string - optional
## @param username - string - optional
## Required only if a username is configured.
#
# user: <USERNAME>
# username: <USERNAME>

## @param pass - string - optional
## @param password - string - optional
## Required only if a password is configured.
#
# pass: <PASSWORD>
# password: <PASSWORD>

## @param proc_regex - list of strings - optional
## Regex pattern[s] matching the names of processes to monitor.
Expand Down

0 comments on commit a4fda47

Please sign in to comment.