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"]))