Step 2: Collecting Postgres Configuration:

ARTIFACTORY : What all information needs to be collected from PostgreSQL when debugging performance related issues in Artifactory

AuthorFullName__c
Vignesh Surendrababu
articleNumber
000005835
ft:sourceType
Salesforce
FirstPublishedDate
2023-08-03T11:32:48Z
lastModifiedDate
2023-08-03
VersionNumber
2
Retrieve the Postgres settings either from the postgres.conf file or by executing the following queries:

To collect Full PostgreSQL configuration details:
SELECT * FROM pg_settings;

To collect Less PostgreSQL configuration details:
SHOW ALL;