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: 4 additions & 2 deletions src/pmdas/hdb/hdb.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,19 @@
#

[hdb]
# Connection settings must be configured before use

# IP address or DNS name of the SAP HANA service
#host=localhost

# TCP Port the SAP HANA service listens on
#port=39017

# SAP HANA user used for authentication
user=user
#user=CHANGE_ME

# Password of the SAP HANA user
password=password
#password=CHANGE_ME

# Connection timeout in miliSeconds
#connect_timeout=60000
Expand Down
5 changes: 3 additions & 2 deletions src/pmdas/mssql/mssql.conf
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ timeout=2
#https://docs.microsoft.com/en-us/sql/relational-databases/security/choose-an-authentication-mode

# Option 1: Mixed mode authentication
username=sa
password=P4$$W0rd
# username and password must be configured before use
#username=CHANGE_ME
#password=CHANGE_ME

# Option 2: Windows authentication
#trusted=true
Expand Down
5 changes: 3 additions & 2 deletions src/pmdas/oracle/sample.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
$username = 'oastoltp';
$password = 'oastoltp';
# username and password must be configured before use
#$username = 'CHANGE_ME';
#$password = 'CHANGE_ME';
@sids = ( 'oast1' );
$disable_object_cache = 1;

Expand Down
13 changes: 7 additions & 6 deletions src/pmdas/postgresql/pmdapostgresql.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[authentication]
host=local
port=5432
dbname=postgres
user=postgres
password=password
osuser=postgres
# Connection settings must be configured before use
#host=local
#port=5432
#dbname=postgres
#user=CHANGE_ME
#password=CHANGE_ME
#osuser=postgres
5 changes: 3 additions & 2 deletions src/pmdas/rabbitmq/rabbitmq.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Rabbitmq configuration
[pmda]
username = guest
password = guest
# username and password must be configured before use
#username = CHANGE_ME
#password = CHANGE_ME
port = 15672
Loading