Add instructions for Trunk, add PGXN badge (#473)
parent
fdec44af94
commit
c796995e0c
30
README.md
30
README.md
|
@ -1,5 +1,10 @@
|
||||||
[](https://github.com/percona/pg_stat_monitor/actions/workflows/postgresql-12-pgdg-package.yml) [](https://github.com/percona/pg_stat_monitor/actions/workflows/postgresql-13-pgdg-package.yml) [](https://github.com/percona/pg_stat_monitor/actions/workflows/postgresql-14-pgdg-package.yml) [](https://github.com/percona/pg_stat_monitor/actions/workflows/postgresql-15-pgdg-package.yml) [](https://github.com/percona/pg_stat_monitor/actions/workflows/postgresql-16-pgdg-package.yml)
|
[](https://github.com/percona/pg_stat_monitor/actions/workflows/postgresql-12-pgdg-package.yml)
|
||||||
|
[](https://github.com/percona/pg_stat_monitor/actions/workflows/postgresql-13-pgdg-package.yml)
|
||||||
|
[](https://github.com/percona/pg_stat_monitor/actions/workflows/postgresql-14-pgdg-package.yml)
|
||||||
|
[](https://github.com/percona/pg_stat_monitor/actions/workflows/postgresql-15-pgdg-package.yml)
|
||||||
|
[](https://github.com/percona/pg_stat_monitor/actions/workflows/postgresql-16-pgdg-package.yml)
|
||||||
|
|
||||||
|
[](https://badge.fury.io/pg/pg_stat_monitor)
|
||||||
[](https://codecov.io/gh/percona/pg_stat_monitor)
|
[](https://codecov.io/gh/percona/pg_stat_monitor)
|
||||||
[](https://forums.percona.com/)
|
[](https://forums.percona.com/)
|
||||||
# pg_stat_monitor: Query Performance Monitoring Tool for PostgreSQL
|
# pg_stat_monitor: Query Performance Monitoring Tool for PostgreSQL
|
||||||
|
@ -17,6 +22,8 @@
|
||||||
- [Installing from Percona repositories](#installing-from-percona-repositories)
|
- [Installing from Percona repositories](#installing-from-percona-repositories)
|
||||||
- [Installing from PostgreSQL `yum` repositories](#installing-from-postgresql-yum-repositories)
|
- [Installing from PostgreSQL `yum` repositories](#installing-from-postgresql-yum-repositories)
|
||||||
- [Installing from PGXN](#installing-from-pgxn)
|
- [Installing from PGXN](#installing-from-pgxn)
|
||||||
|
- [Installing from Trunk](#installing-from-trunk)
|
||||||
|
- [Installing from sources](#building-from-source)
|
||||||
- [Configuration](#configuration)
|
- [Configuration](#configuration)
|
||||||
- [Setup](#setup)
|
- [Setup](#setup)
|
||||||
- [Building from source](#building-from-source)
|
- [Building from source](#building-from-source)
|
||||||
|
@ -96,10 +103,11 @@ Find the list of supported platforms for `pg_stat_monitor` within [Percona Distr
|
||||||
|
|
||||||
You can install `pg_stat_monitor` from the following sources:
|
You can install `pg_stat_monitor` from the following sources:
|
||||||
|
|
||||||
* [Percona repositories](#installing-from-percona-repositories),
|
* [Percona repositories](#installing-from-percona-repositories)
|
||||||
* [PostgreSQL PGDG yum repositories](#installing-from-postgresql-yum-repositories),
|
* [PostgreSQL PGDG yum repositories](#installing-from-postgresql-yum-repositories)
|
||||||
* [PGXN](#installing-from-pgxn) and
|
* [PGXN](#installing-from-pgxn)
|
||||||
* [source code](#building-from-source).
|
* [Trunk](#installing-from-trunk)
|
||||||
|
* [source code](#building-from-source)
|
||||||
|
|
||||||
|
|
||||||
#### Installing from Percona repositories
|
#### Installing from Percona repositories
|
||||||
|
@ -140,7 +148,7 @@ Replace the `VERSION` variable with the PostgreSQL version you are using (e.g. s
|
||||||
|
|
||||||
#### Installing from PGXN
|
#### Installing from PGXN
|
||||||
|
|
||||||
You can install `pg_stat_monitor` from PGXN (PostgreSQL Extensions Network) using the [PGXN client](https://pgxn.github.io/pgxnclient/).
|
You can install `pg_stat_monitor` from [PGXN (PostgreSQL Extensions Network)](https://pgxn.org/) using the [PGXN client](https://pgxn.github.io/pgxnclient/).
|
||||||
|
|
||||||
Use the following command:
|
Use the following command:
|
||||||
|
|
||||||
|
@ -148,6 +156,16 @@ Use the following command:
|
||||||
pgxn install pg_stat_monitor
|
pgxn install pg_stat_monitor
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Installing from Trunk
|
||||||
|
|
||||||
|
You can install `pg_stat_monitor` from [Trunk (A PostgreSQL Extensions Registry)](https://pgt.dev/) using the [Trunk CLI](https://github.com/tembo-io/trunk?tab=readme-ov-file#installation).
|
||||||
|
|
||||||
|
Use the following command:
|
||||||
|
|
||||||
|
```
|
||||||
|
trunk install pg_stat_monitor
|
||||||
|
```
|
||||||
|
|
||||||
### Configuration
|
### Configuration
|
||||||
|
|
||||||
You can find the configuration parameters of the `pg_stat_monitor` extension in the `pg_settings` view. To change the default configuration, specify new values for the desired parameters using the GUC (Grant Unified Configuration) system. To learn more, refer to the [Configuration parameters](https://docs.percona.com/pg-stat-monitor/configuration.html) section of the documentation.
|
You can find the configuration parameters of the `pg_stat_monitor` extension in the `pg_settings` view. To change the default configuration, specify new values for the desired parameters using the GUC (Grant Unified Configuration) system. To learn more, refer to the [Configuration parameters](https://docs.percona.com/pg-stat-monitor/configuration.html) section of the documentation.
|
||||||
|
|
Loading…
Reference in New Issue