Move per-database queries to low resolution

Description

Currently PMM runs 2 heavy queries running for each DB in PostgreSQL server in medium resolution which impacts on performance.
Moving them to low resolution should decrease impact

Suggested implementation:

How to test

  1. Start PMM server

  2. Add PG instance with PMM client from this FB

  3. Go to Explore in PMM server

  4. Select there PostgreSQL

  5. Select Format as Table and Edit SQL

  6. Use this SQL query to get postgres_exporter agent ID: SELECT agent_id FROM agents WHERE agent_type = 'postgres_exporter' AND pmm_agent_id != 'pmm-server';

  7. Go to the pmm client host

  8. Use ps aux | grep postgres_exporter to find the process

  9. Check on what port exporter serves (example: -web.listen-address=127.0.0.1:42003)

  10. Make request `curl -v -u pmm:<agent id> localhost:42003/metrics?collect[]=custom_query.mr`

  11. Check that you don’t have metrics in the response that starts with pg_stat_user_tables and pg_statio_user_tables prefixes

  12. Make request `curl -v -u pmm:<agent id> localhost:42003/metrics?collect[]=custom_query.lr`

  13. Check that metrics with such prefixes are presented

 

If problematic in QA lets plan another v2 patch release (v3 merging withdrawal)

How to document

None

Smart Checklist

hide

Activity

Show:
Done

Details

Assignee

Reporter

Priority

Labels

Needs QA

Yes

Needs Doc

No

Planned Version/s

Fix versions

Story Points

Smart Checklist Progress

Smart Checklist

Created February 6, 2024 at 9:24 AM
Updated August 8, 2024 at 5:01 AM
Resolved March 22, 2024 at 11:29 AM