Skip to content

Commit b74efef

Browse files
authored
Merge pull request #224 from postgrespro/MMNS-43-fix-names
Fix parallel metrics names
2 parents 1bf75ca + e5a4bc4 commit b74efef

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

github-actions-tests/tools/zabbix_cli.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ case $i in
1818
shift
1919
;;
2020
--zbx-version=*)
21-
ZBX_version="${i#*=}"
21+
ZBX_VERSION="${i#*=}"
2222
shift
2323
;;
2424
*)

mamonsu/plugins/pgsql/instance.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@ class Instance(Plugin):
7171
Items_pg_18 = [
7272
# key, zbx_key, description,
7373
# ('graph name', color, side), units, delta
74-
("parallel_workers_to_launch", "parallel[instance_to_launch]", "",
74+
("parallel_workers_to_launch", "parallel[instance_to_launch]", "Parallel Workers To Launch",
7575
("PostgreSQL Instance: Parallel Workers To Launch", "00CC00", 0),
7676
Plugin.UNITS.none, Plugin.DELTA.simple_change),
7777

78-
("parallel_workers_launched", "parallel[instance_launched]", "",
78+
("parallel_workers_launched", "parallel[instance_launched]", "Parallel Workers Launched",
7979
("PostgreSQL Instance: Parallel Workers Launched", "00CC00", 0),
8080
Plugin.UNITS.none, Plugin.DELTA.simple_change)
8181
]

0 commit comments

Comments
 (0)