Add database version details to PMM inventory Services
Description
How to test
Add one of the following types of service to monitoring:
PostgreSQL
MongoDB
MySQL
ProxySQL
RDS PostgeSQL or RDS MySQL
Azure PostgreSQL or Azure MySQL
Find the service you just added on the PMM Inventory / Services table
Expand the row - you should see a non-empty version attribute
It's important to test that:
older (< 2.41.0) PMM Agents don't fail and work as before (i.e. they won't be able to detect the version)
How to document
We have added the `version` attribute to the response of the endpoint that provides a list of services being monitored by PMM (i.e. the response of `/v1/management/Service/List`). This will make it easy to visualize the database server version.
The feature is shipped with the following limitations:
the version is not captured for the internal PostgreSQL database (currently version 14.9)
the version is only captured when a new service is being added to PMM and the agent installed on the client side is equal or greater than v2.41.0
upon a database upgrade the user won't see the database version updated automatically unless they remove and then re-add the service.
AFFECTED CS IDs
Attachments
relates to
Activity

vasyl.yurkovych October 24, 2023 at 2:17 PM
verified using server docker - perconalab/pmm-server-fb:PR-3397-987dfa0
client docker - perconalab/pmm-client-fb:PR-3397-987dfa0
client - https://s3.us-east-2.amazonaws.com/pmm-build-cache/PR-BUILDS/pmm2-client/pmm2-client-PR-3397-987dfa0.tar.gz

Alex Demidoff October 20, 2023 at 5:53 PM
I bumped up the version in the regexp - it simply went out of date since this PR didn't make it to 2.40.0.
It's verified on agent versions: 2.41.0, 2.40.0, and 2.36 as per the logs below:
I gave mysql a thorough test because it's special in that the agent must return the table count, while the others don't. However, it's a great idea to test adding other databases as well

vasyl.yurkovych October 11, 2023 at 4:35 PMEdited
User impact:
The user is not able to add any database to monitoring using released pmm-client
Preconditions:
Start PMM Server (perconalab/pmm-server-fb:PR-3397-aecc08f)
Setup pmm-client 2.40.0
Setup Percona server DB
Steps to reproduce:
run pmm-admin add mysql --username={username} --password={password} --port={port}
Actual results:
Internal server error. is shown to the user
Expected result:
The user should see a success message and should see service details.
Note:
attached logs from pmm-server

Alex Demidoff August 1, 2023 at 2:24 PMEdited
A quick note on possible implementation
An ad-hoc investigation revealed that the database engine version is available from metrics. The following metrics are currently provided by the exporters:
mongodb_version_info
mysql_version_info
pg_static
However, when we query the information from the database, we would need to make as many calls to VictoriaMetrics as there are services, which would be too slow on a system with a good number of monitored services. Therefore, from a performance standpoint it would be nice to store the database engine version in the state. To avoid staleness, we can re-query the version from VM whenever an inventory endpoint that mutates the service record is called.
If not the above, then we could ask pmm-agent for the database version. However, it seems like we still need to figure out how pmm-agent can reliably query it from different db engines.
Details
Assignee
Nurlan MoldomurovNurlan MoldomurovReporter
Lalit ChoudharyLalit ChoudharyPriority
MediumComponents
Needs QA
YesNeeds Doc
YesPlanned Version/s
Fix versions
Story Points
7
Details
Details
Assignee

Reporter

Priority
Components
Needs QA
Needs Doc
Planned Version/s
Fix versions
Story Points
Smart Checklist
Open Smart Checklist
Smart Checklist
Open Smart Checklist
Smart Checklist

It's good to have database version details in PMM Invertory --> Services
Currently, it has the below information for database service,