이 페이지는 아직 한국어로 제공되지 않으며 번역 작업 중입니다. 번역에 관한 질문이나 의견이 있으시면 언제든지 저희에게 연락해 주십시오.

Run this command on each database host to enable the additional permission needed for the datadog user:

ALTER ROLE datadog INHERIT;

Agent versions prior to 7.49 may be unable to connect to PostgreSQL RDS instances without a configuration change. New RDS instances have a default value of 1 for the rds.force_ssl parameter. In Agent versions prior to 7.49, this causes the following error when the Agent tries to issue queries:

FATAL:  no pg_hba.conf entry for host "HOSTNAME", user "datadog", database "postgres", no encryption

To allow the Agent to connect with SSL, add the following setting to each instance config where host and port are specified:

ssl: allow

Restart the agent after applying this change.

Agent versions prior to 7.50 may attempt to connect to the cloudsqladmin database. This can cause error logs on the database as well as warning logs in the Agent. In order to silence those logs, add cloudsqladmin to the ignore_databases list:

ignore_databases:
  - template%
  - rdsadmin
  - azure_maintenance
  - cloudsqladmin

If using database autodiscovery, also add cloudsqladmin to excluded databases:

  exclude:
   - cloudsqladmin