Skip to content
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
6 changes: 3 additions & 3 deletions manifests/integrations/mysql.pp
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
# This class will install the necessary configuration for the mysql integration
#
# Parameters:
# $host:
# The host mysql is running on
# $password
# The mysql password for the datadog user
# $host:
# The host mysql is running on
# $user
# The mysql user for the datadog user
# $sock
Expand Down Expand Up @@ -37,8 +37,8 @@
#
#
class datadog_agent::integrations::mysql(
$host = 'localhost',
$password,
$host = 'localhost',
$user = 'datadog',
$sock = undef,
$tags = [],
Expand Down
6 changes: 3 additions & 3 deletions manifests/integrations/pgbouncer.pp
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
# This class will install the necessary configuration for the pgbouncer integration
#
# Parameters:
# $password
# The password for the datadog user
# $host:
# The host pgbouncer is listening on
# $port
# The pgbouncer port number
# $username
# The username for the datadog user
# $password
# The password for the datadog user
# $tags
# Optional array of tags
#
Expand All @@ -25,10 +25,10 @@
#
#
class datadog_agent::integrations::pgbouncer(
$password,
$host = 'localhost',
$port = '6432',
$username = 'datadog',
$password,
$tags = [],
) inherits datadog_agent::params {

Expand Down
6 changes: 3 additions & 3 deletions manifests/integrations/postgres.pp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
# This class will install the necessary configuration for the postgres integration
#
# Parameters:
# $password
# The password for the datadog user
# $host:
# The host postgres is running on
# $dbname
Expand All @@ -11,8 +13,6 @@
# The postgres port number
# $username
# The username for the datadog user
# $password
# The password for the datadog user
# $tags
# Optional array of tags
# $tables
Expand All @@ -31,11 +31,11 @@
#
#
class datadog_agent::integrations::postgres(
$password,
$host = 'localhost',
$dbname = 'postgres',
$port = '5432',
$username = 'datadog',
$password,
$tags = [],
$tables = []
) inherits datadog_agent::params {
Expand Down