File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33# This class will install the necessary configuration for the mysql integration
44#
55# Parameters:
6- # $host:
7- # The host mysql is running on
86# $password
97# The mysql password for the datadog user
8+ # $host:
9+ # The host mysql is running on
1010# $user
1111# The mysql user for the datadog user
1212# $sock
3737#
3838#
3939class datadog_agent::integrations::mysql (
40- $host = ' localhost' ,
4140 $password,
41+ $host = ' localhost' ,
4242 $user = ' datadog' ,
4343 $sock = undef ,
4444 $tags = [],
Original file line number Diff line number Diff line change 33# This class will install the necessary configuration for the pgbouncer integration
44#
55# Parameters:
6+ # $password
7+ # The password for the datadog user
68# $host:
79# The host pgbouncer is listening on
810# $port
911# The pgbouncer port number
1012# $username
1113# The username for the datadog user
12- # $password
13- # The password for the datadog user
1414# $tags
1515# Optional array of tags
1616#
2525#
2626#
2727class datadog_agent::integrations::pgbouncer (
28+ $password,
2829 $host = ' localhost' ,
2930 $port = ' 6432' ,
3031 $username = ' datadog' ,
31- $password,
3232 $tags = [],
3333) inherits datadog_agent::params {
3434
Original file line number Diff line number Diff line change 33# This class will install the necessary configuration for the postgres integration
44#
55# Parameters:
6+ # $password
7+ # The password for the datadog user
68# $host:
79# The host postgres is running on
810# $dbname
1113# The postgres port number
1214# $username
1315# The username for the datadog user
14- # $password
15- # The password for the datadog user
1616# $tags
1717# Optional array of tags
1818# $tables
4949#
5050#
5151class datadog_agent::integrations::postgres (
52+ $password,
5253 $host = ' localhost' ,
5354 $dbname = ' postgres' ,
5455 $port = ' 5432' ,
5556 $username = ' datadog' ,
56- $password,
5757 $tags = [],
5858 $tables = [],
5959 $custom_metrics = {},
You can’t perform that action at this time.
0 commit comments