Skip to content

Commit be8d5ae

Browse files
committed
fix: fixed Instance graph names
1 parent a10ac2f commit be8d5ae

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

mamonsu/plugins/pgsql/instance.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Instance(Plugin):
1818
# ('graph name', color, side), units, delta
1919

2020
("xact_commit", "transactions[committed]", "Transactions Committed",
21-
("PoPostgreSQL Instance: Transactions Rate", "578159", 0),
21+
("PostgreSQL Instance: Transactions Rate", "578159", 0),
2222
Plugin.UNITS.none, Plugin.DELTA.speed_per_second),
2323
("blks_hit", "blocks[hit]", "Blocks Hit",
2424
("PostgreSQL Instance: Blocks Rate", "7EB29B", 0),
@@ -34,7 +34,7 @@ class Instance(Plugin):
3434
("PostgreSQL Instance: Events", "3B415A", 0),
3535
Plugin.UNITS.none, Plugin.DELTA.simple_change),
3636
("xact_rollback", "events[xact_rollback]", "Rollback Events",
37-
("PoPostgreSQL Instance: Transactions Rate", "E57862", 0),
37+
("PostgreSQL Instance: Transactions Rate", "E57862", 0),
3838
Plugin.UNITS.none, Plugin.DELTA.speed_per_second),
3939

4040
("temp_bytes", "temp[bytes]", "Temp Bytes Written",
@@ -77,8 +77,8 @@ class Instance(Plugin):
7777
"""
7878

7979
graphs_name = {
80-
"transactions": "PostgreSQL Instance: Blocks Rate",
81-
"blocks": "PoPostgreSQL Instance: Transactions Rate",
80+
"blocks": "PostgreSQL Instance: Blocks Rate",
81+
"transactions": "PostgreSQL Instance: Transactions Rate",
8282
"events": "PostgreSQL Instance: Events",
8383
"temp": "PostgreSQL Instance: Temp Files",
8484
"tuples": "PostgreSQL Instance: Tuples"}

0 commit comments

Comments
 (0)