diff --git a/storeonce/local/share/check_mk/agents/special/agent_storeonce b/storeonce/2.0/local/share/check_mk/agents/special/agent_storeonce similarity index 100% rename from storeonce/local/share/check_mk/agents/special/agent_storeonce rename to storeonce/2.0/local/share/check_mk/agents/special/agent_storeonce diff --git a/storeonce/local/share/check_mk/checks/storeonce.include b/storeonce/2.0/local/share/check_mk/checks/storeonce.include similarity index 100% rename from storeonce/local/share/check_mk/checks/storeonce.include rename to storeonce/2.0/local/share/check_mk/checks/storeonce.include diff --git a/storeonce/local/share/check_mk/checks/storeonce_clusterinfo b/storeonce/2.0/local/share/check_mk/checks/storeonce_clusterinfo similarity index 100% rename from storeonce/local/share/check_mk/checks/storeonce_clusterinfo rename to storeonce/2.0/local/share/check_mk/checks/storeonce_clusterinfo diff --git a/storeonce/local/share/check_mk/checks/storeonce_servicesets b/storeonce/2.0/local/share/check_mk/checks/storeonce_servicesets similarity index 100% rename from storeonce/local/share/check_mk/checks/storeonce_servicesets rename to storeonce/2.0/local/share/check_mk/checks/storeonce_servicesets diff --git a/storeonce/local/share/check_mk/checks/storeonce_stores b/storeonce/2.0/local/share/check_mk/checks/storeonce_stores similarity index 100% rename from storeonce/local/share/check_mk/checks/storeonce_stores rename to storeonce/2.0/local/share/check_mk/checks/storeonce_stores diff --git a/storeonce/local/share/check_mk/checks/storeonce_stores_team b/storeonce/2.0/local/share/check_mk/checks/storeonce_stores_team similarity index 100% rename from storeonce/local/share/check_mk/checks/storeonce_stores_team rename to storeonce/2.0/local/share/check_mk/checks/storeonce_stores_team diff --git a/storeonce/local/share/check_mk/checks/storeonce_stores_test b/storeonce/2.0/local/share/check_mk/checks/storeonce_stores_test similarity index 100% rename from storeonce/local/share/check_mk/checks/storeonce_stores_test rename to storeonce/2.0/local/share/check_mk/checks/storeonce_stores_test diff --git a/storeonce/2.4/local/lib/python3/cmk/plugins/collection/agent_based/storeonce_stores_team.py b/storeonce/2.4/local/lib/python3/cmk/plugins/collection/agent_based/storeonce_stores_team.py new file mode 100644 index 0000000..34ec232 --- /dev/null +++ b/storeonce/2.4/local/lib/python3/cmk/plugins/collection/agent_based/storeonce_stores_team.py @@ -0,0 +1,67 @@ +#!/usr/bin/env python3 +# This is a modification of CheckMK v2.4.0 storeonce_stores.py to support teams + +from collections.abc import Mapping + +from cmk.agent_based.v1 import check_levels as check_levels_v1 +from cmk.agent_based.v2 import ( + AgentSection, + CheckPlugin, + CheckResult, + DiscoveryResult, + render, + Result, + Service, + State, + StringTable, +) +from cmk.plugins.lib import storeonce + +Section = Mapping[str, Mapping[str, str]] + +def parse_storeonce_stores_team(string_table: StringTable) -> Section: + return { + "Store {} Store {}".format(data["Store ID"], data["Name"]): data + for data in storeonce.parse_storeonce_servicesets(string_table).values() + } + + +agent_section_storeonce_stores_team = AgentSection( + name="storeonce_stores_team", + parse_function=parse_storeonce_stores_team, +) + + +def discover_storeonce_stores_team(section: Section) -> DiscoveryResult: + yield from (Service(item=item) for item in section) + + +def check_storeonce_stores_team(item: str, section: Section) -> CheckResult: + if (values := section.get(item)) is None: + return + + yield Result( + state=storeonce.STATE_MAP[values["Health Level"]], + summary="Status: %s" % values["Status"], + ) + + yield from check_levels_v1( + float(values["Size On Disk"]), metric_name="data_size", label="Size", render_func=render.bytes + ) + + if "Dedupe Ratio" in values: + yield from check_levels_v1( + float(values["Dedupe Ratio"]), metric_name="dedup_rate", label="Dedup ratio" + ) + + description = values.get("Description") + if description: + yield Result(state=State.OK, summary="Description: %s" % description) + + +check_plugin_storeonce_stores_team = CheckPlugin( + name="storeonce_stores_team", + service_name="%s", + discovery_function=discover_storeonce_stores_team, + check_function=check_storeonce_stores_team, +) diff --git a/storeonce/2.4/local/lib/python3/cmk/special_agents/agent_storeonce.py b/storeonce/2.4/local/lib/python3/cmk/special_agents/agent_storeonce.py new file mode 100755 index 0000000..8f1ac2d --- /dev/null +++ b/storeonce/2.4/local/lib/python3/cmk/special_agents/agent_storeonce.py @@ -0,0 +1,9442 @@ +#!/usr/bin/env python3 +# Copyright (C) 2019 Checkmk GmbH - License: GNU General Public License v2 +# This file is part of Checkmk (https://checkmk.com). It is subject to the terms and +# conditions defined in the file COPYING, which is part of this source code package. + +import getopt +import re +import sys +import xml.etree.ElementTree as ET + +import requests +import urllib3 + +from cmk.utils.password_store import replace_passwords + + +def usage(): + sys.stderr.write( + """Check_MK StoreOnce + +USAGE: agent_storeonce [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) + + +# .--defines-------------------------------------------------------------. +# | _ __ _ | +# | __| | ___ / _(_)_ __ ___ ___ | +# | / _` |/ _ \ |_| | '_ \ / _ \/ __| | +# | | (_| | __/ _| | | | | __/\__ \ | +# | \__,_|\___|_| |_|_| |_|\___||___/ | +# | | +# '----------------------------------------------------------------------' + +cluster_xml = """ + + + Information about D2D Clusters + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Appliance NameHPCZ25132LTD
Network Name10.14.66.54
Serial NumberCZ25132LTD
Software Version3.15.1-1636.1
Product ClassHPE StoreOnce 4700 Backup
Total Capacity75952.808613643
Free Space54779.424806667
User Data Stored287270.12052552
Size On Disk18318.204265065
Total Capacity (bytes)75952808613643
Free Space (bytes)54779424806667
User Data Stored (bytes)287270120525521
Size On Disk (bytes)18318204265065
Dedupe Ratio15.682220613369749
Cluster Health Level1
Cluster HealthOK
Cluster StatusRunning
Replication Health Level1
Replication HealthOK
Replication StatusRunning
Uptime Seconds3533210
sysContact
sysLocation
isMixedClusterfalse
+ + + + + + + + + + + + + + + + +
Service Sets
IDHealthURL
11/cluster/servicesets/1
+
+ +""" + +servicesets_xml = """ + + + List of D2D Service Sets + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
ServiceSet ID1
ServiceSet NameService Set 1
ServiceSet AliasSET1
Serial NumberCZ25132LTD01
Software Version3.15.1-1636.1
Product ClassHPE StoreOnce 4700 Backup
Capacity in bytes75952808613643
Free Space in bytes54779424806667
User Data Stored in bytes287270120525521
Size On Disk in bytes18318204265065
Deduplication Ratio15.68222061337
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 Nodehpcz25132ltd
Secondary Node
Active Nodehpcz25132ltd
+ + + + + + + + + + + + + + + +
IP Addresses
IP
10.14.66.54
10.14.86.54
+ + + + + + + + +
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
+
+
+ +""" + +stores_xml = """ + + + List of CAT Stores + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID0
NameVM_WinSrv_Store
DescriptionCatalyst Store for Windows based Server
ServiceSet ID1
Creation Time UTC1434446799
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items348
User Data Stored2084.090996956
Size On Disk638.528567373
Dedupe Ratio3.2
Dedupe Ratio3.2
Creation On2015-06-16T09:26:39Z
Last Modified2015-06-16T09:26:39Z
primaryTransferPolicy0
primaryTransferPolicyStringHigh Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes2084090996956
diskBytes638528567373
numItems348
numDataJobs3080
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID0000014DFBB121BB2954110834BAD600
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id0
dedupe Store URI/cluster/servicesets/1/services/dedupe/stores/0
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID1
NameVM_WinSrv2k12R2_Store
DescriptionCatalyst Store 2
ServiceSet ID1
Creation Time UTC1442488868
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items95
User Data Stored99.525367854
Size On Disk175.128207209
Dedupe Ratio0.5
Dedupe Ratio0.5
Creation On2015-09-17T11:21:08Z
Last Modified2015-09-17T11:21:08Z
primaryTransferPolicy0
primaryTransferPolicyStringHigh Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes99525367854
diskBytes175128207209
numItems95
numDataJobs8636
numOriginCopyJobs3207
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID0000014FDB095E4FF643B037BA9FB700
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id2
dedupe Store URI/cluster/servicesets/1/services/dedupe/stores/2
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID2
NameVM_WinSrv2k8R2_Store
DescriptionCatalyst Store 3
ServiceSet ID1
Creation Time UTC1442488883
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items29
User Data Stored16.717657097
Size On Disk28.496991456
Dedupe Ratio0.5
Dedupe Ratio0.5
Creation On2015-09-17T11:21:23Z
Last Modified2015-09-17T11:21:23Z
primaryTransferPolicy0
primaryTransferPolicyStringHigh Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes16717657097
diskBytes28496991456
numItems29
numDataJobs1816
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID0000014FDB0997E7D25DE43A4D856300
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id3
dedupe Store URI/cluster/servicesets/1/services/dedupe/stores/3
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID3
NameVM_Linux_Store
DescriptionCatalyst Store 4
ServiceSet ID1
Creation Time UTC1442488894
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items61
User Data Stored62.672731874
Size On Disk106.446348195
Dedupe Ratio0.5
Dedupe Ratio0.5
Creation On2015-09-17T11:21:34Z
Last Modified2015-09-17T11:21:34Z
primaryTransferPolicy0
primaryTransferPolicyStringHigh Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes62672731874
diskBytes106446348195
numItems61
numDataJobs3784
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID0000014FDB09C5A025C32042A4D99C00
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id4
dedupe Store URI/cluster/servicesets/1/services/dedupe/stores/4
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID4
NameVM_WinClient_Store
DescriptionCatalyst Store 5
ServiceSet ID1
Creation Time UTC1442488913
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items74
User Data Stored277.369569295
Size On Disk229.196009842
Dedupe Ratio1.2
Dedupe Ratio1.2
Creation On2015-09-17T11:21:53Z
Last Modified2015-09-17T11:21:53Z
primaryTransferPolicy0
primaryTransferPolicyStringHigh Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes277369569295
diskBytes229196009842
numItems74
numDataJobs3568
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID0000014FDB0A0DB33C95755A90D25A00
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id5
dedupe Store URI/cluster/servicesets/1/services/dedupe/stores/5
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID5
NamePhys_WinServ
DescriptionCatalyst Store 6
ServiceSet ID1
Creation Time UTC1442581342
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items31
User Data Stored2122.625736909
Size On Disk369.833222386
Dedupe Ratio5.7
Dedupe Ratio5.7
Creation On2015-09-18T13:02:22Z
Last Modified2015-09-18T13:02:22Z
primaryTransferPolicy0
primaryTransferPolicyStringHigh Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes2122625736909
diskBytes369833222386
numItems31
numDataJobs91
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID0000014FE08C67BEA7EBE4C101853400
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id6
dedupe Store URI/cluster/servicesets/1/services/dedupe/stores/6
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID6
NamePhys_WinServ_Remote
DescriptionCatalyst Store 7
ServiceSet ID1
Creation Time UTC1443423749
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items141
User Data Stored58.827449693
Size On Disk31.820645962
Dedupe Ratio1.8
Dedupe Ratio1.8
Creation On2015-09-28T07:02:29Z
Last Modified2015-09-28T07:02:29Z
primaryTransferPolicy0
primaryTransferPolicyStringHigh Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes58827449693
diskBytes31820645962
numItems141
numDataJobs105
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID0000015012C2852D8255A9740ABD5A00
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id7
dedupe Store URI/cluster/servicesets/1/services/dedupe/stores/7
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID7
NamePhys_MSSQL01
DescriptionMS SQL Server 2014 DB Backup
ServiceSet ID1
Creation Time UTC1446474937
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items85707
User Data Stored20101.830723148
Size On Disk1092.558653605
Dedupe Ratio18.3
Dedupe Ratio18.3
Creation On2015-11-02T14:35:37Z
Last Modified2015-11-02T14:35:37Z
primaryTransferPolicy0
primaryTransferPolicyStringHigh Bandwidth
secondaryTransferPolicy1
secondaryTransferPolicyStringLow Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes20101830723148
diskBytes1092558653605
numItems85707
numDataJobs180818
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID00000150C89FF2A9C31152779D43BA00
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id8
dedupe Store URI/cluster/servicesets/1/services/dedupe/stores/8
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID8
NameDEOKO04_SO1_VM_RH_7
Description
ServiceSet ID1
Creation Time UTC1484824229
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items422
User Data Stored6400.445353789
Size On Disk127.180141151
Dedupe Ratio50.3
Dedupe Ratio50.3
Creation On2017-01-19T11:10:29Z
Last Modified2017-01-19T11:10:29Z
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy0
secondaryTransferPolicyStringHigh Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes6400445353789
diskBytes127180141151
numItems422
numDataJobs422
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID00000159B66BB709A0DCEF0AF3953F30
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id9
dedupe Store URI/cluster/servicesets/1/services/dedupe/stores/9
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID9
NameDEOKO04_SO1_VM_WinSrv_2k8
Description
ServiceSet ID1
Creation Time UTC1484827537
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items1365
User Data Stored22474.17033675
Size On Disk1561.494631172
Dedupe Ratio14.3
Dedupe Ratio14.3
Creation On2017-01-19T12:05:37Z
Last Modified2017-01-19T12:05:37Z
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy0
secondaryTransferPolicyStringHigh Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes22474170336750
diskBytes1561494631172
numItems1365
numDataJobs1365
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID00000159B69E302FA108B25119A0F11B
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id10
dedupe Store URI/cluster/servicesets/1/services/dedupe/stores/10
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID10
NameDEOKO04_SO1_VM_Win_10
Description
ServiceSet ID1
Creation Time UTC1484827546
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items218
User Data Stored1189.033153668
Size On Disk50.45275833
Dedupe Ratio23.5
Dedupe Ratio23.5
Creation On2017-01-19T12:05:46Z
Last Modified2017-01-19T12:05:46Z
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy0
secondaryTransferPolicyStringHigh Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes1189033153668
diskBytes50452758330
numItems218
numDataJobs218
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID00000159B69E53FAB44F8376645AE0BB
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id11
dedupe Store URI/cluster/servicesets/1/services/dedupe/stores/11
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID11
NameDEOKO04_SO1_VM_WinSrv_2k12
Description
ServiceSet ID1
Creation Time UTC1484827555
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items4267
User Data Stored69139.783729574
Size On Disk3227.358905215
Dedupe Ratio21.4
Dedupe Ratio21.4
Creation On2017-01-19T12:05:55Z
Last Modified2017-01-19T12:05:55Z
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy0
secondaryTransferPolicyStringHigh Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes69139783729574
diskBytes3227358905215
numItems4267
numDataJobs4267
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID00000159B69E74D4DF4BED42A325B80C
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id12
dedupe Store URI/cluster/servicesets/1/services/dedupe/stores/12
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID12
NameDEOKO04_SO1_VM_WinSrv_2k16
Description
ServiceSet ID1
Creation Time UTC1484827563
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items0
User Data Stored0.0
Size On Disk0.007095096
Dedupe Ratio0.0
Dedupe Ratio0.0
Creation On2017-01-19T12:06:03Z
Last Modified2017-01-19T12:06:03Z
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy0
secondaryTransferPolicyStringHigh Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes0
diskBytes7095096
numItems0
numDataJobs0
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID00000159B69E947AF483010796F6DC4B
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id13
dedupe Store URI/cluster/servicesets/1/services/dedupe/stores/13
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID13
NameDEOKO04_SO1_VM_Other
Description
ServiceSet ID1
Creation Time UTC1484827573
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items2552
User Data Stored28589.331990787
Size On Disk2356.462353263
Dedupe Ratio12.1
Dedupe Ratio12.1
Creation On2017-01-19T12:06:13Z
Last Modified2017-01-19T12:06:13Z
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy0
secondaryTransferPolicyStringHigh Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes28589331990787
diskBytes2356462353263
numItems2552
numDataJobs2552
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID00000159B69EBE0EA9A4983C8025AE29
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id14
dedupe Store URI/cluster/servicesets/1/services/dedupe/stores/14
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID14
NameDEOKO04_SO1_VM_Win_7
Description
ServiceSet ID1
Creation Time UTC1484827920
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items2722
User Data Stored52060.999707535
Size On Disk2502.105802133
Dedupe Ratio20.8
Dedupe Ratio20.8
Creation On2017-01-19T12:12:00Z
Last Modified2017-01-19T12:12:00Z
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy0
secondaryTransferPolicyStringHigh Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes52060999707535
diskBytes2502105802133
numItems2722
numDataJobs2722
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID00000159B6A408E2E2D2CD5D0CA92425
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id15
dedupe Store URI/cluster/servicesets/1/services/dedupe/stores/15
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID15
NameDEOKO04_SO1_Phys_WinSrv_2k12
Description
ServiceSet ID1
Creation Time UTC1484892749
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items1116
User Data Stored16293.562322478
Size On Disk458.51547515
Dedupe Ratio35.5
Dedupe Ratio35.5
Creation On2017-01-20T06:12:29Z
Last Modified2017-01-20T06:12:29Z
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy0
secondaryTransferPolicyStringHigh Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes16293562322478
diskBytes458515475150
numItems1116
numDataJobs1116
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID00000159BA813D7BB509BF75622EA270
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id16
dedupe Store URI/cluster/servicesets/1/services/dedupe/stores/16
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID16
NameDEOKO04_SO1_Phys_Win_7
Description
ServiceSet ID1
Creation Time UTC1484892767
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items0
User Data Stored0.0
Size On Disk0.007095096
Dedupe Ratio0.0
Dedupe Ratio0.0
Creation On2017-01-20T06:12:47Z
Last Modified2017-01-20T06:12:47Z
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy0
secondaryTransferPolicyStringHigh Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes0
diskBytes7095096
numItems0
numDataJobs0
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID00000159BA8183B0D5724FDD300E4E02
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id17
dedupe Store URI/cluster/servicesets/1/services/dedupe/stores/17
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID17
NameDEOKO04_SO1_Phys_RH_7
Description
ServiceSet ID1
Creation Time UTC1484892787
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items357
User Data Stored13577.956605657
Size On Disk449.735149616
Dedupe Ratio30.1
Dedupe Ratio30.1
Creation On2017-01-20T06:13:07Z
Last Modified2017-01-20T06:13:07Z
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy0
secondaryTransferPolicyStringHigh Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes13577956605657
diskBytes449735149616
numItems357
numDataJobs366
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID00000159BA81D1755AA437291D3425D2
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id18
dedupe Store URI/cluster/servicesets/1/services/dedupe/stores/18
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
Store ID18
NameDEOKO04_SO1_Data_SFS004
Description
ServiceSet ID1
Creation Time UTC1484892807
Health Level1
HealthOK
StatusOnline
Version2
Number Of Catalyst Items54
User Data Stored50725.746348722
Size On Disk4751.0680519
Dedupe Ratio10.6
Dedupe Ratio10.6
Creation On2017-01-20T06:13:27Z
Last Modified2017-01-20T06:13:27Z
primaryTransferPolicy1
primaryTransferPolicyStringLow Bandwidth
secondaryTransferPolicy0
secondaryTransferPolicyStringHigh Bandwidth
userDataSizeLimitBytes0
dedupedDataSizeOnDiskLimitBytes0
dataJobRetentionDays90
inboundCopyJobRetentionDays90
outboundCopyJobRetentionDays90
supportStorageModeVariableBlockDedupetrue
supportStorageModeFixedBlockDedupetrue
supportStorageModeNoDedupetrue
supportWriteSparsefalse
supportWriteInPlacefalse
supportRawReadWritetrue
supportMultipleObjectOpenerstrue
supportMultipleObjectWritesfalse
supportCloneExtenttrue
userBytes50725746348722
diskBytes4751068051900
numItems54
numDataJobs54
numOriginCopyJobs0
numDestinationCopyJobs0
Is onlinetrue
is store encryptedfalse
secure erase mode0
secure erase mode descriptionSecure_Erase_NoPassCount
isTeamedfalse
teamUUID00000159BA8221E31CD32C817AB08657
numTeamMembers0
+ + + + + + + + + + + + + + + + + + +
Dedupe Store
NameValue
dedupe Store Id19
dedupe Store URI/cluster/servicesets/1/services/dedupe/stores/19
+
+
+ +""" + + +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
+
+
+ + +""" +# . + + +def query(url, args_dict, opt_cert): + if not opt_cert: + urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) + response = requests.get( # nosec B113 # BNS:0b0eac + 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) + xml_instance = ET.fromstring(raw_xml) + return xml_instance + + +def process_cluster_info(args_dict, opt_demo, opt_cert): + output_lines = ["<<>>"] + xml_instance = query_cluster_info(args_dict, opt_demo, opt_cert) + tbody = xml_instance.find("body").find("div").find("table").find("tbody") + for child in tbody: + name = child[0].text + value = child[1].text + output_lines.append(f"{name}\t{value}") + return output_lines + + +def query_cluster_info(args_dict, opt_demo, opt_cert): + 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, args_dict, opt_cert) + + +serviceset_ids = set() + + +def process_servicesets(args_dict, opt_demo, opt_cert): + output_lines = ["<<>>"] + xml_instance = query_servicesets(args_dict, opt_demo, opt_cert) + 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_lines.append("[%s]" % serviceset_id) + for child in tbody: + name = child[0].text + value = child[1].text + output_lines.append(f"{name}\t{value}") + return output_lines + + +def query_servicesets(args_dict, opt_demo, opt_cert): + 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, args_dict, opt_cert) + + +def process_stores_info(args_dict, opt_demo, opt_cert): + output_lines = ["<<>>"] + for serviceset_id in serviceset_ids: + xml_instance = query_stores_info(serviceset_id, args_dict, opt_demo, opt_cert) + stores = xml_instance.find("body").find("div") + for element in stores: + tbody = element.find("table").find("tbody") + store_id = tbody[0][1].text + output_lines.append(f"[{serviceset_id}/{store_id}]") + for child in tbody: + name = child[0].text + value = child[1].text + output_lines.append(f"{name}\t{value}") + return output_lines + + +def query_stores_info(serviceset_id, args_dict, opt_demo, opt_cert): + 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, args_dict, opt_cert) + + + + +serviceset_ids_teaming = set() + + +def process_servicesets_teaming(args_dict, opt_demo, opt_cert): + output_lines = ["<<>>"] + xml_instance = query_servicesets_teaming(args_dict, opt_demo, opt_cert) + 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_lines.append("[%s]" % serviceset_id_teaming) + for child in tbody: + name = child[0].text + value = child[1].text + output_lines.append(f"{name}\t{value}") + return output_lines + + +def query_servicesets_teaming(args_dict, opt_demo, opt_cert): + if opt_demo: + # XXX is servicesets_xml really correct here? 2.0 versions used just this though... + 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, args_dict, opt_cert) + + +def process_stores_info_teaming(args_dict, opt_demo, opt_cert): + output_lines = ["<<>>"] + for serviceset_id_teaming in serviceset_ids_teaming: + xml_instance = query_stores_info_teaming(serviceset_id_teaming, args_dict, opt_demo, opt_cert) + stores_teaming = xml_instance.find("body").find("div") + for element in stores_teaming: + tbody = element.find("table").find("tbody") + store_id = tbody[0][1].text + output_lines.append(f"[{serviceset_id_teaming}/{store_id}]") + for child in tbody: + name = child[0].text + value = child[1].text + output_lines.append(f"{name}\t{value}") + return output_lines + + +def query_stores_info_teaming(serviceset_id_teaming, args_dict, opt_demo, opt_cert): + 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/" % serviceset_id_teaming + ) + return query(url, args_dict, opt_cert) + + +def main(sys_argv=None): + if sys_argv is None: + replace_passwords() + sys_argv = sys.argv[1:] + + short_options = "h" + long_options = ["help", "username=", "password=", "address=", "demo", "no-cert-check"] + + try: + opts, _args = getopt.getopt(sys_argv, short_options, long_options) + except getopt.GetoptError as err: + sys.stderr.write("%s\n" % err) + return 1 + + output_lines = [] + 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() + + try: + # Get cluster info + output_lines.extend(process_cluster_info(args_dict, opt_demo, opt_cert)) + + # Get servicesets + output_lines.extend(process_servicesets(args_dict, opt_demo, opt_cert)) + + # Get stores info + output_lines.extend(process_stores_info(args_dict, opt_demo, opt_cert)) + + # Additions on top of CheckMK's version + output_lines.extend(process_servicesets_teaming(args_dict, opt_demo, opt_cert)) + output_lines.extend(process_stores_info_teaming(args_dict, opt_demo, opt_cert)) + + sys.stdout.write("\n".join(output_lines) + "\n") + except Exception as e: + sys.stderr.write("Connection error: %s" % e) + return 1 + return None + + +if __name__ == "__main__": + main() diff --git a/storeonce/2.4/storeonce-2.0.0.mkp b/storeonce/2.4/storeonce-2.0.0.mkp new file mode 100755 index 0000000..8148df0 Binary files /dev/null and b/storeonce/2.4/storeonce-2.0.0.mkp differ diff --git a/storeonce/README.MD b/storeonce/README.MD index afb17e2..194d7ba 100644 --- a/storeonce/README.MD +++ b/storeonce/README.MD @@ -1 +1,4 @@ -the standard check was modified to monitor federated devices also. +The standard check was modified to monitor federated devices also. + +2.0/ appears to be a modification of tree at commit 98fa924ec6a078e8a58ca68ed6052edde81ada56 in the CheckMK repository. +2.4/ is a modification of tree at commit 4abde4a41de677e103561e4fb75b81f6ee8b80dd in the CheckMK repository.