We'd be glad to welcome you to Percona community which tries to keep the open source open. Percona Monitoring and Management (PMM) is an open source database monitoring solution. It allows you to monitor your databases, different services (HAProxy, ProxySQL and etc) as well as Nodes, Kubernetes clusters and containers. Please check our Documentation for the actual architecture.
- Project repos structure
- API documentation
- Prerequisites
- Submitting a Bug
- Setup your local development environment
- Tests
- Feature Build
- Code Reviews
This project is built from several repositories:
- percona/pmm-managed manages configuration of PMM server components (VictoriaMetrics, Grafana, etc.) and exposes API for that. APIs are used by pmm-admin
- percona-platform/dbaas-controller exposes a simplified API for managing Percona Kubernetes Operators.
- percona/qan-api query analytics API
- percona/pmm-update is a tool for updating packages and OS configuration for PMM
- percona/grafana-dashboards PMM dashboards for database monitoring
- percona-platform/grafana user interface for PMM
- percona/pmm-agent monitoring agent for PMM. Runs exporters, and VMAgent that collects data from exporters and send to VictoriaMetrics
- percona/pmm-admin admin tool for PMM to manage service that should be monitored by PMM
- percona/node_exporter exports machine's metrics
- percona/mysqld_exporter exports MySQL server's metrics
- percona/mongodb_exporter exports MongoDB server's metrics
- percona/postgres_exporter exports PostgreSQL server's metrics
- percona/proxysql_exporter exports ProxySQL server's metrics
- percona/rds_exporter exports metrics from RDS
- percona/azure_exporter exports metrics from Azure
- Percona-Lab/clickhouse_exporter exports metrics from ClickHouse
- percona/percona-toolkit is a collection of advanced command-line tools to perform a variety of MySQL and system tasks that are too difficult or complex to perform manually
You can review the PMM API definition here.
It is generated from our .proto
files using a special OpenAPI v2 tool and additional API
documentation source files which are located in the docs/api/
directory. The
content and structure of these is formatted using Markdown markup
language and published on the
ReadMe.com service.
You can edit the content using your favorite editor (ideally one that supports previewing MarkDown content, e.g. Microsoft Visual Studio Code).
If you need to create a new file, copy one of the existing *.md
documents in
the folder to maintain the overall structure and format.
When choosing a file name, make sure that it reflects the topic or the theme you
are talking about and follow the format of my-topic.md
(no spaces, only
letters and dashes).
Make sure to create a unique slug
for your file, for example: slug: authentication
.
Header rules: in Markdown, the level of a header line is defined by the
number of hash signs, example: ###
would be equivalent to an H3 header. Please
avoid using H1 headers. Your first-level header must be H2. The rest of the
headers can by anything between H3 and H6.
Once you're done, please submit your proposed changes via a GitHub pull request as outlined below.
After the PR has been merged, make sure you can see your contribution live at https://percona-pmm.readme.io/
Before submitting code or documentation contributions, you should first complete the following prerequisites.
Before you can contribute, we kindly ask you to sign our Contributor License Agreement (CLA). You can do this using your GitHub account and one click.
Please make sure to read and agree to our Code of Conduct.
See Submitting Bug Reports in README.md.
Since PMM has a lot of components, we will mention only three big parts of it.
- Clone pmm repository
- Run
make env-up
to start development container. This will be slow on first run, all consequent calls will be order of magnitude faster, because development container will be reused. From time to time it is recommended to perform container rebuild to pull the latest changes, for that runmake env-up-rebuild
. - To run pmm-managed with a new changes just run
make env TARGET="run-managed"
, it updatespmm-managed
running in container.
- Clone pmm repository.
- Navigate to the
/agent
folder in the root of the repository. - Run
make setup-dev
to connect pmm-agent to PMM Server.- This command will register local pmm-agent to PMM Server and generate config file
pmm-agent-dev.yaml
- This command will register local pmm-agent to PMM Server and generate config file
- Once it's connected just use
make run
to run pmm-agent. - To work correctly pmm-agent needs vmagent and exporters installed on the system.
- First option is just install pmm-client using this instrucion https://docs.percona.com/percona-monitoring-and-management/setting-up/client/index.html#install. It will install all exporters as well.
- Another option is to do it manually
- vmagent and exporters can be installed by building each of them or by downloading the pmm-client tarball from percona.com and copying binaries to the exporters_base directory configured in a
pmm-agent-dev.yaml
file. - All paths to exporters binaries are configured in
pmm-agent-dev.yaml
, so they can be changed manually
- vmagent and exporters can be installed by building each of them or by downloading the pmm-client tarball from percona.com and copying binaries to the exporters_base directory configured in a
Exporters by themselves are independent applications, so each of them contains its own README files explaining how to set up a local environment see PMM Client.
See Grafana Dashboards Contribution Guide.
In a PMM we have 3 kind of tests.
The first one is a Unit testing, so we have unit tests in each repository mentioned above. each of repositories has it's own instruction how to run unit tests.
API tests are included into pmm repository and located in api-tests directory. API tests runs against running PMM Server container.
End to End tests are located in pmm-qa repository. They includes UI tests and CLI tests. Please see readme for details on how to run these.
Before proceeding with your first pull request, we highly recommend you to read the following documents:
As a PR created you are responsible to:
- make sure PR is ready (linted, tested and etc)
- make sure it is reviewed (ask for review, ping reviewers and etc)
- make sure it is merged
- merge when it is reviewed and tested
- ask code owners/admins to merge it if merging is blocked for some reason
PMM is quite complex project, it consists from many different repos descibed above. Feature Build (FB) is a way to get changes all together, build them all together, run tests and get client and server containers.
Please see: How to create a feature build
- Provide an easy way to test/accept functionality for PO/PM and QA
- Inform the Developer about Automation Tests results before the code is merged
- (Future) Let the Developers add/modify e2e tests when they change functionality
- Start Feature Build for every feature/improvement you are working on.
- Start PullRequest to percona-lab/pmm-submodules as DRAFT.
- Change the status of Pull Request from Draft to Open ONLY if your changes must be merged to pmm-submodules.
- Include a short explanation in the Long Description field of the Feature in PR for feature build and checkboxes to all related Pull Requests. Check other PRs as examples.
- After all related PRs in feature build are merged you should: a. either close the PR and delete the branch (this is the default option) or b. merge the PR to pmm-submodules repository (please note, this rarely needs to be merged, for example infrastructure changes do)
There are number of approaches for the code review and ownership: Code Ownership (CODEOWNERS), github auto review, PR owner assign ppl that are better fit for the particular code/job.
For more efficient review process we use a mixed approach:
- repos that have CODEOWNERS
- add auto-review-team additionally to CODEOWNERS assigned
- repos that don't have CODEOWNERS
- add auto-review-team
- if you know exactly who should review your code
- add ppl to the review
Team | Description | Members |
---|---|---|
pmm-review-fe | ppl for UI/UX reviews for FrontEnd repos | FE team |
pmm-review-exporters | reviewers for all exporters see PMM Client | Exporters team |
pmm-review-be | Back-End engineers | BE team |
PMM Admins | ppl that could use admins rights to force merge or change repo settings | PMM Admin team |
Once your pull request is merged, you are an official Percona Community Contributor. Welcome to the community!
We're looking forward to your contributions and hope to hear from you soon on our Forums.