From 5a482cfdd92b823eec118d4db8234a81378ec6a7 Mon Sep 17 00:00:00 2001 From: George Pochiscan Date: Thu, 3 Sep 2020 12:42:56 +0300 Subject: [PATCH] cleaned duplicated info --- hitachi-vsp/share/check_mk/agents/special/agent_hitachivsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hitachi-vsp/share/check_mk/agents/special/agent_hitachivsp b/hitachi-vsp/share/check_mk/agents/special/agent_hitachivsp index 5831ac7..19dec41 100755 --- a/hitachi-vsp/share/check_mk/agents/special/agent_hitachivsp +++ b/hitachi-vsp/share/check_mk/agents/special/agent_hitachivsp @@ -253,7 +253,7 @@ def process_storage_clprs(): full_data = json.loads(raw_json) data = full_data["data"] output("clprId\tcacheMemoryCapacity\tcacheMemoryUsedCapacity\twritePendingDataCapacity\t" - "writePendingDataCapacity\tcacheUsageRate") + "cacheUsageRate") for clpr in data: output("%s\t%s\t%s\t%s\t%s" % (clpr["clprId"], clpr["cacheMemoryCapacity"], clpr["cacheMemoryUsedCapacity"], clpr["writePendingDataCapacity"], clpr["cacheUsageRate"]))