Skip to content

Commit

Permalink
docs: modify README for new version
Browse files Browse the repository at this point in the history
  • Loading branch information
casperr0 committed Sep 12, 2019
1 parent f255f46 commit f1a47a7
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ Install via pip:
$ pip install mamonsu
NOTE: only for mamonsu 2.3.4

Install from git:

.. code-block:: bash
Expand Down Expand Up @@ -230,11 +228,11 @@ Metrics: PostgreSQL
'PostgreSQL: number of waiting connections': pgsql.connections[waiting]
'PostgreSQL: number of active connections': pgsql.connections[active]
'PostgreSQL: number of idle connections': pgsql.connections[idle]
'PostgreSQL: number of idle connections': pgsql.connections[idle_in_transaction]
'PostgreSQL: number of idle connections': pgsql.connections[idle_in_transaction_aborted]
'PostgreSQL: number of idle connections': pgsql.connections[fastpath_function_call]
'PostgreSQL: number of idle connections': pgsql.connections[disabled]
'PostgreSQL: number of idle connections': pgsql.connections[max_connections]
'PostgreSQL: number of idle in transactions connections': pgsql.connections[idle_in_transaction]
'PostgreSQL: number of idle in transactions aborted connections': pgsql.connections[idle_in_transaction_aborted]
'PostgreSQL: number of fastpath frunction call connections': pgsql.connections[fastpath_function_call]
'PostgreSQL: number of disabled connections': pgsql.connections[disabled]
'PostgreSQL: number of max connections': pgsql.connections[max_connections]
'PostgreSQL: count files in archive_status need to archive': pgsql.archive_command[count_files_to_archive]
'PostgreSQL: size of files need to archive': pgsql.archive_command[size_files_to_archive]
'PostgreSQL: count archived files': pgsql.archive_command[archived_files]
Expand Down

0 comments on commit f1a47a7

Please sign in to comment.