Skip to content

Commit a097f2e

Browse files
committed
Merge branch 'dev'
2 parents a3ab75f + 7973ac7 commit a097f2e

36 files changed

+347
-254
lines changed

README.md

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ Supported PostgreSQL versions: 9.5 - 14
2929
- [Build](#build)
3030
- [Installation](#installation)
3131
- [Usage](#usage)
32-
- [Screenshots](#screenshots)
3332
- [Configuration](#configuration)
3433
- [Template creation and upload](#template-creation-and-upload)
3534
- [Run](#run)
@@ -208,22 +207,6 @@ git clone ... && cd mamonsu && python3 setup.py build && python3 setup.py instal
208207
```
209208

210209
## Usage
211-
### Screenshots
212-
213-
<div style="text-align: center">
214-
<p style="display: inline;">
215-
<a href="examples/statistics-1.png">
216-
<img alt="Example 1" src="examples/statistics-1-small.png" />
217-
</a>
218-
<a href="examples/statistics-2.png">
219-
<img alt="Example 2" src="examples/statistics-2-small.png" />
220-
</a>
221-
<a href="examples/statistics-3.png">
222-
<img alt="Example 3" src="examples/statistics-3-small.png" />
223-
</a>
224-
</p>
225-
</div>
226-
227210
### Configuration
228211
1. **Optionally, bootstrap Mamonsu**
229212
If you omit this step, metrics can only be collected on behalf of a superuser, which is not recommended.

documentation/metrics.md

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3689,37 +3689,47 @@ Default config:
36893689
<tr>
36903690
<th>Name</th>
36913691
<td>Delta of total lag for {#APPLICATION_NAME}</td>
3692-
<td>Time elapsed between flushing recent WAL locally and receiving notification that this standby server {#APPLICATION_NAME} has written, flushed and applied</td>
3693-
<td>Time elapsed between flushing recent WAL locally and receiving notification that this standby server {#APPLICATION_NAME} has written and flushed it</td>
3694-
<td>Time elapsed between flushing recent WAL locally and receiving notification that this standby server {#APPLICATION_NAME} has written it</td>
3692+
<td>PostgreSQL WAL Send Lag: Time elapsed sending recent WAL locally on {#APPLICATION_NAME}</td>
3693+
<td>PostgreSQL WAL Receive Lag: Time elapsed between receiving recent WAL locally and receiving notification that this standby server {#APPLICATION_NAME} has flushed it</td>
3694+
<td>PostgreSQL WAL Write Lag: Time elapsed between flushing recent WAL locally and receiving notification that this standby server {#APPLICATION_NAME} has written it</td>
3695+
<td>PostgreSQL WAL Flush Lag: Time elapsed between flushing recent WAL locally and receiving notification that this standby server {#APPLICATION_NAME} has written and flushed it</td>
3696+
<td>PostgreSQL WAL Replay Lag: Time elapsed between flushing recent WAL locally and receiving notification that this standby server {#APPLICATION_NAME} has written, flushed and applied</td>
36953697
</tr>
36963698
<tr>
36973699
<th>Key</th>
36983700
<td>pgsql.replication.total_lag[{#APPLICATION_NAME}]</td>
3699-
<td>pgsql.replication.replay_lag[{#APPLICATION_NAME}]</td>
3700-
<td>pgsql.replication.flush_lag[{#APPLICATION_NAME}]</td>
3701+
<td>pgsql.replication.send_lag[{#APPLICATION_NAME}]</td>
3702+
<td>pgsql.replication.receive_lag[{#APPLICATION_NAME}]</td>
37013703
<td>pgsql.replication.write_lag[{#APPLICATION_NAME}]</td>
3704+
<td>pgsql.replication.flush_lag[{#APPLICATION_NAME}]</td>
3705+
<td>pgsql.replication.replay_lag[{#APPLICATION_NAME}]</td>
37023706
</tr>
37033707
<tr>
37043708
<th>Type</th>
37053709
<td>Numeric (float)</td>
37063710
<td>Numeric (float)</td>
37073711
<td>Numeric (float)</td>
37083712
<td>Numeric (float)</td>
3713+
<td>Numeric (float)</td>
3714+
<td>Numeric (float)</td>
37093715
</tr>
37103716
<tr>
37113717
<th>Units</th>
3712-
<td></td>
3713-
<td>Text</td>
3714-
<td>Text</td>
3715-
<td>Text</td>
3718+
<td>Bytes</td>
3719+
<td>Bytes</td>
3720+
<td>Bytes</td>
3721+
<td>Bytes</td>
3722+
<td>Bytes</td>
3723+
<td>Bytes</td>
37163724
</tr>
37173725
<tr>
37183726
<th>Delta</th>
37193727
<td>As Is</td>
37203728
<td>As Is</td>
37213729
<td>As Is</td>
37223730
<td>As Is</td>
3731+
<td>As Is</td>
3732+
<td>As Is</td>
37233733
</tr>
37243734
</table>
37253735

examples/Mamonsu Dashboard.png

-70.8 KB
Loading

examples/Mamonsu Overview.png

-80.6 KB
Loading
-40.9 KB
Loading

examples/Mamonsu PostgreSQL Locks.png

-104 KB
Loading
-19.1 KB
Loading

examples/Mamonsu PostgreSQL WAL.png

-97.2 KB
Loading

examples/Mamonsu System.png

-19.4 KB
Loading

examples/statistics-1-small.png

-220 KB
Binary file not shown.

0 commit comments

Comments
 (0)