From ff0b9c92756cb451bdb52de99a0ed3bf1659eab3 Mon Sep 17 00:00:00 2001 From: mpana Date: Mon, 27 Jul 2020 11:55:14 +0300 Subject: [PATCH] lets play together --- checkmk-hitachi-svp/agent_hitachisvp | 6701 ++++++++++++++++++++++++++ hitachi-vsp/README | 6 + hitachi-vsp/agent_hitachivsp | 6701 ++++++++++++++++++++++++++ 3 files changed, 13408 insertions(+) create mode 100644 checkmk-hitachi-svp/agent_hitachisvp create mode 100644 hitachi-vsp/README create mode 100644 hitachi-vsp/agent_hitachivsp diff --git a/checkmk-hitachi-svp/agent_hitachisvp b/checkmk-hitachi-svp/agent_hitachisvp new file mode 100644 index 0000000..c217dd9 --- /dev/null +++ b/checkmk-hitachi-svp/agent_hitachisvp @@ -0,0 +1,6701 @@ +#!/usr/bin/env python +# -*- encoding: utf-8; py-indent-offset: 4 -*- +# +------------------------------------------------------------------+ +# | ____ _ _ __ __ _ __ | +# | / ___| |__ ___ ___| | __ | \/ | |/ / | +# | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / | +# | | |___| | | | __/ (__| < | | | | . \ | +# | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ | +# | | +# | Copyright Mathias Kettner 2014 mk@mathias-kettner.de | +# +------------------------------------------------------------------+ +# +# This file is part of Check_MK. +# The official homepage is at http://mathias-kettner.de/check_mk. +# +# check_mk is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation in version 2. check_mk is distributed +# in the hope that it will be useful, but WITHOUT ANY WARRANTY; with- +# out even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. See the GNU General Public License for more de- +# tails. You should have received a copy of the GNU General Public +# License along with GNU Make; see the file COPYING. If not, write +# to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, +# Boston, MA 02110-1301 USA. + +import re +import sys, getopt +import requests +import xml.etree.ElementTree as ET +from requests.packages.urllib3.exceptions import InsecureRequestWarning + +def usage(): + sys.stderr.write("""Check_MK Hitachi SVP + +USAGE: agent_hitachisvp [OPTIONS] HOST + +OPTIONS: + -h, --help Show this help message and exit + --address Host address + --user Username + --password Password + --no-cert-check Disable certificate check +""") + sys.exit(1) + +short_options = "h" +long_options = ["help", "username=", "password=", "address=", "demo", "no-cert-check"] + +try: + opts, args = getopt.getopt(sys.argv[1:], short_options, long_options) +except getopt.GetoptError, err: + sys.stderr.write("%s\n" % err) + sys.exit(1) + + +opt_demo = False +opt_cert = True +args_dict = {} + +for o,a in opts: + if o in [ "--address" ]: + args_dict["address"] = a + elif o in [ "--username" ]: + args_dict["username"] = a + elif o in [ "--password" ]: + args_dict["password"] = a + elif o in [ "--demo" ]: + opt_demo = True + elif o in [ "--no-cert-check" ]: + opt_cert = False + elif o in [ "-h", "--help" ]: + usage() + + +def query(url): + if opt_cert == False: + requests.packages.urllib3.disable_warnings(InsecureRequestWarning) + response = requests.get(url, auth = (args_dict["username"], args_dict["password"]), verify=opt_cert) + raw_xml = response.text + # Remove namespace nonsense + raw_xml = re.sub(' xmlns="[^"]+"', '', raw_xml, count=1) +# raw_xml = re.sub(' http-equiv="[^"]+"', '', raw_xml, count=1) + xml_instance = ET.fromstring(raw_xml) + return xml_instance + + +output_lines = [] +def output(line): + if type(line) not in [str, unicode]: + output_lines.append(pprint.pformat(line)) + else: + output_lines.append(line) + + +def process_cluster_info(): + output("<<>>") + xml_instance = query_cluster_info() + tbody = xml_instance.find("body").find("div").find("table").find("tbody") + for child in tbody: + name = child[0].text + value = child[1].text + output("%s\t%s" % (name, value)) + + +def query_cluster_info(): + if opt_demo: + raw_xml = re.sub(' xmlns="[^"]+"', '', cluster_xml, count=1) + return ET.fromstring(raw_xml) + url = "https://%(address)s/storeonceservices/cluster/" % args_dict + return query(url) + +serviceset_ids = set() +def process_servicesets(): + output("<<>>") + xml_instance = query_servicesets() + servicesets = xml_instance.find("body").find("div") + for element in servicesets: + tbody = element.find("table").find("tbody") + serviceset_id = tbody[0][1].text + serviceset_ids.add(serviceset_id) + output("[%s]" % serviceset_id) + for child in tbody: + name = child[0].text + value = child[1].text + output("%s\t%s" % (name, value)) + + +def query_servicesets(): + if opt_demo: + raw_xml = re.sub(' xmlns="[^"]+"', '', servicesets_xml, count=1) + return ET.fromstring(raw_xml) + url = "https://%(address)s/storeonceservices/cluster/servicesets/" % args_dict + return query(url) + + +def process_stores_info(): + output("<<>>") + for serviceset_id in serviceset_ids: + xml_instance = query_stores_info(serviceset_id) + stores = xml_instance.find("body").find("div") + for element in stores: + tbody = element.find("table").find("tbody") + store_id = tbody[0][1].text + output("[%s/%s]" % (serviceset_id, store_id)) + serviceset_ids.add(serviceset_id) + for child in tbody: + name = child[0].text + value = child[1].text + output("%s\t%s" % (name, value)) + + +def query_stores_info(serviceset_id): + if opt_demo: + raw_xml = re.sub(' xmlns="[^"]+"', '', stores_xml, count=1) + return ET.fromstring(raw_xml) + + url = "https://%(address)s/storeonceservices/cluster/servicesets/" % args_dict + \ + "%s/services/cat/stores/" % serviceset_id + return query(url) + +serviceset_ids_teaming = set() +def process_servicesets_teaming(): + output("<<>>") + xml_instance = query_servicesets_teaming() + servicesets_teaming = xml_instance.find("body").find("div") + for element in servicesets_teaming: + tbody = element.find("table").find("tbody") + serviceset_id_teaming = tbody[0][1].text + serviceset_ids_teaming.add(serviceset_id_teaming) + output("[%s]" % serviceset_id_teaming) + for child in tbody: + name = child[0].text + value = child[1].text + output("%s\t%s" % (name, value)) + + +def query_servicesets_teaming(): + if opt_demo: + raw_xml = re.sub(' xmlns="[^"]+"', '', servicesets_xml, count=1) + return ET.fromstring(raw_xml) + url = "https://%(address)s/storeonceservices/cluster/servicesets/1/teaming/services/cat/stores" % args_dict + return query(url) + + +def process_stores_info_teaming(): + output("<<>>") + for serviceset_id_teaming in serviceset_ids_teaming: + xml_instance = query_stores_info_teaming(serviceset_id_teaming) + stores = xml_instance.find("body").find("div") + for element in stores: + tbody = element.find("table").find("tbody") + store_id = tbody[0][1].text + output("[%s/%s]" % (serviceset_id_teaming, store_id)) + serviceset_ids_teaming.add(serviceset_id_teaming) + for child in tbody: + name = child[0].text + value = child[1].text + output("%s\t%s" % (name, value)) + + + +def query_stores_info_teaming(serviceset_id): + if opt_demo: + raw_xml = re.sub(' xmlns="[^"]+"', '', stores_xml_teaming, count=1) + return ET.fromstring(raw_xml) + + url = "https://%(address)s/storeonceservices/cluster/servicesets/" % args_dict + \ + "1/teaming/services/cat/stores/%s" % serviceset_id + return query(url) + + + + + +def main(): + try: + # All shares + url_path = "/storeonceservices/version" + servicesets = "/storeonceservices/cluster/servicesets" + + # Get cluster info + process_cluster_info() + + # Get servicesets + process_servicesets() + + # Get stores info + process_stores_info() + + process_servicesets_teaming() + process_stores_info_teaming() + + sys.stdout.write("\n".join(output_lines) + "\n") + except Exception, e: + sys.stderr.write("Connection error: %s" % e) + sys.exit(1) + + + + +cluster_xml = \ +""" + + Information about D2D Clusters + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Appliance Namehp9418820bda3c
Network Name172.16.221.83
Serial Numberhp9418820bda3c
Software Version3.16.3-1730.1
Product ClassHPE StoreOnce 6600 System
Total Capacity546885.56803687
Free Space135188.67951616
User Data Stored2538629.3860592
Size On Disk378247.887631381
Total Capacity (bytes)546885568036864
Free Space (bytes)135188679516160
User Data Stored (bytes)2538629386059199
Size On Disk (bytes)378247887631375
Dedupe Ratio6.71154940733788
Cluster Health Level1
Cluster HealthOK
Cluster StatusRunning
Replication Health Level1
Replication HealthOK
Replication StatusRunning
Uptime Seconds867700
sysContactbackup.ro@orange.com
sysLocationFarm2 - Cluj
isMixedClusterfalse
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Service Sets
IDHealthURL
11/cluster/servicesets/1
21/cluster/servicesets/2
31/cluster/servicesets/3
41/cluster/servicesets/4
+
+ + +""" + + + +servicesets_xml = \ +""" + + List of D2D Service Sets + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
ServiceSet ID1
ServiceSet NameService Set 1
ServiceSet AliasSET1
Serial Numberhp9418820bda3c01
Software Version3.16.3-1730.1
Product ClassHPE StoreOnce 6600 System
Capacity in bytes410164176027648
Free Space in bytes99619047624704
User Data Stored in bytes904317392528578
Size On Disk in bytes124907442222240
Deduplication Ratio7.2399000126796
ServiceSet Health Level1
ServiceSet HealthOK
ServiceSet StatusRunning
Replication Health Level1
Replication HealthOK
Replication StatusRunning
Overall Health Level1
Overall HealthOK
Overall StatusRunning
Housekeeping Health Level1
Housekeeping HealthOK
Housekeeping StatusRunning
Primary Nodehp18820bda3c-1
Secondary Nodehp18820bda3c-2
Active Nodehp18820bda3c-1
+ + + + + + + + + + + + +
IP Addresses
IP
192.168.21.57
+ + + + + + + + +
Status Notes
Message
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Services
TypeHealthURL
VTL1/cluster/servicesets/1/services/vtl
NAS1/cluster/servicesets/1/services/nas
CAT1/cluster/servicesets/1/services/cat
REP1/cluster/servicesets/1/services/rep
RMC-1/cluster/servicesets/1/services/rmc
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
ServiceSet ID2
ServiceSet NameService Set 2
ServiceSet AliasSET2
Serial Numberhp9418820bda3c02
Software Version3.16.3-1730.1
Product ClassHPE StoreOnce 6600 System
Capacity in bytes410164176027648
Free Space in bytes99619047624704
User Data Stored in bytes1254087068152264
Size On Disk in bytes160865344265245
Deduplication Ratio7.7958809206565
ServiceSet Health Level1
ServiceSet HealthOK
ServiceSet StatusRunning
Replication Health Level1
Replication HealthOK
Replication StatusRunning
Overall Health Level1
Overall HealthOK
Overall StatusRunning
Housekeeping Health Level1
Housekeeping HealthOK
Housekeeping StatusRunning
Primary Nodehp18820bda3c-2
Secondary Nodehp18820bda3c-1
Active Nodehp18820bda3c-2
+ + + + + + + + + + + + +
IP Addresses
IP
192.168.21.58
+ + + + + + + + +
Status Notes
Message
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Services
TypeHealthURL
VTL1/cluster/servicesets/2/services/vtl
NAS1/cluster/servicesets/2/services/nas
CAT1/cluster/servicesets/2/services/cat
REP1/cluster/servicesets/2/services/rep
RMC-1/cluster/servicesets/2/services/rmc
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
ServiceSet ID3
ServiceSet NameService Set 3
ServiceSet AliasSET3
Serial Numberhp9418820bda3c03
Software Version3.16.3-1730.1
Product ClassHPE StoreOnce 6600 System
Capacity in bytes136721392009216
Free Space in bytes35627477028864
User Data Stored in bytes119078700209780
Size On Disk in bytes25923599485491
Deduplication Ratio4.5934477685642
ServiceSet Health Level1
ServiceSet HealthOK
ServiceSet StatusRunning
Replication Health Level1
Replication HealthOK
Replication StatusRunning
Overall Health Level1
Overall HealthOK
Overall StatusRunning
Housekeeping Health Level1
Housekeeping HealthOK
Housekeeping StatusRunning
Primary Nodehp18820bda3c-3
Secondary Nodehp18820bda3c-4
Active Nodehp18820bda3c-3
+ + + + + + + + + + + + +
IP Addresses
IP
192.168.21.17
+ + + + + + + + +
Status Notes
Message
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Services
TypeHealthURL
VTL1/cluster/servicesets/3/services/vtl
NAS1/cluster/servicesets/3/services/nas
CAT1/cluster/servicesets/3/services/cat
REP1/cluster/servicesets/3/services/rep
RMC-1/cluster/servicesets/3/services/rmc
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
ServiceSet ID4
ServiceSet NameService Set 4
ServiceSet AliasSET4
Serial Numberhp9418820bda3c04
Software Version3.16.3-1730.1
Product ClassHPE StoreOnce 6600 System
Capacity in bytes136721392009216
Free Space in bytes35627513688064
User Data Stored in bytes250824989076919
Size On Disk in bytes66519153888797
Deduplication Ratio3.7707182730591
ServiceSet Health Level1
ServiceSet HealthOK
ServiceSet StatusRunning
Replication Health Level1
Replication HealthOK
Replication StatusRunning
Overall Health Level1
Overall HealthOK
Overall StatusRunning
Housekeeping Health Level4
Housekeeping HealthCritical
Housekeeping StatusNot complete for >7 days
Primary Nodehp18820bda3c-4
Secondary Nodehp18820bda3c-3
Active Nodehp18820bda3c-4
+ + + + + + + + + + + + +
IP Addresses
IP
192.168.21.18
+ + + + + + + + +
Status Notes
Message
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Services
TypeHealthURL
VTL1/cluster/servicesets/4/services/vtl
NAS1/cluster/servicesets/4/services/nas
CAT1/cluster/servicesets/4/services/cat
REP1/cluster/servicesets/4/services/rep
RMC-1/cluster/servicesets/4/services/rmc
+
+
+ + +""" + +stores_xml = \ +""" + + + List of CAT Stores + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID12
NameVeeam_Store
DescriptionVeeam Store Cj
ServiceSet ID1
Creation Time UTC1485955332
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items2463
User Data Stored70979.755813674
Size On Disk22185.19110316
Dedupe Ratio3.1
Dedupe Ratio3.1
Creation On2017-02-01T13:22:12Z
Last Modified2017-12-19T13:30:30Z
primaryTransferPolicy0
primaryTransferPolicyStringHigh Bandwidth
secondaryTransferPolicy0
secondaryTransferPolicyStringHigh Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes45000000000000
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes70979755813674
diskBytes22185191103160
numItems2463
numDataJobs1397432
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID00000159F9D6FA6A6A1CA953F239138C
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id12
dedupe Store URI/cluster/servicesets/1/services/dedupe/stores/12
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID24
NameRMCV_3
DescriptionBackup Farm1 - Impar DS
ServiceSet ID1
Creation Time UTC1508826923
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items198
User Data Stored316056.79915008
Size On Disk22746.153432612
Dedupe Ratio13.8
Dedupe Ratio13.8
Creation On2017-10-24T06:35:23Z
Last Modified2017-10-24T06:35:23Z
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes316056799150080
diskBytes22746153432612
numItems198
numDataJobs4072
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID0000015F4D17C1B1C02D82884D9DEB04
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id24
dedupe Store URI/cluster/servicesets/1/services/dedupe/stores/24
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0
NameRMC-2
DescriptionBk DS par Farm1
ServiceSet ID2
Creation Time UTC1519230199
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items252
User Data Stored274878.7523584
Size On Disk16489.135000816
Dedupe Ratio16.6
Dedupe Ratio16.6
Creation On2018-02-21T16:23:19Z
Last Modified2018-02-21T16:23:19Z
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes274878752358400
diskBytes16489135000816
numItems252
numDataJobs385
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID00000161B92D24EF0479D854AC17F2A1
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id0
dedupe Store URI/cluster/servicesets/2/services/dedupe/stores/0
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID1
NameRMCV_2
DescriptionBk DS par Farm1
ServiceSet ID4
Creation Time UTC1515400603
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items150
User Data Stored109951.50094336
Size On Disk37939.595676877
Dedupe Ratio2.8
Dedupe Ratio2.8
Creation On2018-01-08T08:36:43Z
Last Modified2018-01-10T17:42:31Z
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes109951500943360
diskBytes37939595676877
numItems150
numDataJobs5682
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID00000160D4EA2623E071883475A9C682
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id1
dedupe Store URI/cluster/servicesets/4/services/dedupe/stores/1
+
+
+ + +""" + +stores_xml_teaming = \ +""" + + List of Teamed Catalyst Stores + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID000001594B2E65E914839B82279B14F9
NameFMS_Store
DescriptionFMS Databases
Creation Time2016-12-22T15:16:16Z
Last Modification Time2016-12-29T15:24:09Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored3291770368
Size On Disk19999172933
Dedupe Ratio0.1
Number Of Items4
Number Of Data Jobs8532
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID000001597324803912EA0A157C1417FB
NameDW_Store
DescriptionDW database store
Creation Time2016-12-22T13:49:01Z
Last Modification Time2017-01-06T09:38:09Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored0
Size On Disk589222895824
Dedupe Ratio0.0
Number Of Items0
Number Of Data Jobs0
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015945C947CF9A1FC94A00F125D6
NameORA_MEDIUM_Store
DescriptionDatabases between 500G and 5T
Creation Time2016-12-22T08:30:48Z
Last Modification Time2016-12-28T14:15:36Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored270638217491872
Size On Disk34990558346210
Dedupe Ratio7.7
Number Of Items38007
Number Of Data Jobs198705
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID00000159452FFE91F1205D30624F6B3C
NameTICH_Store
DescriptionDatabase TICH
Creation Time2016-12-28T11:28:10Z
Last Modification Time2016-12-28T11:28:10Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored44315366129664
Size On Disk5093382800339
Dedupe Ratio8.7
Number Of Items676
Number Of Data Jobs10410
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015945F8C5C599268A84E37AA602
NameARPIN_Store
DescriptionARPIN Database
Creation Time2016-12-28T15:07:28Z
Last Modification Time2016-12-28T16:18:57Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored94049009926144
Size On Disk19833399695183
Dedupe Ratio4.7
Number Of Items128
Number Of Data Jobs0
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015973317C798AAC99334A7D9B20
NameHIST_Store
DescriptionHIST Database
Creation Time2017-01-06T09:52:20Z
Last Modification Time2017-01-06T09:52:20Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored53596324942208
Size On Disk7216835095879
Dedupe Ratio7.4
Number Of Items605
Number Of Data Jobs7558
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015973BED8FB3CC26F2D92BCDF9B
NameFPM_Store
DescriptionFPM Database
Creation Time2017-01-06T12:26:44Z
Last Modification Time2017-01-06T12:26:44Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored100626128175104
Size On Disk5053181148644
Dedupe Ratio19.9
Number Of Items3998
Number Of Data Jobs25638
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015FB4250FFD2B7EC4A788997A31
NameHDW_Store
DescriptionHDW database store
Creation Time2017-02-06T07:21:07Z
Last Modification Time2017-11-13T06:50:49Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored2327326228480
Size On Disk320436576594
Dedupe Ratio7.2
Number Of Items100
Number Of Data Jobs0
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015A1D361AE54FD9797A916443A6
NameMSSQL_Store
DescriptionMSSQL_Databases
Creation Time2017-02-08T10:12:49Z
Last Modification Time2017-02-08T10:12:49Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored177802201444531
Size On Disk5611464184724
Dedupe Ratio31.6
Number Of Items92376
Number Of Data Jobs29898
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015A4B898B0978E39AC679C29E46
NameVAPP_Store
DescriptionVAPP Database
Creation Time2017-02-17T10:06:29Z
Last Modification Time2017-02-17T10:06:29Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored187145140043776
Size On Disk18788543090018
Dedupe Ratio9.9
Number Of Items2044
Number Of Data Jobs5576
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015AA3140E1C5D696993051357B5
NameEBS_REP_Store
DescriptionClone de raportare 5 ani
Creation Time2017-03-06T10:04:45Z
Last Modification Time2017-03-06T10:04:45Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored213399862610176
Size On Disk12372722770821
Dedupe Ratio17.2
Number Of Items3101
Number Of Data Jobs512
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015BA4F89B6636707BCDDE77EA11
NameEBS_Store
DescriptionFederated Catalyst Store 1
Creation Time2017-04-25T11:56:47Z
Last Modification Time2017-04-25T11:56:47Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored19729734434816
Size On Disk2419616568861
Dedupe Ratio8.1
Number Of Items1426
Number Of Data Jobs6564
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015BAF012DF2373CA9B9843943FD
NameSMS_Store
DescriptionFederated Catalyst Store 1
Creation Time2017-04-27T10:42:21Z
Last Modification Time2017-04-27T10:42:21Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored23366172934144
Size On Disk4965345977854
Dedupe Ratio4.7
Number Of Items846
Number Of Data Jobs3658
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015E99031583403621D41DF8AFC6
NameCTI_H_Store
DescriptionCTI_H_Store
Creation Time2017-09-19T07:21:09Z
Last Modification Time2017-09-19T07:21:09Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored0
Size On Disk20744064
Dedupe Ratio0.0
Number Of Items0
Number Of Data Jobs0
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015E99190C3A99B9B0C881B63B56
NameOBRM_Store
DescriptionOBRM_Store
Creation Time2017-09-19T07:45:09Z
Last Modification Time2017-09-19T07:45:09Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored0
Size On Disk20744064
Dedupe Ratio0.0
Number Of Items0
Number Of Data Jobs0
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015E9996AFD3CE23E46336B0C70D
NameRAID_Store
DescriptionRAID_Store
Creation Time2017-09-19T10:02:23Z
Last Modification Time2017-09-19T10:02:23Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored0
Size On Disk20744064
Dedupe Ratio0.0
Number Of Items0
Number Of Data Jobs0
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015E99981B974BD4B5DCE5CC6BA6
NameWEB_Store
DescriptionWEB_Store
Creation Time2017-09-19T10:03:56Z
Last Modification Time2017-09-19T10:03:56Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored262144
Size On Disk34525176
Dedupe Ratio0.0
Number Of Items2
Number Of Data Jobs4
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015F81A27366D19BF32D5D4F5E77
NameAPIN_Store
DescriptionAPIN_Store
Creation Time2017-11-03T11:27:08Z
Last Modification Time2017-11-03T11:27:08Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored0
Size On Disk20744064
Dedupe Ratio0.0
Number Of Items0
Number Of Data Jobs0
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID000001597323CD6C6149489F03CA37DB
NameIFD_Store
DescriptionIFD Database
Creation Time2016-12-27T14:48:51Z
Last Modification Time2017-01-06T09:37:23Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored26330380641880
Size On Disk2199028454764
Dedupe Ratio11.9
Number Of Items1014
Number Of Data Jobs8744
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID000001597325669A0D0E7FD228DA1F97
NameCDM_Store
DescriptionCDM_Database
Creation Time2016-12-22T13:46:57Z
Last Modification Time2017-01-06T09:39:08Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored107260177809408
Size On Disk25048121319933
Dedupe Ratio4.2
Number Of Items20994
Number Of Data Jobs98341
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID000001594EF7D5561836FFC77521DEBB
NameORA_SMALL_Store
DescriptionDatabases less than 500G
Creation Time2016-12-22T08:31:44Z
Last Modification Time2016-12-30T09:03:02Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored85105315804864
Size On Disk8259472516886
Dedupe Ratio10.3
Number Of Items53982
Number Of Data Jobs269827
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015944E75512FAF4DCE0C53B5042
NameDET_Store
DescriptionDET Database
Creation Time2016-12-22T14:07:33Z
Last Modification Time2016-12-28T10:08:48Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored214529888044608
Size On Disk72369417590404
Dedupe Ratio2.9
Number Of Items6293
Number Of Data Jobs36480
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015D509C00246C15E5828450B053
NameNDW_Store2
DescriptionNDW database Store 2
Creation Time2017-07-17T12:53:07Z
Last Modification Time2017-07-17T12:53:07Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored293234243552299
Size On Disk64787183268532
Dedupe Ratio4.5
Number Of Items2384
Number Of Data Jobs50246
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers3,4
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + +""" + +if __name__ == "__main__": + main() + diff --git a/hitachi-vsp/README b/hitachi-vsp/README new file mode 100644 index 0000000..bcfa18c --- /dev/null +++ b/hitachi-vsp/README @@ -0,0 +1,6 @@ +# Checkmk active check for Hitachi SVP + +Tested on models x, x but according to API should work with VSP G130 G/F350 +G/F370 G/F700 G/F900 + + diff --git a/hitachi-vsp/agent_hitachivsp b/hitachi-vsp/agent_hitachivsp new file mode 100644 index 0000000..2411345 --- /dev/null +++ b/hitachi-vsp/agent_hitachivsp @@ -0,0 +1,6701 @@ +#!/usr/bin/env python +# -*- encoding: utf-8; py-indent-offset: 4 -*- +# +------------------------------------------------------------------+ +# | ____ _ _ __ __ _ __ | +# | / ___| |__ ___ ___| | __ | \/ | |/ / | +# | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / | +# | | |___| | | | __/ (__| < | | | | . \ | +# | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ | +# | | +# | Copyright Mathias Kettner 2014 mk@mathias-kettner.de | +# +------------------------------------------------------------------+ +# +# This file is part of Check_MK. +# The official homepage is at http://mathias-kettner.de/check_mk. +# +# check_mk is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation in version 2. check_mk is distributed +# in the hope that it will be useful, but WITHOUT ANY WARRANTY; with- +# out even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. See the GNU General Public License for more de- +# tails. You should have received a copy of the GNU General Public +# License along with GNU Make; see the file COPYING. If not, write +# to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, +# Boston, MA 02110-1301 USA. + +import re +import sys, getopt +import requests +import xml.etree.ElementTree as ET +from requests.packages.urllib3.exceptions import InsecureRequestWarning + +def usage(): + sys.stderr.write("""Check_MK Hitachi VSP + +USAGE: agent_hitachivsp [OPTIONS] HOST + +OPTIONS: + -h, --help Show this help message and exit + --address Host address + --user Username + --password Password + --no-cert-check Disable certificate check +""") + sys.exit(1) + +short_options = "h" +long_options = ["help", "username=", "password=", "address=", "demo", "no-cert-check"] + +try: + opts, args = getopt.getopt(sys.argv[1:], short_options, long_options) +except getopt.GetoptError as err: + sys.stderr.write("%s\n" % err) + sys.exit(1) + + +opt_demo = False +opt_cert = True +args_dict = {} + +for o,a in opts: + if o in [ "--address" ]: + args_dict["address"] = a + elif o in [ "--username" ]: + args_dict["username"] = a + elif o in [ "--password" ]: + args_dict["password"] = a + elif o in [ "--demo" ]: + opt_demo = True + elif o in [ "--no-cert-check" ]: + opt_cert = False + elif o in [ "-h", "--help" ]: + usage() + + +def query(url): + if opt_cert == False: + requests.packages.urllib3.disable_warnings(InsecureRequestWarning) + response = requests.get(url, auth = (args_dict["username"], args_dict["password"]), verify=opt_cert) + raw_xml = response.text + # Remove namespace nonsense + raw_xml = re.sub(' xmlns="[^"]+"', '', raw_xml, count=1) +# raw_xml = re.sub(' http-equiv="[^"]+"', '', raw_xml, count=1) + xml_instance = ET.fromstring(raw_xml) + return xml_instance + + +output_lines = [] +def output(line): + if type(line) not in [str, unicode]: + output_lines.append(pprint.pformat(line)) + else: + output_lines.append(line) + + +def process_cluster_info(): + output("<<>>") + xml_instance = query_cluster_info() + tbody = xml_instance.find("body").find("div").find("table").find("tbody") + for child in tbody: + name = child[0].text + value = child[1].text + output("%s\t%s" % (name, value)) + + +def query_cluster_info(): + if opt_demo: + raw_xml = re.sub(' xmlns="[^"]+"', '', cluster_xml, count=1) + return ET.fromstring(raw_xml) + url = "https://%(address)s/storeonceservices/cluster/" % args_dict + return query(url) + +serviceset_ids = set() +def process_servicesets(): + output("<<>>") + xml_instance = query_servicesets() + servicesets = xml_instance.find("body").find("div") + for element in servicesets: + tbody = element.find("table").find("tbody") + serviceset_id = tbody[0][1].text + serviceset_ids.add(serviceset_id) + output("[%s]" % serviceset_id) + for child in tbody: + name = child[0].text + value = child[1].text + output("%s\t%s" % (name, value)) + + +def query_servicesets(): + if opt_demo: + raw_xml = re.sub(' xmlns="[^"]+"', '', servicesets_xml, count=1) + return ET.fromstring(raw_xml) + url = "https://%(address)s/storeonceservices/cluster/servicesets/" % args_dict + return query(url) + + +def process_stores_info(): + output("<<>>") + for serviceset_id in serviceset_ids: + xml_instance = query_stores_info(serviceset_id) + stores = xml_instance.find("body").find("div") + for element in stores: + tbody = element.find("table").find("tbody") + store_id = tbody[0][1].text + output("[%s/%s]" % (serviceset_id, store_id)) + serviceset_ids.add(serviceset_id) + for child in tbody: + name = child[0].text + value = child[1].text + output("%s\t%s" % (name, value)) + + +def query_stores_info(serviceset_id): + if opt_demo: + raw_xml = re.sub(' xmlns="[^"]+"', '', stores_xml, count=1) + return ET.fromstring(raw_xml) + + url = "https://%(address)s/storeonceservices/cluster/servicesets/" % args_dict + \ + "%s/services/cat/stores/" % serviceset_id + return query(url) + +serviceset_ids_teaming = set() +def process_servicesets_teaming(): + output("<<>>") + xml_instance = query_servicesets_teaming() + servicesets_teaming = xml_instance.find("body").find("div") + for element in servicesets_teaming: + tbody = element.find("table").find("tbody") + serviceset_id_teaming = tbody[0][1].text + serviceset_ids_teaming.add(serviceset_id_teaming) + output("[%s]" % serviceset_id_teaming) + for child in tbody: + name = child[0].text + value = child[1].text + output("%s\t%s" % (name, value)) + + +def query_servicesets_teaming(): + if opt_demo: + raw_xml = re.sub(' xmlns="[^"]+"', '', servicesets_xml, count=1) + return ET.fromstring(raw_xml) + url = "https://%(address)s/storeonceservices/cluster/servicesets/1/teaming/services/cat/stores" % args_dict + return query(url) + + +def process_stores_info_teaming(): + output("<<>>") + for serviceset_id_teaming in serviceset_ids_teaming: + xml_instance = query_stores_info_teaming(serviceset_id_teaming) + stores = xml_instance.find("body").find("div") + for element in stores: + tbody = element.find("table").find("tbody") + store_id = tbody[0][1].text + output("[%s/%s]" % (serviceset_id_teaming, store_id)) + serviceset_ids_teaming.add(serviceset_id_teaming) + for child in tbody: + name = child[0].text + value = child[1].text + output("%s\t%s" % (name, value)) + + + +def query_stores_info_teaming(serviceset_id): + if opt_demo: + raw_xml = re.sub(' xmlns="[^"]+"', '', stores_xml_teaming, count=1) + return ET.fromstring(raw_xml) + + url = "https://%(address)s/storeonceservices/cluster/servicesets/" % args_dict + \ + "1/teaming/services/cat/stores/%s" % serviceset_id + return query(url) + + + + + +def main(): + try: + # All shares + url_path = "/storeonceservices/version" + servicesets = "/storeonceservices/cluster/servicesets" + + # Get cluster info + process_cluster_info() + + # Get servicesets + process_servicesets() + + # Get stores info + process_stores_info() + + process_servicesets_teaming() + process_stores_info_teaming() + + sys.stdout.write("\n".join(output_lines) + "\n") + except Exception, e: + sys.stderr.write("Connection error: %s" % e) + sys.exit(1) + + + + +cluster_xml = \ +""" + + Information about D2D Clusters + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Appliance Namehp9418820bda3c
Network Name172.16.221.83
Serial Numberhp9418820bda3c
Software Version3.16.3-1730.1
Product ClassHPE StoreOnce 6600 System
Total Capacity546885.56803687
Free Space135188.67951616
User Data Stored2538629.3860592
Size On Disk378247.887631381
Total Capacity (bytes)546885568036864
Free Space (bytes)135188679516160
User Data Stored (bytes)2538629386059199
Size On Disk (bytes)378247887631375
Dedupe Ratio6.71154940733788
Cluster Health Level1
Cluster HealthOK
Cluster StatusRunning
Replication Health Level1
Replication HealthOK
Replication StatusRunning
Uptime Seconds867700
sysContactbackup.ro@orange.com
sysLocationFarm2 - Cluj
isMixedClusterfalse
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Service Sets
IDHealthURL
11/cluster/servicesets/1
21/cluster/servicesets/2
31/cluster/servicesets/3
41/cluster/servicesets/4
+
+ + +""" + + + +servicesets_xml = \ +""" + + List of D2D Service Sets + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
ServiceSet ID1
ServiceSet NameService Set 1
ServiceSet AliasSET1
Serial Numberhp9418820bda3c01
Software Version3.16.3-1730.1
Product ClassHPE StoreOnce 6600 System
Capacity in bytes410164176027648
Free Space in bytes99619047624704
User Data Stored in bytes904317392528578
Size On Disk in bytes124907442222240
Deduplication Ratio7.2399000126796
ServiceSet Health Level1
ServiceSet HealthOK
ServiceSet StatusRunning
Replication Health Level1
Replication HealthOK
Replication StatusRunning
Overall Health Level1
Overall HealthOK
Overall StatusRunning
Housekeeping Health Level1
Housekeeping HealthOK
Housekeeping StatusRunning
Primary Nodehp18820bda3c-1
Secondary Nodehp18820bda3c-2
Active Nodehp18820bda3c-1
+ + + + + + + + + + + + +
IP Addresses
IP
192.168.21.57
+ + + + + + + + +
Status Notes
Message
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Services
TypeHealthURL
VTL1/cluster/servicesets/1/services/vtl
NAS1/cluster/servicesets/1/services/nas
CAT1/cluster/servicesets/1/services/cat
REP1/cluster/servicesets/1/services/rep
RMC-1/cluster/servicesets/1/services/rmc
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
ServiceSet ID2
ServiceSet NameService Set 2
ServiceSet AliasSET2
Serial Numberhp9418820bda3c02
Software Version3.16.3-1730.1
Product ClassHPE StoreOnce 6600 System
Capacity in bytes410164176027648
Free Space in bytes99619047624704
User Data Stored in bytes1254087068152264
Size On Disk in bytes160865344265245
Deduplication Ratio7.7958809206565
ServiceSet Health Level1
ServiceSet HealthOK
ServiceSet StatusRunning
Replication Health Level1
Replication HealthOK
Replication StatusRunning
Overall Health Level1
Overall HealthOK
Overall StatusRunning
Housekeeping Health Level1
Housekeeping HealthOK
Housekeeping StatusRunning
Primary Nodehp18820bda3c-2
Secondary Nodehp18820bda3c-1
Active Nodehp18820bda3c-2
+ + + + + + + + + + + + +
IP Addresses
IP
192.168.21.58
+ + + + + + + + +
Status Notes
Message
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Services
TypeHealthURL
VTL1/cluster/servicesets/2/services/vtl
NAS1/cluster/servicesets/2/services/nas
CAT1/cluster/servicesets/2/services/cat
REP1/cluster/servicesets/2/services/rep
RMC-1/cluster/servicesets/2/services/rmc
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
ServiceSet ID3
ServiceSet NameService Set 3
ServiceSet AliasSET3
Serial Numberhp9418820bda3c03
Software Version3.16.3-1730.1
Product ClassHPE StoreOnce 6600 System
Capacity in bytes136721392009216
Free Space in bytes35627477028864
User Data Stored in bytes119078700209780
Size On Disk in bytes25923599485491
Deduplication Ratio4.5934477685642
ServiceSet Health Level1
ServiceSet HealthOK
ServiceSet StatusRunning
Replication Health Level1
Replication HealthOK
Replication StatusRunning
Overall Health Level1
Overall HealthOK
Overall StatusRunning
Housekeeping Health Level1
Housekeeping HealthOK
Housekeeping StatusRunning
Primary Nodehp18820bda3c-3
Secondary Nodehp18820bda3c-4
Active Nodehp18820bda3c-3
+ + + + + + + + + + + + +
IP Addresses
IP
192.168.21.17
+ + + + + + + + +
Status Notes
Message
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Services
TypeHealthURL
VTL1/cluster/servicesets/3/services/vtl
NAS1/cluster/servicesets/3/services/nas
CAT1/cluster/servicesets/3/services/cat
REP1/cluster/servicesets/3/services/rep
RMC-1/cluster/servicesets/3/services/rmc
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
ServiceSet ID4
ServiceSet NameService Set 4
ServiceSet AliasSET4
Serial Numberhp9418820bda3c04
Software Version3.16.3-1730.1
Product ClassHPE StoreOnce 6600 System
Capacity in bytes136721392009216
Free Space in bytes35627513688064
User Data Stored in bytes250824989076919
Size On Disk in bytes66519153888797
Deduplication Ratio3.7707182730591
ServiceSet Health Level1
ServiceSet HealthOK
ServiceSet StatusRunning
Replication Health Level1
Replication HealthOK
Replication StatusRunning
Overall Health Level1
Overall HealthOK
Overall StatusRunning
Housekeeping Health Level4
Housekeeping HealthCritical
Housekeeping StatusNot complete for >7 days
Primary Nodehp18820bda3c-4
Secondary Nodehp18820bda3c-3
Active Nodehp18820bda3c-4
+ + + + + + + + + + + + +
IP Addresses
IP
192.168.21.18
+ + + + + + + + +
Status Notes
Message
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Services
TypeHealthURL
VTL1/cluster/servicesets/4/services/vtl
NAS1/cluster/servicesets/4/services/nas
CAT1/cluster/servicesets/4/services/cat
REP1/cluster/servicesets/4/services/rep
RMC-1/cluster/servicesets/4/services/rmc
+
+
+ + +""" + +stores_xml = \ +""" + + + List of CAT Stores + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID12
NameVeeam_Store
DescriptionVeeam Store Cj
ServiceSet ID1
Creation Time UTC1485955332
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items2463
User Data Stored70979.755813674
Size On Disk22185.19110316
Dedupe Ratio3.1
Dedupe Ratio3.1
Creation On2017-02-01T13:22:12Z
Last Modified2017-12-19T13:30:30Z
primaryTransferPolicy0
primaryTransferPolicyStringHigh Bandwidth
secondaryTransferPolicy0
secondaryTransferPolicyStringHigh Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes45000000000000
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes70979755813674
diskBytes22185191103160
numItems2463
numDataJobs1397432
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID00000159F9D6FA6A6A1CA953F239138C
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id12
dedupe Store URI/cluster/servicesets/1/services/dedupe/stores/12
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID24
NameRMCV_3
DescriptionBackup Farm1 - Impar DS
ServiceSet ID1
Creation Time UTC1508826923
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items198
User Data Stored316056.79915008
Size On Disk22746.153432612
Dedupe Ratio13.8
Dedupe Ratio13.8
Creation On2017-10-24T06:35:23Z
Last Modified2017-10-24T06:35:23Z
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes316056799150080
diskBytes22746153432612
numItems198
numDataJobs4072
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID0000015F4D17C1B1C02D82884D9DEB04
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id24
dedupe Store URI/cluster/servicesets/1/services/dedupe/stores/24
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0
NameRMC-2
DescriptionBk DS par Farm1
ServiceSet ID2
Creation Time UTC1519230199
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items252
User Data Stored274878.7523584
Size On Disk16489.135000816
Dedupe Ratio16.6
Dedupe Ratio16.6
Creation On2018-02-21T16:23:19Z
Last Modified2018-02-21T16:23:19Z
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes274878752358400
diskBytes16489135000816
numItems252
numDataJobs385
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID00000161B92D24EF0479D854AC17F2A1
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id0
dedupe Store URI/cluster/servicesets/2/services/dedupe/stores/0
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID1
NameRMCV_2
DescriptionBk DS par Farm1
ServiceSet ID4
Creation Time UTC1515400603
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items150
User Data Stored109951.50094336
Size On Disk37939.595676877
Dedupe Ratio2.8
Dedupe Ratio2.8
Creation On2018-01-08T08:36:43Z
Last Modified2018-01-10T17:42:31Z
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes109951500943360
diskBytes37939595676877
numItems150
numDataJobs5682
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID00000160D4EA2623E071883475A9C682
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id1
dedupe Store URI/cluster/servicesets/4/services/dedupe/stores/1
+
+
+ + +""" + +stores_xml_teaming = \ +""" + + List of Teamed Catalyst Stores + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID000001594B2E65E914839B82279B14F9
NameFMS_Store
DescriptionFMS Databases
Creation Time2016-12-22T15:16:16Z
Last Modification Time2016-12-29T15:24:09Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored3291770368
Size On Disk19999172933
Dedupe Ratio0.1
Number Of Items4
Number Of Data Jobs8532
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID000001597324803912EA0A157C1417FB
NameDW_Store
DescriptionDW database store
Creation Time2016-12-22T13:49:01Z
Last Modification Time2017-01-06T09:38:09Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored0
Size On Disk589222895824
Dedupe Ratio0.0
Number Of Items0
Number Of Data Jobs0
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015945C947CF9A1FC94A00F125D6
NameORA_MEDIUM_Store
DescriptionDatabases between 500G and 5T
Creation Time2016-12-22T08:30:48Z
Last Modification Time2016-12-28T14:15:36Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored270638217491872
Size On Disk34990558346210
Dedupe Ratio7.7
Number Of Items38007
Number Of Data Jobs198705
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID00000159452FFE91F1205D30624F6B3C
NameTICH_Store
DescriptionDatabase TICH
Creation Time2016-12-28T11:28:10Z
Last Modification Time2016-12-28T11:28:10Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored44315366129664
Size On Disk5093382800339
Dedupe Ratio8.7
Number Of Items676
Number Of Data Jobs10410
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015945F8C5C599268A84E37AA602
NameARPIN_Store
DescriptionARPIN Database
Creation Time2016-12-28T15:07:28Z
Last Modification Time2016-12-28T16:18:57Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored94049009926144
Size On Disk19833399695183
Dedupe Ratio4.7
Number Of Items128
Number Of Data Jobs0
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015973317C798AAC99334A7D9B20
NameHIST_Store
DescriptionHIST Database
Creation Time2017-01-06T09:52:20Z
Last Modification Time2017-01-06T09:52:20Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored53596324942208
Size On Disk7216835095879
Dedupe Ratio7.4
Number Of Items605
Number Of Data Jobs7558
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015973BED8FB3CC26F2D92BCDF9B
NameFPM_Store
DescriptionFPM Database
Creation Time2017-01-06T12:26:44Z
Last Modification Time2017-01-06T12:26:44Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored100626128175104
Size On Disk5053181148644
Dedupe Ratio19.9
Number Of Items3998
Number Of Data Jobs25638
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015FB4250FFD2B7EC4A788997A31
NameHDW_Store
DescriptionHDW database store
Creation Time2017-02-06T07:21:07Z
Last Modification Time2017-11-13T06:50:49Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored2327326228480
Size On Disk320436576594
Dedupe Ratio7.2
Number Of Items100
Number Of Data Jobs0
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015A1D361AE54FD9797A916443A6
NameMSSQL_Store
DescriptionMSSQL_Databases
Creation Time2017-02-08T10:12:49Z
Last Modification Time2017-02-08T10:12:49Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored177802201444531
Size On Disk5611464184724
Dedupe Ratio31.6
Number Of Items92376
Number Of Data Jobs29898
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015A4B898B0978E39AC679C29E46
NameVAPP_Store
DescriptionVAPP Database
Creation Time2017-02-17T10:06:29Z
Last Modification Time2017-02-17T10:06:29Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored187145140043776
Size On Disk18788543090018
Dedupe Ratio9.9
Number Of Items2044
Number Of Data Jobs5576
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015AA3140E1C5D696993051357B5
NameEBS_REP_Store
DescriptionClone de raportare 5 ani
Creation Time2017-03-06T10:04:45Z
Last Modification Time2017-03-06T10:04:45Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored213399862610176
Size On Disk12372722770821
Dedupe Ratio17.2
Number Of Items3101
Number Of Data Jobs512
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015BA4F89B6636707BCDDE77EA11
NameEBS_Store
DescriptionFederated Catalyst Store 1
Creation Time2017-04-25T11:56:47Z
Last Modification Time2017-04-25T11:56:47Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored19729734434816
Size On Disk2419616568861
Dedupe Ratio8.1
Number Of Items1426
Number Of Data Jobs6564
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015BAF012DF2373CA9B9843943FD
NameSMS_Store
DescriptionFederated Catalyst Store 1
Creation Time2017-04-27T10:42:21Z
Last Modification Time2017-04-27T10:42:21Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored23366172934144
Size On Disk4965345977854
Dedupe Ratio4.7
Number Of Items846
Number Of Data Jobs3658
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015E99031583403621D41DF8AFC6
NameCTI_H_Store
DescriptionCTI_H_Store
Creation Time2017-09-19T07:21:09Z
Last Modification Time2017-09-19T07:21:09Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored0
Size On Disk20744064
Dedupe Ratio0.0
Number Of Items0
Number Of Data Jobs0
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015E99190C3A99B9B0C881B63B56
NameOBRM_Store
DescriptionOBRM_Store
Creation Time2017-09-19T07:45:09Z
Last Modification Time2017-09-19T07:45:09Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored0
Size On Disk20744064
Dedupe Ratio0.0
Number Of Items0
Number Of Data Jobs0
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015E9996AFD3CE23E46336B0C70D
NameRAID_Store
DescriptionRAID_Store
Creation Time2017-09-19T10:02:23Z
Last Modification Time2017-09-19T10:02:23Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored0
Size On Disk20744064
Dedupe Ratio0.0
Number Of Items0
Number Of Data Jobs0
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015E99981B974BD4B5DCE5CC6BA6
NameWEB_Store
DescriptionWEB_Store
Creation Time2017-09-19T10:03:56Z
Last Modification Time2017-09-19T10:03:56Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored262144
Size On Disk34525176
Dedupe Ratio0.0
Number Of Items2
Number Of Data Jobs4
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015F81A27366D19BF32D5D4F5E77
NameAPIN_Store
DescriptionAPIN_Store
Creation Time2017-11-03T11:27:08Z
Last Modification Time2017-11-03T11:27:08Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored0
Size On Disk20744064
Dedupe Ratio0.0
Number Of Items0
Number Of Data Jobs0
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID000001597323CD6C6149489F03CA37DB
NameIFD_Store
DescriptionIFD Database
Creation Time2016-12-27T14:48:51Z
Last Modification Time2017-01-06T09:37:23Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored26330380641880
Size On Disk2199028454764
Dedupe Ratio11.9
Number Of Items1014
Number Of Data Jobs8744
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID000001597325669A0D0E7FD228DA1F97
NameCDM_Store
DescriptionCDM_Database
Creation Time2016-12-22T13:46:57Z
Last Modification Time2017-01-06T09:39:08Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored107260177809408
Size On Disk25048121319933
Dedupe Ratio4.2
Number Of Items20994
Number Of Data Jobs98341
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID000001594EF7D5561836FFC77521DEBB
NameORA_SMALL_Store
DescriptionDatabases less than 500G
Creation Time2016-12-22T08:31:44Z
Last Modification Time2016-12-30T09:03:02Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored85105315804864
Size On Disk8259472516886
Dedupe Ratio10.3
Number Of Items53982
Number Of Data Jobs269827
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015944E75512FAF4DCE0C53B5042
NameDET_Store
DescriptionDET Database
Creation Time2016-12-22T14:07:33Z
Last Modification Time2016-12-28T10:08:48Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored214529888044608
Size On Disk72369417590404
Dedupe Ratio2.9
Number Of Items6293
Number Of Data Jobs36480
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers1,2
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0000015D509C00246C15E5828450B053
NameNDW_Store2
DescriptionNDW database Store 2
Creation Time2017-07-17T12:53:07Z
Last Modification Time2017-07-17T12:53:07Z
Health Level1
HealthOk
StatusOnline
Is Onlinetrue
Version2
User Data Stored293234243552299
Size On Disk64787183268532
Dedupe Ratio4.5
Number Of Items2384
Number Of Data Jobs50246
Number Of Outbound Copy Jobs0
Number Of Inbound Copy Jobs0
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
isTeamedtrue
isDegradedfalse
numTeamMembers2
teamMembers3,4
noWriteTeamMembers
offlineTeamMembers
allowAddTeamMemberstrue
allowRemoveTeamMemberstrue
allowDegradedOperationtrue
allowRedundancytrue
+
+
+ + +""" + +if __name__ == "__main__": + main() +