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
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Appliance Name |
+ HPCZ25132LTD |
+
+
+ | Network Name |
+ 10.14.66.54 |
+
+
+ | Serial Number |
+ CZ25132LTD |
+
+
+ | Software Version |
+ 3.15.1-1636.1 |
+
+
+ | Product Class |
+ HPE StoreOnce 4700 Backup |
+
+
+ | Total Capacity |
+ 75952.808613643 |
+
+
+ | Free Space |
+ 54779.424806667 |
+
+
+ | User Data Stored |
+ 287270.12052552 |
+
+
+ | Size On Disk |
+ 18318.204265065 |
+
+
+ | Total Capacity (bytes) |
+ 75952808613643 |
+
+
+ | Free Space (bytes) |
+ 54779424806667 |
+
+
+ | User Data Stored (bytes) |
+ 287270120525521 |
+
+
+ | Size On Disk (bytes) |
+ 18318204265065 |
+
+
+ | Dedupe Ratio |
+ 15.682220613369749 |
+
+
+ | Cluster Health Level |
+ 1 |
+
+
+ | Cluster Health |
+ OK |
+
+
+ | Cluster Status |
+ Running |
+
+
+ | Replication Health Level |
+ 1 |
+
+
+ | Replication Health |
+ OK |
+
+
+ | Replication Status |
+ Running |
+
+
+ | Uptime Seconds |
+ 3533210 |
+
+
+ | sysContact |
+ |
+
+
+ | sysLocation |
+ |
+
+
+ | isMixedCluster |
+ false |
+
+
+
+
+ Service Sets
+
+
+ | ID |
+ Health |
+ URL |
+
+
+
+
+ | 1 |
+ 1 |
+ /cluster/servicesets/1 |
+
+
+
+
+
+"""
+
+servicesets_xml = """
+
+
+ List of D2D Service Sets
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | ServiceSet ID |
+ 1 |
+
+
+ | ServiceSet Name |
+ Service Set 1 |
+
+
+ | ServiceSet Alias |
+ SET1 |
+
+
+ | Serial Number |
+ CZ25132LTD01 |
+
+
+ | Software Version |
+ 3.15.1-1636.1 |
+
+
+ | Product Class |
+ HPE StoreOnce 4700 Backup |
+
+
+ | Capacity in bytes |
+ 75952808613643 |
+
+
+ | Free Space in bytes |
+ 54779424806667 |
+
+
+ | User Data Stored in bytes |
+ 287270120525521 |
+
+
+ | Size On Disk in bytes |
+ 18318204265065 |
+
+
+ | Deduplication Ratio |
+ 15.68222061337 |
+
+
+ | ServiceSet Health Level |
+ 1 |
+
+
+ | ServiceSet Health |
+ OK |
+
+
+ | ServiceSet Status |
+ Running |
+
+
+ | Replication Health Level |
+ 1 |
+
+
+ | Replication Health |
+ OK |
+
+
+ | Replication Status |
+ Running |
+
+
+ | Overall Health Level |
+ 1 |
+
+
+ | Overall Health |
+ OK |
+
+
+ | Overall Status |
+ Running |
+
+
+ | Housekeeping Health Level |
+ 1 |
+
+
+ | Housekeeping Health |
+ OK |
+
+
+ | Housekeeping Status |
+ Running |
+
+
+ | Primary Node |
+ hpcz25132ltd |
+
+
+ | Secondary Node |
+ |
+
+
+ | Active Node |
+ hpcz25132ltd |
+
+
+
+
+ IP Addresses
+
+
+ | IP |
+
+
+
+
+ | 10.14.66.54 |
+
+
+ | 10.14.86.54 |
+
+
+
+
+ Status Notes
+
+
+ | Message |
+
+
+
+
+
+ Services
+
+
+ | Type |
+ Health |
+ URL |
+
+
+
+
+ | VTL |
+ 1 |
+ /cluster/servicesets/1/services/vtl |
+
+
+ | NAS |
+ 1 |
+ /cluster/servicesets/1/services/nas |
+
+
+ | CAT |
+ 1 |
+ /cluster/servicesets/1/services/cat |
+
+
+ | REP |
+ 1 |
+ /cluster/servicesets/1/services/rep |
+
+
+ | RMC |
+ -1 |
+ /cluster/servicesets/1/services/rmc |
+
+
+
+
+
+
+"""
+
+stores_xml = """
+
+
+ List of CAT Stores
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 0 |
+
+
+ | Name |
+ VM_WinSrv_Store |
+
+
+ | Description |
+ Catalyst Store for Windows based Server |
+
+
+ | ServiceSet ID |
+ 1 |
+
+
+ | Creation Time UTC |
+ 1434446799 |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ OK |
+
+
+ | Status |
+ Online |
+
+
+ | Version |
+ 2 |
+
+
+ | Number Of Catalyst Items |
+ 348 |
+
+
+ | User Data Stored |
+ 2084.090996956 |
+
+
+ | Size On Disk |
+ 638.528567373 |
+
+
+ | Dedupe Ratio |
+ 3.2 |
+
+
+ | Dedupe Ratio |
+ 3.2 |
+
+
+ | Creation On |
+ 2015-06-16T09:26:39Z |
+
+
+ | Last Modified |
+ 2015-06-16T09:26:39Z |
+
+
+ | primaryTransferPolicy |
+ 0 |
+
+
+ | primaryTransferPolicyString |
+ High Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | userBytes |
+ 2084090996956 |
+
+
+ | diskBytes |
+ 638528567373 |
+
+
+ | numItems |
+ 348 |
+
+
+ | numDataJobs |
+ 3080 |
+
+
+ | numOriginCopyJobs |
+ 0 |
+
+
+ | numDestinationCopyJobs |
+ 0 |
+
+
+ | Is online |
+ true |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | isTeamed |
+ false |
+
+
+ | teamUUID |
+ 0000014DFBB121BB2954110834BAD600 |
+
+
+ | numTeamMembers |
+ 0 |
+
+
+
+
+ Dedupe Store
+
+
+ | Name |
+ Value |
+
+
+
+
+ | dedupe Store Id |
+ 0 |
+
+
+ | dedupe Store URI |
+ /cluster/servicesets/1/services/dedupe/stores/0 |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 1 |
+
+
+ | Name |
+ VM_WinSrv2k12R2_Store |
+
+
+ | Description |
+ Catalyst Store 2 |
+
+
+ | ServiceSet ID |
+ 1 |
+
+
+ | Creation Time UTC |
+ 1442488868 |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ OK |
+
+
+ | Status |
+ Online |
+
+
+ | Version |
+ 2 |
+
+
+ | Number Of Catalyst Items |
+ 95 |
+
+
+ | User Data Stored |
+ 99.525367854 |
+
+
+ | Size On Disk |
+ 175.128207209 |
+
+
+ | Dedupe Ratio |
+ 0.5 |
+
+
+ | Dedupe Ratio |
+ 0.5 |
+
+
+ | Creation On |
+ 2015-09-17T11:21:08Z |
+
+
+ | Last Modified |
+ 2015-09-17T11:21:08Z |
+
+
+ | primaryTransferPolicy |
+ 0 |
+
+
+ | primaryTransferPolicyString |
+ High Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | userBytes |
+ 99525367854 |
+
+
+ | diskBytes |
+ 175128207209 |
+
+
+ | numItems |
+ 95 |
+
+
+ | numDataJobs |
+ 8636 |
+
+
+ | numOriginCopyJobs |
+ 3207 |
+
+
+ | numDestinationCopyJobs |
+ 0 |
+
+
+ | Is online |
+ true |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | isTeamed |
+ false |
+
+
+ | teamUUID |
+ 0000014FDB095E4FF643B037BA9FB700 |
+
+
+ | numTeamMembers |
+ 0 |
+
+
+
+
+ Dedupe Store
+
+
+ | Name |
+ Value |
+
+
+
+
+ | dedupe Store Id |
+ 2 |
+
+
+ | dedupe Store URI |
+ /cluster/servicesets/1/services/dedupe/stores/2 |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 2 |
+
+
+ | Name |
+ VM_WinSrv2k8R2_Store |
+
+
+ | Description |
+ Catalyst Store 3 |
+
+
+ | ServiceSet ID |
+ 1 |
+
+
+ | Creation Time UTC |
+ 1442488883 |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ OK |
+
+
+ | Status |
+ Online |
+
+
+ | Version |
+ 2 |
+
+
+ | Number Of Catalyst Items |
+ 29 |
+
+
+ | User Data Stored |
+ 16.717657097 |
+
+
+ | Size On Disk |
+ 28.496991456 |
+
+
+ | Dedupe Ratio |
+ 0.5 |
+
+
+ | Dedupe Ratio |
+ 0.5 |
+
+
+ | Creation On |
+ 2015-09-17T11:21:23Z |
+
+
+ | Last Modified |
+ 2015-09-17T11:21:23Z |
+
+
+ | primaryTransferPolicy |
+ 0 |
+
+
+ | primaryTransferPolicyString |
+ High Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | userBytes |
+ 16717657097 |
+
+
+ | diskBytes |
+ 28496991456 |
+
+
+ | numItems |
+ 29 |
+
+
+ | numDataJobs |
+ 1816 |
+
+
+ | numOriginCopyJobs |
+ 0 |
+
+
+ | numDestinationCopyJobs |
+ 0 |
+
+
+ | Is online |
+ true |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | isTeamed |
+ false |
+
+
+ | teamUUID |
+ 0000014FDB0997E7D25DE43A4D856300 |
+
+
+ | numTeamMembers |
+ 0 |
+
+
+
+
+ Dedupe Store
+
+
+ | Name |
+ Value |
+
+
+
+
+ | dedupe Store Id |
+ 3 |
+
+
+ | dedupe Store URI |
+ /cluster/servicesets/1/services/dedupe/stores/3 |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 3 |
+
+
+ | Name |
+ VM_Linux_Store |
+
+
+ | Description |
+ Catalyst Store 4 |
+
+
+ | ServiceSet ID |
+ 1 |
+
+
+ | Creation Time UTC |
+ 1442488894 |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ OK |
+
+
+ | Status |
+ Online |
+
+
+ | Version |
+ 2 |
+
+
+ | Number Of Catalyst Items |
+ 61 |
+
+
+ | User Data Stored |
+ 62.672731874 |
+
+
+ | Size On Disk |
+ 106.446348195 |
+
+
+ | Dedupe Ratio |
+ 0.5 |
+
+
+ | Dedupe Ratio |
+ 0.5 |
+
+
+ | Creation On |
+ 2015-09-17T11:21:34Z |
+
+
+ | Last Modified |
+ 2015-09-17T11:21:34Z |
+
+
+ | primaryTransferPolicy |
+ 0 |
+
+
+ | primaryTransferPolicyString |
+ High Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | userBytes |
+ 62672731874 |
+
+
+ | diskBytes |
+ 106446348195 |
+
+
+ | numItems |
+ 61 |
+
+
+ | numDataJobs |
+ 3784 |
+
+
+ | numOriginCopyJobs |
+ 0 |
+
+
+ | numDestinationCopyJobs |
+ 0 |
+
+
+ | Is online |
+ true |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | isTeamed |
+ false |
+
+
+ | teamUUID |
+ 0000014FDB09C5A025C32042A4D99C00 |
+
+
+ | numTeamMembers |
+ 0 |
+
+
+
+
+ Dedupe Store
+
+
+ | Name |
+ Value |
+
+
+
+
+ | dedupe Store Id |
+ 4 |
+
+
+ | dedupe Store URI |
+ /cluster/servicesets/1/services/dedupe/stores/4 |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 4 |
+
+
+ | Name |
+ VM_WinClient_Store |
+
+
+ | Description |
+ Catalyst Store 5 |
+
+
+ | ServiceSet ID |
+ 1 |
+
+
+ | Creation Time UTC |
+ 1442488913 |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ OK |
+
+
+ | Status |
+ Online |
+
+
+ | Version |
+ 2 |
+
+
+ | Number Of Catalyst Items |
+ 74 |
+
+
+ | User Data Stored |
+ 277.369569295 |
+
+
+ | Size On Disk |
+ 229.196009842 |
+
+
+ | Dedupe Ratio |
+ 1.2 |
+
+
+ | Dedupe Ratio |
+ 1.2 |
+
+
+ | Creation On |
+ 2015-09-17T11:21:53Z |
+
+
+ | Last Modified |
+ 2015-09-17T11:21:53Z |
+
+
+ | primaryTransferPolicy |
+ 0 |
+
+
+ | primaryTransferPolicyString |
+ High Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | userBytes |
+ 277369569295 |
+
+
+ | diskBytes |
+ 229196009842 |
+
+
+ | numItems |
+ 74 |
+
+
+ | numDataJobs |
+ 3568 |
+
+
+ | numOriginCopyJobs |
+ 0 |
+
+
+ | numDestinationCopyJobs |
+ 0 |
+
+
+ | Is online |
+ true |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | isTeamed |
+ false |
+
+
+ | teamUUID |
+ 0000014FDB0A0DB33C95755A90D25A00 |
+
+
+ | numTeamMembers |
+ 0 |
+
+
+
+
+ Dedupe Store
+
+
+ | Name |
+ Value |
+
+
+
+
+ | dedupe Store Id |
+ 5 |
+
+
+ | dedupe Store URI |
+ /cluster/servicesets/1/services/dedupe/stores/5 |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 5 |
+
+
+ | Name |
+ Phys_WinServ |
+
+
+ | Description |
+ Catalyst Store 6 |
+
+
+ | ServiceSet ID |
+ 1 |
+
+
+ | Creation Time UTC |
+ 1442581342 |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ OK |
+
+
+ | Status |
+ Online |
+
+
+ | Version |
+ 2 |
+
+
+ | Number Of Catalyst Items |
+ 31 |
+
+
+ | User Data Stored |
+ 2122.625736909 |
+
+
+ | Size On Disk |
+ 369.833222386 |
+
+
+ | Dedupe Ratio |
+ 5.7 |
+
+
+ | Dedupe Ratio |
+ 5.7 |
+
+
+ | Creation On |
+ 2015-09-18T13:02:22Z |
+
+
+ | Last Modified |
+ 2015-09-18T13:02:22Z |
+
+
+ | primaryTransferPolicy |
+ 0 |
+
+
+ | primaryTransferPolicyString |
+ High Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | userBytes |
+ 2122625736909 |
+
+
+ | diskBytes |
+ 369833222386 |
+
+
+ | numItems |
+ 31 |
+
+
+ | numDataJobs |
+ 91 |
+
+
+ | numOriginCopyJobs |
+ 0 |
+
+
+ | numDestinationCopyJobs |
+ 0 |
+
+
+ | Is online |
+ true |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | isTeamed |
+ false |
+
+
+ | teamUUID |
+ 0000014FE08C67BEA7EBE4C101853400 |
+
+
+ | numTeamMembers |
+ 0 |
+
+
+
+
+ Dedupe Store
+
+
+ | Name |
+ Value |
+
+
+
+
+ | dedupe Store Id |
+ 6 |
+
+
+ | dedupe Store URI |
+ /cluster/servicesets/1/services/dedupe/stores/6 |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 6 |
+
+
+ | Name |
+ Phys_WinServ_Remote |
+
+
+ | Description |
+ Catalyst Store 7 |
+
+
+ | ServiceSet ID |
+ 1 |
+
+
+ | Creation Time UTC |
+ 1443423749 |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ OK |
+
+
+ | Status |
+ Online |
+
+
+ | Version |
+ 2 |
+
+
+ | Number Of Catalyst Items |
+ 141 |
+
+
+ | User Data Stored |
+ 58.827449693 |
+
+
+ | Size On Disk |
+ 31.820645962 |
+
+
+ | Dedupe Ratio |
+ 1.8 |
+
+
+ | Dedupe Ratio |
+ 1.8 |
+
+
+ | Creation On |
+ 2015-09-28T07:02:29Z |
+
+
+ | Last Modified |
+ 2015-09-28T07:02:29Z |
+
+
+ | primaryTransferPolicy |
+ 0 |
+
+
+ | primaryTransferPolicyString |
+ High Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | userBytes |
+ 58827449693 |
+
+
+ | diskBytes |
+ 31820645962 |
+
+
+ | numItems |
+ 141 |
+
+
+ | numDataJobs |
+ 105 |
+
+
+ | numOriginCopyJobs |
+ 0 |
+
+
+ | numDestinationCopyJobs |
+ 0 |
+
+
+ | Is online |
+ true |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | isTeamed |
+ false |
+
+
+ | teamUUID |
+ 0000015012C2852D8255A9740ABD5A00 |
+
+
+ | numTeamMembers |
+ 0 |
+
+
+
+
+ Dedupe Store
+
+
+ | Name |
+ Value |
+
+
+
+
+ | dedupe Store Id |
+ 7 |
+
+
+ | dedupe Store URI |
+ /cluster/servicesets/1/services/dedupe/stores/7 |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 7 |
+
+
+ | Name |
+ Phys_MSSQL01 |
+
+
+ | Description |
+ MS SQL Server 2014 DB Backup |
+
+
+ | ServiceSet ID |
+ 1 |
+
+
+ | Creation Time UTC |
+ 1446474937 |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ OK |
+
+
+ | Status |
+ Online |
+
+
+ | Version |
+ 2 |
+
+
+ | Number Of Catalyst Items |
+ 85707 |
+
+
+ | User Data Stored |
+ 20101.830723148 |
+
+
+ | Size On Disk |
+ 1092.558653605 |
+
+
+ | Dedupe Ratio |
+ 18.3 |
+
+
+ | Dedupe Ratio |
+ 18.3 |
+
+
+ | Creation On |
+ 2015-11-02T14:35:37Z |
+
+
+ | Last Modified |
+ 2015-11-02T14:35:37Z |
+
+
+ | primaryTransferPolicy |
+ 0 |
+
+
+ | primaryTransferPolicyString |
+ High Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | userBytes |
+ 20101830723148 |
+
+
+ | diskBytes |
+ 1092558653605 |
+
+
+ | numItems |
+ 85707 |
+
+
+ | numDataJobs |
+ 180818 |
+
+
+ | numOriginCopyJobs |
+ 0 |
+
+
+ | numDestinationCopyJobs |
+ 0 |
+
+
+ | Is online |
+ true |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | isTeamed |
+ false |
+
+
+ | teamUUID |
+ 00000150C89FF2A9C31152779D43BA00 |
+
+
+ | numTeamMembers |
+ 0 |
+
+
+
+
+ Dedupe Store
+
+
+ | Name |
+ Value |
+
+
+
+
+ | dedupe Store Id |
+ 8 |
+
+
+ | dedupe Store URI |
+ /cluster/servicesets/1/services/dedupe/stores/8 |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 8 |
+
+
+ | Name |
+ DEOKO04_SO1_VM_RH_7 |
+
+
+ | Description |
+ |
+
+
+ | ServiceSet ID |
+ 1 |
+
+
+ | Creation Time UTC |
+ 1484824229 |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ OK |
+
+
+ | Status |
+ Online |
+
+
+ | Version |
+ 2 |
+
+
+ | Number Of Catalyst Items |
+ 422 |
+
+
+ | User Data Stored |
+ 6400.445353789 |
+
+
+ | Size On Disk |
+ 127.180141151 |
+
+
+ | Dedupe Ratio |
+ 50.3 |
+
+
+ | Dedupe Ratio |
+ 50.3 |
+
+
+ | Creation On |
+ 2017-01-19T11:10:29Z |
+
+
+ | Last Modified |
+ 2017-01-19T11:10:29Z |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 0 |
+
+
+ | secondaryTransferPolicyString |
+ High Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | userBytes |
+ 6400445353789 |
+
+
+ | diskBytes |
+ 127180141151 |
+
+
+ | numItems |
+ 422 |
+
+
+ | numDataJobs |
+ 422 |
+
+
+ | numOriginCopyJobs |
+ 0 |
+
+
+ | numDestinationCopyJobs |
+ 0 |
+
+
+ | Is online |
+ true |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | isTeamed |
+ false |
+
+
+ | teamUUID |
+ 00000159B66BB709A0DCEF0AF3953F30 |
+
+
+ | numTeamMembers |
+ 0 |
+
+
+
+
+ Dedupe Store
+
+
+ | Name |
+ Value |
+
+
+
+
+ | dedupe Store Id |
+ 9 |
+
+
+ | dedupe Store URI |
+ /cluster/servicesets/1/services/dedupe/stores/9 |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 9 |
+
+
+ | Name |
+ DEOKO04_SO1_VM_WinSrv_2k8 |
+
+
+ | Description |
+ |
+
+
+ | ServiceSet ID |
+ 1 |
+
+
+ | Creation Time UTC |
+ 1484827537 |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ OK |
+
+
+ | Status |
+ Online |
+
+
+ | Version |
+ 2 |
+
+
+ | Number Of Catalyst Items |
+ 1365 |
+
+
+ | User Data Stored |
+ 22474.17033675 |
+
+
+ | Size On Disk |
+ 1561.494631172 |
+
+
+ | Dedupe Ratio |
+ 14.3 |
+
+
+ | Dedupe Ratio |
+ 14.3 |
+
+
+ | Creation On |
+ 2017-01-19T12:05:37Z |
+
+
+ | Last Modified |
+ 2017-01-19T12:05:37Z |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 0 |
+
+
+ | secondaryTransferPolicyString |
+ High Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | userBytes |
+ 22474170336750 |
+
+
+ | diskBytes |
+ 1561494631172 |
+
+
+ | numItems |
+ 1365 |
+
+
+ | numDataJobs |
+ 1365 |
+
+
+ | numOriginCopyJobs |
+ 0 |
+
+
+ | numDestinationCopyJobs |
+ 0 |
+
+
+ | Is online |
+ true |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | isTeamed |
+ false |
+
+
+ | teamUUID |
+ 00000159B69E302FA108B25119A0F11B |
+
+
+ | numTeamMembers |
+ 0 |
+
+
+
+
+ Dedupe Store
+
+
+ | Name |
+ Value |
+
+
+
+
+ | dedupe Store Id |
+ 10 |
+
+
+ | dedupe Store URI |
+ /cluster/servicesets/1/services/dedupe/stores/10 |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 10 |
+
+
+ | Name |
+ DEOKO04_SO1_VM_Win_10 |
+
+
+ | Description |
+ |
+
+
+ | ServiceSet ID |
+ 1 |
+
+
+ | Creation Time UTC |
+ 1484827546 |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ OK |
+
+
+ | Status |
+ Online |
+
+
+ | Version |
+ 2 |
+
+
+ | Number Of Catalyst Items |
+ 218 |
+
+
+ | User Data Stored |
+ 1189.033153668 |
+
+
+ | Size On Disk |
+ 50.45275833 |
+
+
+ | Dedupe Ratio |
+ 23.5 |
+
+
+ | Dedupe Ratio |
+ 23.5 |
+
+
+ | Creation On |
+ 2017-01-19T12:05:46Z |
+
+
+ | Last Modified |
+ 2017-01-19T12:05:46Z |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 0 |
+
+
+ | secondaryTransferPolicyString |
+ High Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | userBytes |
+ 1189033153668 |
+
+
+ | diskBytes |
+ 50452758330 |
+
+
+ | numItems |
+ 218 |
+
+
+ | numDataJobs |
+ 218 |
+
+
+ | numOriginCopyJobs |
+ 0 |
+
+
+ | numDestinationCopyJobs |
+ 0 |
+
+
+ | Is online |
+ true |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | isTeamed |
+ false |
+
+
+ | teamUUID |
+ 00000159B69E53FAB44F8376645AE0BB |
+
+
+ | numTeamMembers |
+ 0 |
+
+
+
+
+ Dedupe Store
+
+
+ | Name |
+ Value |
+
+
+
+
+ | dedupe Store Id |
+ 11 |
+
+
+ | dedupe Store URI |
+ /cluster/servicesets/1/services/dedupe/stores/11 |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 11 |
+
+
+ | Name |
+ DEOKO04_SO1_VM_WinSrv_2k12 |
+
+
+ | Description |
+ |
+
+
+ | ServiceSet ID |
+ 1 |
+
+
+ | Creation Time UTC |
+ 1484827555 |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ OK |
+
+
+ | Status |
+ Online |
+
+
+ | Version |
+ 2 |
+
+
+ | Number Of Catalyst Items |
+ 4267 |
+
+
+ | User Data Stored |
+ 69139.783729574 |
+
+
+ | Size On Disk |
+ 3227.358905215 |
+
+
+ | Dedupe Ratio |
+ 21.4 |
+
+
+ | Dedupe Ratio |
+ 21.4 |
+
+
+ | Creation On |
+ 2017-01-19T12:05:55Z |
+
+
+ | Last Modified |
+ 2017-01-19T12:05:55Z |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 0 |
+
+
+ | secondaryTransferPolicyString |
+ High Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | userBytes |
+ 69139783729574 |
+
+
+ | diskBytes |
+ 3227358905215 |
+
+
+ | numItems |
+ 4267 |
+
+
+ | numDataJobs |
+ 4267 |
+
+
+ | numOriginCopyJobs |
+ 0 |
+
+
+ | numDestinationCopyJobs |
+ 0 |
+
+
+ | Is online |
+ true |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | isTeamed |
+ false |
+
+
+ | teamUUID |
+ 00000159B69E74D4DF4BED42A325B80C |
+
+
+ | numTeamMembers |
+ 0 |
+
+
+
+
+ Dedupe Store
+
+
+ | Name |
+ Value |
+
+
+
+
+ | dedupe Store Id |
+ 12 |
+
+
+ | dedupe Store URI |
+ /cluster/servicesets/1/services/dedupe/stores/12 |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 12 |
+
+
+ | Name |
+ DEOKO04_SO1_VM_WinSrv_2k16 |
+
+
+ | Description |
+ |
+
+
+ | ServiceSet ID |
+ 1 |
+
+
+ | Creation Time UTC |
+ 1484827563 |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ OK |
+
+
+ | Status |
+ Online |
+
+
+ | Version |
+ 2 |
+
+
+ | Number Of Catalyst Items |
+ 0 |
+
+
+ | User Data Stored |
+ 0.0 |
+
+
+ | Size On Disk |
+ 0.007095096 |
+
+
+ | Dedupe Ratio |
+ 0.0 |
+
+
+ | Dedupe Ratio |
+ 0.0 |
+
+
+ | Creation On |
+ 2017-01-19T12:06:03Z |
+
+
+ | Last Modified |
+ 2017-01-19T12:06:03Z |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 0 |
+
+
+ | secondaryTransferPolicyString |
+ High Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | userBytes |
+ 0 |
+
+
+ | diskBytes |
+ 7095096 |
+
+
+ | numItems |
+ 0 |
+
+
+ | numDataJobs |
+ 0 |
+
+
+ | numOriginCopyJobs |
+ 0 |
+
+
+ | numDestinationCopyJobs |
+ 0 |
+
+
+ | Is online |
+ true |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | isTeamed |
+ false |
+
+
+ | teamUUID |
+ 00000159B69E947AF483010796F6DC4B |
+
+
+ | numTeamMembers |
+ 0 |
+
+
+
+
+ Dedupe Store
+
+
+ | Name |
+ Value |
+
+
+
+
+ | dedupe Store Id |
+ 13 |
+
+
+ | dedupe Store URI |
+ /cluster/servicesets/1/services/dedupe/stores/13 |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 13 |
+
+
+ | Name |
+ DEOKO04_SO1_VM_Other |
+
+
+ | Description |
+ |
+
+
+ | ServiceSet ID |
+ 1 |
+
+
+ | Creation Time UTC |
+ 1484827573 |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ OK |
+
+
+ | Status |
+ Online |
+
+
+ | Version |
+ 2 |
+
+
+ | Number Of Catalyst Items |
+ 2552 |
+
+
+ | User Data Stored |
+ 28589.331990787 |
+
+
+ | Size On Disk |
+ 2356.462353263 |
+
+
+ | Dedupe Ratio |
+ 12.1 |
+
+
+ | Dedupe Ratio |
+ 12.1 |
+
+
+ | Creation On |
+ 2017-01-19T12:06:13Z |
+
+
+ | Last Modified |
+ 2017-01-19T12:06:13Z |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 0 |
+
+
+ | secondaryTransferPolicyString |
+ High Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | userBytes |
+ 28589331990787 |
+
+
+ | diskBytes |
+ 2356462353263 |
+
+
+ | numItems |
+ 2552 |
+
+
+ | numDataJobs |
+ 2552 |
+
+
+ | numOriginCopyJobs |
+ 0 |
+
+
+ | numDestinationCopyJobs |
+ 0 |
+
+
+ | Is online |
+ true |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | isTeamed |
+ false |
+
+
+ | teamUUID |
+ 00000159B69EBE0EA9A4983C8025AE29 |
+
+
+ | numTeamMembers |
+ 0 |
+
+
+
+
+ Dedupe Store
+
+
+ | Name |
+ Value |
+
+
+
+
+ | dedupe Store Id |
+ 14 |
+
+
+ | dedupe Store URI |
+ /cluster/servicesets/1/services/dedupe/stores/14 |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 14 |
+
+
+ | Name |
+ DEOKO04_SO1_VM_Win_7 |
+
+
+ | Description |
+ |
+
+
+ | ServiceSet ID |
+ 1 |
+
+
+ | Creation Time UTC |
+ 1484827920 |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ OK |
+
+
+ | Status |
+ Online |
+
+
+ | Version |
+ 2 |
+
+
+ | Number Of Catalyst Items |
+ 2722 |
+
+
+ | User Data Stored |
+ 52060.999707535 |
+
+
+ | Size On Disk |
+ 2502.105802133 |
+
+
+ | Dedupe Ratio |
+ 20.8 |
+
+
+ | Dedupe Ratio |
+ 20.8 |
+
+
+ | Creation On |
+ 2017-01-19T12:12:00Z |
+
+
+ | Last Modified |
+ 2017-01-19T12:12:00Z |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 0 |
+
+
+ | secondaryTransferPolicyString |
+ High Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | userBytes |
+ 52060999707535 |
+
+
+ | diskBytes |
+ 2502105802133 |
+
+
+ | numItems |
+ 2722 |
+
+
+ | numDataJobs |
+ 2722 |
+
+
+ | numOriginCopyJobs |
+ 0 |
+
+
+ | numDestinationCopyJobs |
+ 0 |
+
+
+ | Is online |
+ true |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | isTeamed |
+ false |
+
+
+ | teamUUID |
+ 00000159B6A408E2E2D2CD5D0CA92425 |
+
+
+ | numTeamMembers |
+ 0 |
+
+
+
+
+ Dedupe Store
+
+
+ | Name |
+ Value |
+
+
+
+
+ | dedupe Store Id |
+ 15 |
+
+
+ | dedupe Store URI |
+ /cluster/servicesets/1/services/dedupe/stores/15 |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 15 |
+
+
+ | Name |
+ DEOKO04_SO1_Phys_WinSrv_2k12 |
+
+
+ | Description |
+ |
+
+
+ | ServiceSet ID |
+ 1 |
+
+
+ | Creation Time UTC |
+ 1484892749 |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ OK |
+
+
+ | Status |
+ Online |
+
+
+ | Version |
+ 2 |
+
+
+ | Number Of Catalyst Items |
+ 1116 |
+
+
+ | User Data Stored |
+ 16293.562322478 |
+
+
+ | Size On Disk |
+ 458.51547515 |
+
+
+ | Dedupe Ratio |
+ 35.5 |
+
+
+ | Dedupe Ratio |
+ 35.5 |
+
+
+ | Creation On |
+ 2017-01-20T06:12:29Z |
+
+
+ | Last Modified |
+ 2017-01-20T06:12:29Z |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 0 |
+
+
+ | secondaryTransferPolicyString |
+ High Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | userBytes |
+ 16293562322478 |
+
+
+ | diskBytes |
+ 458515475150 |
+
+
+ | numItems |
+ 1116 |
+
+
+ | numDataJobs |
+ 1116 |
+
+
+ | numOriginCopyJobs |
+ 0 |
+
+
+ | numDestinationCopyJobs |
+ 0 |
+
+
+ | Is online |
+ true |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | isTeamed |
+ false |
+
+
+ | teamUUID |
+ 00000159BA813D7BB509BF75622EA270 |
+
+
+ | numTeamMembers |
+ 0 |
+
+
+
+
+ Dedupe Store
+
+
+ | Name |
+ Value |
+
+
+
+
+ | dedupe Store Id |
+ 16 |
+
+
+ | dedupe Store URI |
+ /cluster/servicesets/1/services/dedupe/stores/16 |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 16 |
+
+
+ | Name |
+ DEOKO04_SO1_Phys_Win_7 |
+
+
+ | Description |
+ |
+
+
+ | ServiceSet ID |
+ 1 |
+
+
+ | Creation Time UTC |
+ 1484892767 |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ OK |
+
+
+ | Status |
+ Online |
+
+
+ | Version |
+ 2 |
+
+
+ | Number Of Catalyst Items |
+ 0 |
+
+
+ | User Data Stored |
+ 0.0 |
+
+
+ | Size On Disk |
+ 0.007095096 |
+
+
+ | Dedupe Ratio |
+ 0.0 |
+
+
+ | Dedupe Ratio |
+ 0.0 |
+
+
+ | Creation On |
+ 2017-01-20T06:12:47Z |
+
+
+ | Last Modified |
+ 2017-01-20T06:12:47Z |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 0 |
+
+
+ | secondaryTransferPolicyString |
+ High Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | userBytes |
+ 0 |
+
+
+ | diskBytes |
+ 7095096 |
+
+
+ | numItems |
+ 0 |
+
+
+ | numDataJobs |
+ 0 |
+
+
+ | numOriginCopyJobs |
+ 0 |
+
+
+ | numDestinationCopyJobs |
+ 0 |
+
+
+ | Is online |
+ true |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | isTeamed |
+ false |
+
+
+ | teamUUID |
+ 00000159BA8183B0D5724FDD300E4E02 |
+
+
+ | numTeamMembers |
+ 0 |
+
+
+
+
+ Dedupe Store
+
+
+ | Name |
+ Value |
+
+
+
+
+ | dedupe Store Id |
+ 17 |
+
+
+ | dedupe Store URI |
+ /cluster/servicesets/1/services/dedupe/stores/17 |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 17 |
+
+
+ | Name |
+ DEOKO04_SO1_Phys_RH_7 |
+
+
+ | Description |
+ |
+
+
+ | ServiceSet ID |
+ 1 |
+
+
+ | Creation Time UTC |
+ 1484892787 |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ OK |
+
+
+ | Status |
+ Online |
+
+
+ | Version |
+ 2 |
+
+
+ | Number Of Catalyst Items |
+ 357 |
+
+
+ | User Data Stored |
+ 13577.956605657 |
+
+
+ | Size On Disk |
+ 449.735149616 |
+
+
+ | Dedupe Ratio |
+ 30.1 |
+
+
+ | Dedupe Ratio |
+ 30.1 |
+
+
+ | Creation On |
+ 2017-01-20T06:13:07Z |
+
+
+ | Last Modified |
+ 2017-01-20T06:13:07Z |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 0 |
+
+
+ | secondaryTransferPolicyString |
+ High Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | userBytes |
+ 13577956605657 |
+
+
+ | diskBytes |
+ 449735149616 |
+
+
+ | numItems |
+ 357 |
+
+
+ | numDataJobs |
+ 366 |
+
+
+ | numOriginCopyJobs |
+ 0 |
+
+
+ | numDestinationCopyJobs |
+ 0 |
+
+
+ | Is online |
+ true |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | isTeamed |
+ false |
+
+
+ | teamUUID |
+ 00000159BA81D1755AA437291D3425D2 |
+
+
+ | numTeamMembers |
+ 0 |
+
+
+
+
+ Dedupe Store
+
+
+ | Name |
+ Value |
+
+
+
+
+ | dedupe Store Id |
+ 18 |
+
+
+ | dedupe Store URI |
+ /cluster/servicesets/1/services/dedupe/stores/18 |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 18 |
+
+
+ | Name |
+ DEOKO04_SO1_Data_SFS004 |
+
+
+ | Description |
+ |
+
+
+ | ServiceSet ID |
+ 1 |
+
+
+ | Creation Time UTC |
+ 1484892807 |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ OK |
+
+
+ | Status |
+ Online |
+
+
+ | Version |
+ 2 |
+
+
+ | Number Of Catalyst Items |
+ 54 |
+
+
+ | User Data Stored |
+ 50725.746348722 |
+
+
+ | Size On Disk |
+ 4751.0680519 |
+
+
+ | Dedupe Ratio |
+ 10.6 |
+
+
+ | Dedupe Ratio |
+ 10.6 |
+
+
+ | Creation On |
+ 2017-01-20T06:13:27Z |
+
+
+ | Last Modified |
+ 2017-01-20T06:13:27Z |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 0 |
+
+
+ | secondaryTransferPolicyString |
+ High Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | userBytes |
+ 50725746348722 |
+
+
+ | diskBytes |
+ 4751068051900 |
+
+
+ | numItems |
+ 54 |
+
+
+ | numDataJobs |
+ 54 |
+
+
+ | numOriginCopyJobs |
+ 0 |
+
+
+ | numDestinationCopyJobs |
+ 0 |
+
+
+ | Is online |
+ true |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | isTeamed |
+ false |
+
+
+ | teamUUID |
+ 00000159BA8221E31CD32C817AB08657 |
+
+
+ | numTeamMembers |
+ 0 |
+
+
+
+
+ Dedupe Store
+
+
+ | Name |
+ Value |
+
+
+
+
+ | dedupe Store Id |
+ 19 |
+
+
+ | dedupe Store URI |
+ /cluster/servicesets/1/services/dedupe/stores/19 |
+
+
+
+
+
+
+"""
+
+
+stores_xml_teaming = """
+
+ List of Teamed Catalyst Stores
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 000001594B2E65E914839B82279B14F9 |
+
+
+ | Name |
+ FMS_Store |
+
+
+ | Description |
+ FMS Databases |
+
+
+ | Creation Time |
+ 2016-12-22T15:16:16Z |
+
+
+ | Last Modification Time |
+ 2016-12-29T15:24:09Z |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ Ok |
+
+
+ | Status |
+ Online |
+
+
+ | Is Online |
+ true |
+
+
+ | Version |
+ 2 |
+
+
+ | User Data Stored |
+ 3291770368 |
+
+
+ | Size On Disk |
+ 19999172933 |
+
+
+ | Dedupe Ratio |
+ 0.1 |
+
+
+ | Number Of Items |
+ 4 |
+
+
+ | Number Of Data Jobs |
+ 8532 |
+
+
+ | Number Of Outbound Copy Jobs |
+ 0 |
+
+
+ | Number Of Inbound Copy Jobs |
+ 0 |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | isTeamed |
+ true |
+
+
+ | isDegraded |
+ false |
+
+
+ | numTeamMembers |
+ 2 |
+
+
+ | teamMembers |
+ 1,2 |
+
+
+ | noWriteTeamMembers |
+ |
+
+
+ | offlineTeamMembers |
+ |
+
+
+ | allowAddTeamMembers |
+ true |
+
+
+ | allowRemoveTeamMembers |
+ true |
+
+
+ | allowDegradedOperation |
+ true |
+
+
+ | allowRedundancy |
+ true |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 000001597324803912EA0A157C1417FB |
+
+
+ | Name |
+ DW_Store |
+
+
+ | Description |
+ DW database store |
+
+
+ | Creation Time |
+ 2016-12-22T13:49:01Z |
+
+
+ | Last Modification Time |
+ 2017-01-06T09:38:09Z |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ Ok |
+
+
+ | Status |
+ Online |
+
+
+ | Is Online |
+ true |
+
+
+ | Version |
+ 2 |
+
+
+ | User Data Stored |
+ 0 |
+
+
+ | Size On Disk |
+ 589222895824 |
+
+
+ | Dedupe Ratio |
+ 0.0 |
+
+
+ | Number Of Items |
+ 0 |
+
+
+ | Number Of Data Jobs |
+ 0 |
+
+
+ | Number Of Outbound Copy Jobs |
+ 0 |
+
+
+ | Number Of Inbound Copy Jobs |
+ 0 |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | isTeamed |
+ true |
+
+
+ | isDegraded |
+ false |
+
+
+ | numTeamMembers |
+ 2 |
+
+
+ | teamMembers |
+ 1,2 |
+
+
+ | noWriteTeamMembers |
+ |
+
+
+ | offlineTeamMembers |
+ |
+
+
+ | allowAddTeamMembers |
+ true |
+
+
+ | allowRemoveTeamMembers |
+ true |
+
+
+ | allowDegradedOperation |
+ true |
+
+
+ | allowRedundancy |
+ true |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 0000015945C947CF9A1FC94A00F125D6 |
+
+
+ | Name |
+ ORA_MEDIUM_Store |
+
+
+ | Description |
+ Databases between 500G and 5T |
+
+
+ | Creation Time |
+ 2016-12-22T08:30:48Z |
+
+
+ | Last Modification Time |
+ 2016-12-28T14:15:36Z |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ Ok |
+
+
+ | Status |
+ Online |
+
+
+ | Is Online |
+ true |
+
+
+ | Version |
+ 2 |
+
+
+ | User Data Stored |
+ 270638217491872 |
+
+
+ | Size On Disk |
+ 34990558346210 |
+
+
+ | Dedupe Ratio |
+ 7.7 |
+
+
+ | Number Of Items |
+ 38007 |
+
+
+ | Number Of Data Jobs |
+ 198705 |
+
+
+ | Number Of Outbound Copy Jobs |
+ 0 |
+
+
+ | Number Of Inbound Copy Jobs |
+ 0 |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | isTeamed |
+ true |
+
+
+ | isDegraded |
+ false |
+
+
+ | numTeamMembers |
+ 2 |
+
+
+ | teamMembers |
+ 1,2 |
+
+
+ | noWriteTeamMembers |
+ |
+
+
+ | offlineTeamMembers |
+ |
+
+
+ | allowAddTeamMembers |
+ true |
+
+
+ | allowRemoveTeamMembers |
+ true |
+
+
+ | allowDegradedOperation |
+ true |
+
+
+ | allowRedundancy |
+ true |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 00000159452FFE91F1205D30624F6B3C |
+
+
+ | Name |
+ TICH_Store |
+
+
+ | Description |
+ Database TICH |
+
+
+ | Creation Time |
+ 2016-12-28T11:28:10Z |
+
+
+ | Last Modification Time |
+ 2016-12-28T11:28:10Z |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ Ok |
+
+
+ | Status |
+ Online |
+
+
+ | Is Online |
+ true |
+
+
+ | Version |
+ 2 |
+
+
+ | User Data Stored |
+ 44315366129664 |
+
+
+ | Size On Disk |
+ 5093382800339 |
+
+
+ | Dedupe Ratio |
+ 8.7 |
+
+
+ | Number Of Items |
+ 676 |
+
+
+ | Number Of Data Jobs |
+ 10410 |
+
+
+ | Number Of Outbound Copy Jobs |
+ 0 |
+
+
+ | Number Of Inbound Copy Jobs |
+ 0 |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | isTeamed |
+ true |
+
+
+ | isDegraded |
+ false |
+
+
+ | numTeamMembers |
+ 2 |
+
+
+ | teamMembers |
+ 1,2 |
+
+
+ | noWriteTeamMembers |
+ |
+
+
+ | offlineTeamMembers |
+ |
+
+
+ | allowAddTeamMembers |
+ true |
+
+
+ | allowRemoveTeamMembers |
+ true |
+
+
+ | allowDegradedOperation |
+ true |
+
+
+ | allowRedundancy |
+ true |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 0000015945F8C5C599268A84E37AA602 |
+
+
+ | Name |
+ ARPIN_Store |
+
+
+ | Description |
+ ARPIN Database |
+
+
+ | Creation Time |
+ 2016-12-28T15:07:28Z |
+
+
+ | Last Modification Time |
+ 2016-12-28T16:18:57Z |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ Ok |
+
+
+ | Status |
+ Online |
+
+
+ | Is Online |
+ true |
+
+
+ | Version |
+ 2 |
+
+
+ | User Data Stored |
+ 94049009926144 |
+
+
+ | Size On Disk |
+ 19833399695183 |
+
+
+ | Dedupe Ratio |
+ 4.7 |
+
+
+ | Number Of Items |
+ 128 |
+
+
+ | Number Of Data Jobs |
+ 0 |
+
+
+ | Number Of Outbound Copy Jobs |
+ 0 |
+
+
+ | Number Of Inbound Copy Jobs |
+ 0 |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | isTeamed |
+ true |
+
+
+ | isDegraded |
+ false |
+
+
+ | numTeamMembers |
+ 2 |
+
+
+ | teamMembers |
+ 1,2 |
+
+
+ | noWriteTeamMembers |
+ |
+
+
+ | offlineTeamMembers |
+ |
+
+
+ | allowAddTeamMembers |
+ true |
+
+
+ | allowRemoveTeamMembers |
+ true |
+
+
+ | allowDegradedOperation |
+ true |
+
+
+ | allowRedundancy |
+ true |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 0000015973317C798AAC99334A7D9B20 |
+
+
+ | Name |
+ HIST_Store |
+
+
+ | Description |
+ HIST Database |
+
+
+ | Creation Time |
+ 2017-01-06T09:52:20Z |
+
+
+ | Last Modification Time |
+ 2017-01-06T09:52:20Z |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ Ok |
+
+
+ | Status |
+ Online |
+
+
+ | Is Online |
+ true |
+
+
+ | Version |
+ 2 |
+
+
+ | User Data Stored |
+ 53596324942208 |
+
+
+ | Size On Disk |
+ 7216835095879 |
+
+
+ | Dedupe Ratio |
+ 7.4 |
+
+
+ | Number Of Items |
+ 605 |
+
+
+ | Number Of Data Jobs |
+ 7558 |
+
+
+ | Number Of Outbound Copy Jobs |
+ 0 |
+
+
+ | Number Of Inbound Copy Jobs |
+ 0 |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | isTeamed |
+ true |
+
+
+ | isDegraded |
+ false |
+
+
+ | numTeamMembers |
+ 2 |
+
+
+ | teamMembers |
+ 1,2 |
+
+
+ | noWriteTeamMembers |
+ |
+
+
+ | offlineTeamMembers |
+ |
+
+
+ | allowAddTeamMembers |
+ true |
+
+
+ | allowRemoveTeamMembers |
+ true |
+
+
+ | allowDegradedOperation |
+ true |
+
+
+ | allowRedundancy |
+ true |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 0000015973BED8FB3CC26F2D92BCDF9B |
+
+
+ | Name |
+ FPM_Store |
+
+
+ | Description |
+ FPM Database |
+
+
+ | Creation Time |
+ 2017-01-06T12:26:44Z |
+
+
+ | Last Modification Time |
+ 2017-01-06T12:26:44Z |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ Ok |
+
+
+ | Status |
+ Online |
+
+
+ | Is Online |
+ true |
+
+
+ | Version |
+ 2 |
+
+
+ | User Data Stored |
+ 100626128175104 |
+
+
+ | Size On Disk |
+ 5053181148644 |
+
+
+ | Dedupe Ratio |
+ 19.9 |
+
+
+ | Number Of Items |
+ 3998 |
+
+
+ | Number Of Data Jobs |
+ 25638 |
+
+
+ | Number Of Outbound Copy Jobs |
+ 0 |
+
+
+ | Number Of Inbound Copy Jobs |
+ 0 |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | isTeamed |
+ true |
+
+
+ | isDegraded |
+ false |
+
+
+ | numTeamMembers |
+ 2 |
+
+
+ | teamMembers |
+ 1,2 |
+
+
+ | noWriteTeamMembers |
+ |
+
+
+ | offlineTeamMembers |
+ |
+
+
+ | allowAddTeamMembers |
+ true |
+
+
+ | allowRemoveTeamMembers |
+ true |
+
+
+ | allowDegradedOperation |
+ true |
+
+
+ | allowRedundancy |
+ true |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 0000015FB4250FFD2B7EC4A788997A31 |
+
+
+ | Name |
+ HDW_Store |
+
+
+ | Description |
+ HDW database store |
+
+
+ | Creation Time |
+ 2017-02-06T07:21:07Z |
+
+
+ | Last Modification Time |
+ 2017-11-13T06:50:49Z |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ Ok |
+
+
+ | Status |
+ Online |
+
+
+ | Is Online |
+ true |
+
+
+ | Version |
+ 2 |
+
+
+ | User Data Stored |
+ 2327326228480 |
+
+
+ | Size On Disk |
+ 320436576594 |
+
+
+ | Dedupe Ratio |
+ 7.2 |
+
+
+ | Number Of Items |
+ 100 |
+
+
+ | Number Of Data Jobs |
+ 0 |
+
+
+ | Number Of Outbound Copy Jobs |
+ 0 |
+
+
+ | Number Of Inbound Copy Jobs |
+ 0 |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | isTeamed |
+ true |
+
+
+ | isDegraded |
+ false |
+
+
+ | numTeamMembers |
+ 2 |
+
+
+ | teamMembers |
+ 1,2 |
+
+
+ | noWriteTeamMembers |
+ |
+
+
+ | offlineTeamMembers |
+ |
+
+
+ | allowAddTeamMembers |
+ true |
+
+
+ | allowRemoveTeamMembers |
+ true |
+
+
+ | allowDegradedOperation |
+ true |
+
+
+ | allowRedundancy |
+ true |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 0000015A1D361AE54FD9797A916443A6 |
+
+
+ | Name |
+ MSSQL_Store |
+
+
+ | Description |
+ MSSQL_Databases |
+
+
+ | Creation Time |
+ 2017-02-08T10:12:49Z |
+
+
+ | Last Modification Time |
+ 2017-02-08T10:12:49Z |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ Ok |
+
+
+ | Status |
+ Online |
+
+
+ | Is Online |
+ true |
+
+
+ | Version |
+ 2 |
+
+
+ | User Data Stored |
+ 177802201444531 |
+
+
+ | Size On Disk |
+ 5611464184724 |
+
+
+ | Dedupe Ratio |
+ 31.6 |
+
+
+ | Number Of Items |
+ 92376 |
+
+
+ | Number Of Data Jobs |
+ 29898 |
+
+
+ | Number Of Outbound Copy Jobs |
+ 0 |
+
+
+ | Number Of Inbound Copy Jobs |
+ 0 |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | isTeamed |
+ true |
+
+
+ | isDegraded |
+ false |
+
+
+ | numTeamMembers |
+ 2 |
+
+
+ | teamMembers |
+ 1,2 |
+
+
+ | noWriteTeamMembers |
+ |
+
+
+ | offlineTeamMembers |
+ |
+
+
+ | allowAddTeamMembers |
+ true |
+
+
+ | allowRemoveTeamMembers |
+ true |
+
+
+ | allowDegradedOperation |
+ true |
+
+
+ | allowRedundancy |
+ true |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 0000015A4B898B0978E39AC679C29E46 |
+
+
+ | Name |
+ VAPP_Store |
+
+
+ | Description |
+ VAPP Database |
+
+
+ | Creation Time |
+ 2017-02-17T10:06:29Z |
+
+
+ | Last Modification Time |
+ 2017-02-17T10:06:29Z |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ Ok |
+
+
+ | Status |
+ Online |
+
+
+ | Is Online |
+ true |
+
+
+ | Version |
+ 2 |
+
+
+ | User Data Stored |
+ 187145140043776 |
+
+
+ | Size On Disk |
+ 18788543090018 |
+
+
+ | Dedupe Ratio |
+ 9.9 |
+
+
+ | Number Of Items |
+ 2044 |
+
+
+ | Number Of Data Jobs |
+ 5576 |
+
+
+ | Number Of Outbound Copy Jobs |
+ 0 |
+
+
+ | Number Of Inbound Copy Jobs |
+ 0 |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | isTeamed |
+ true |
+
+
+ | isDegraded |
+ false |
+
+
+ | numTeamMembers |
+ 2 |
+
+
+ | teamMembers |
+ 1,2 |
+
+
+ | noWriteTeamMembers |
+ |
+
+
+ | offlineTeamMembers |
+ |
+
+
+ | allowAddTeamMembers |
+ true |
+
+
+ | allowRemoveTeamMembers |
+ true |
+
+
+ | allowDegradedOperation |
+ true |
+
+
+ | allowRedundancy |
+ true |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 0000015AA3140E1C5D696993051357B5 |
+
+
+ | Name |
+ EBS_REP_Store |
+
+
+ | Description |
+ Clone de raportare 5 ani |
+
+
+ | Creation Time |
+ 2017-03-06T10:04:45Z |
+
+
+ | Last Modification Time |
+ 2017-03-06T10:04:45Z |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ Ok |
+
+
+ | Status |
+ Online |
+
+
+ | Is Online |
+ true |
+
+
+ | Version |
+ 2 |
+
+
+ | User Data Stored |
+ 213399862610176 |
+
+
+ | Size On Disk |
+ 12372722770821 |
+
+
+ | Dedupe Ratio |
+ 17.2 |
+
+
+ | Number Of Items |
+ 3101 |
+
+
+ | Number Of Data Jobs |
+ 512 |
+
+
+ | Number Of Outbound Copy Jobs |
+ 0 |
+
+
+ | Number Of Inbound Copy Jobs |
+ 0 |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | isTeamed |
+ true |
+
+
+ | isDegraded |
+ false |
+
+
+ | numTeamMembers |
+ 2 |
+
+
+ | teamMembers |
+ 1,2 |
+
+
+ | noWriteTeamMembers |
+ |
+
+
+ | offlineTeamMembers |
+ |
+
+
+ | allowAddTeamMembers |
+ true |
+
+
+ | allowRemoveTeamMembers |
+ true |
+
+
+ | allowDegradedOperation |
+ true |
+
+
+ | allowRedundancy |
+ true |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 0000015BA4F89B6636707BCDDE77EA11 |
+
+
+ | Name |
+ EBS_Store |
+
+
+ | Description |
+ Federated Catalyst Store 1 |
+
+
+ | Creation Time |
+ 2017-04-25T11:56:47Z |
+
+
+ | Last Modification Time |
+ 2017-04-25T11:56:47Z |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ Ok |
+
+
+ | Status |
+ Online |
+
+
+ | Is Online |
+ true |
+
+
+ | Version |
+ 2 |
+
+
+ | User Data Stored |
+ 19729734434816 |
+
+
+ | Size On Disk |
+ 2419616568861 |
+
+
+ | Dedupe Ratio |
+ 8.1 |
+
+
+ | Number Of Items |
+ 1426 |
+
+
+ | Number Of Data Jobs |
+ 6564 |
+
+
+ | Number Of Outbound Copy Jobs |
+ 0 |
+
+
+ | Number Of Inbound Copy Jobs |
+ 0 |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | isTeamed |
+ true |
+
+
+ | isDegraded |
+ false |
+
+
+ | numTeamMembers |
+ 2 |
+
+
+ | teamMembers |
+ 1,2 |
+
+
+ | noWriteTeamMembers |
+ |
+
+
+ | offlineTeamMembers |
+ |
+
+
+ | allowAddTeamMembers |
+ true |
+
+
+ | allowRemoveTeamMembers |
+ true |
+
+
+ | allowDegradedOperation |
+ true |
+
+
+ | allowRedundancy |
+ true |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 0000015BAF012DF2373CA9B9843943FD |
+
+
+ | Name |
+ SMS_Store |
+
+
+ | Description |
+ Federated Catalyst Store 1 |
+
+
+ | Creation Time |
+ 2017-04-27T10:42:21Z |
+
+
+ | Last Modification Time |
+ 2017-04-27T10:42:21Z |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ Ok |
+
+
+ | Status |
+ Online |
+
+
+ | Is Online |
+ true |
+
+
+ | Version |
+ 2 |
+
+
+ | User Data Stored |
+ 23366172934144 |
+
+
+ | Size On Disk |
+ 4965345977854 |
+
+
+ | Dedupe Ratio |
+ 4.7 |
+
+
+ | Number Of Items |
+ 846 |
+
+
+ | Number Of Data Jobs |
+ 3658 |
+
+
+ | Number Of Outbound Copy Jobs |
+ 0 |
+
+
+ | Number Of Inbound Copy Jobs |
+ 0 |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | isTeamed |
+ true |
+
+
+ | isDegraded |
+ false |
+
+
+ | numTeamMembers |
+ 2 |
+
+
+ | teamMembers |
+ 1,2 |
+
+
+ | noWriteTeamMembers |
+ |
+
+
+ | offlineTeamMembers |
+ |
+
+
+ | allowAddTeamMembers |
+ true |
+
+
+ | allowRemoveTeamMembers |
+ true |
+
+
+ | allowDegradedOperation |
+ true |
+
+
+ | allowRedundancy |
+ true |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 0000015E99031583403621D41DF8AFC6 |
+
+
+ | Name |
+ CTI_H_Store |
+
+
+ | Description |
+ CTI_H_Store |
+
+
+ | Creation Time |
+ 2017-09-19T07:21:09Z |
+
+
+ | Last Modification Time |
+ 2017-09-19T07:21:09Z |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ Ok |
+
+
+ | Status |
+ Online |
+
+
+ | Is Online |
+ true |
+
+
+ | Version |
+ 2 |
+
+
+ | User Data Stored |
+ 0 |
+
+
+ | Size On Disk |
+ 20744064 |
+
+
+ | Dedupe Ratio |
+ 0.0 |
+
+
+ | Number Of Items |
+ 0 |
+
+
+ | Number Of Data Jobs |
+ 0 |
+
+
+ | Number Of Outbound Copy Jobs |
+ 0 |
+
+
+ | Number Of Inbound Copy Jobs |
+ 0 |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | isTeamed |
+ true |
+
+
+ | isDegraded |
+ false |
+
+
+ | numTeamMembers |
+ 2 |
+
+
+ | teamMembers |
+ 1,2 |
+
+
+ | noWriteTeamMembers |
+ |
+
+
+ | offlineTeamMembers |
+ |
+
+
+ | allowAddTeamMembers |
+ true |
+
+
+ | allowRemoveTeamMembers |
+ true |
+
+
+ | allowDegradedOperation |
+ true |
+
+
+ | allowRedundancy |
+ true |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 0000015E99190C3A99B9B0C881B63B56 |
+
+
+ | Name |
+ OBRM_Store |
+
+
+ | Description |
+ OBRM_Store |
+
+
+ | Creation Time |
+ 2017-09-19T07:45:09Z |
+
+
+ | Last Modification Time |
+ 2017-09-19T07:45:09Z |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ Ok |
+
+
+ | Status |
+ Online |
+
+
+ | Is Online |
+ true |
+
+
+ | Version |
+ 2 |
+
+
+ | User Data Stored |
+ 0 |
+
+
+ | Size On Disk |
+ 20744064 |
+
+
+ | Dedupe Ratio |
+ 0.0 |
+
+
+ | Number Of Items |
+ 0 |
+
+
+ | Number Of Data Jobs |
+ 0 |
+
+
+ | Number Of Outbound Copy Jobs |
+ 0 |
+
+
+ | Number Of Inbound Copy Jobs |
+ 0 |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | isTeamed |
+ true |
+
+
+ | isDegraded |
+ false |
+
+
+ | numTeamMembers |
+ 2 |
+
+
+ | teamMembers |
+ 1,2 |
+
+
+ | noWriteTeamMembers |
+ |
+
+
+ | offlineTeamMembers |
+ |
+
+
+ | allowAddTeamMembers |
+ true |
+
+
+ | allowRemoveTeamMembers |
+ true |
+
+
+ | allowDegradedOperation |
+ true |
+
+
+ | allowRedundancy |
+ true |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 0000015E9996AFD3CE23E46336B0C70D |
+
+
+ | Name |
+ RAID_Store |
+
+
+ | Description |
+ RAID_Store |
+
+
+ | Creation Time |
+ 2017-09-19T10:02:23Z |
+
+
+ | Last Modification Time |
+ 2017-09-19T10:02:23Z |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ Ok |
+
+
+ | Status |
+ Online |
+
+
+ | Is Online |
+ true |
+
+
+ | Version |
+ 2 |
+
+
+ | User Data Stored |
+ 0 |
+
+
+ | Size On Disk |
+ 20744064 |
+
+
+ | Dedupe Ratio |
+ 0.0 |
+
+
+ | Number Of Items |
+ 0 |
+
+
+ | Number Of Data Jobs |
+ 0 |
+
+
+ | Number Of Outbound Copy Jobs |
+ 0 |
+
+
+ | Number Of Inbound Copy Jobs |
+ 0 |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | isTeamed |
+ true |
+
+
+ | isDegraded |
+ false |
+
+
+ | numTeamMembers |
+ 2 |
+
+
+ | teamMembers |
+ 1,2 |
+
+
+ | noWriteTeamMembers |
+ |
+
+
+ | offlineTeamMembers |
+ |
+
+
+ | allowAddTeamMembers |
+ true |
+
+
+ | allowRemoveTeamMembers |
+ true |
+
+
+ | allowDegradedOperation |
+ true |
+
+
+ | allowRedundancy |
+ true |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 0000015E99981B974BD4B5DCE5CC6BA6 |
+
+
+ | Name |
+ WEB_Store |
+
+
+ | Description |
+ WEB_Store |
+
+
+ | Creation Time |
+ 2017-09-19T10:03:56Z |
+
+
+ | Last Modification Time |
+ 2017-09-19T10:03:56Z |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ Ok |
+
+
+ | Status |
+ Online |
+
+
+ | Is Online |
+ true |
+
+
+ | Version |
+ 2 |
+
+
+ | User Data Stored |
+ 262144 |
+
+
+ | Size On Disk |
+ 34525176 |
+
+
+ | Dedupe Ratio |
+ 0.0 |
+
+
+ | Number Of Items |
+ 2 |
+
+
+ | Number Of Data Jobs |
+ 4 |
+
+
+ | Number Of Outbound Copy Jobs |
+ 0 |
+
+
+ | Number Of Inbound Copy Jobs |
+ 0 |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | isTeamed |
+ true |
+
+
+ | isDegraded |
+ false |
+
+
+ | numTeamMembers |
+ 2 |
+
+
+ | teamMembers |
+ 1,2 |
+
+
+ | noWriteTeamMembers |
+ |
+
+
+ | offlineTeamMembers |
+ |
+
+
+ | allowAddTeamMembers |
+ true |
+
+
+ | allowRemoveTeamMembers |
+ true |
+
+
+ | allowDegradedOperation |
+ true |
+
+
+ | allowRedundancy |
+ true |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 0000015F81A27366D19BF32D5D4F5E77 |
+
+
+ | Name |
+ APIN_Store |
+
+
+ | Description |
+ APIN_Store |
+
+
+ | Creation Time |
+ 2017-11-03T11:27:08Z |
+
+
+ | Last Modification Time |
+ 2017-11-03T11:27:08Z |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ Ok |
+
+
+ | Status |
+ Online |
+
+
+ | Is Online |
+ true |
+
+
+ | Version |
+ 2 |
+
+
+ | User Data Stored |
+ 0 |
+
+
+ | Size On Disk |
+ 20744064 |
+
+
+ | Dedupe Ratio |
+ 0.0 |
+
+
+ | Number Of Items |
+ 0 |
+
+
+ | Number Of Data Jobs |
+ 0 |
+
+
+ | Number Of Outbound Copy Jobs |
+ 0 |
+
+
+ | Number Of Inbound Copy Jobs |
+ 0 |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | isTeamed |
+ true |
+
+
+ | isDegraded |
+ false |
+
+
+ | numTeamMembers |
+ 2 |
+
+
+ | teamMembers |
+ 1,2 |
+
+
+ | noWriteTeamMembers |
+ |
+
+
+ | offlineTeamMembers |
+ |
+
+
+ | allowAddTeamMembers |
+ true |
+
+
+ | allowRemoveTeamMembers |
+ true |
+
+
+ | allowDegradedOperation |
+ true |
+
+
+ | allowRedundancy |
+ true |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 000001597323CD6C6149489F03CA37DB |
+
+
+ | Name |
+ IFD_Store |
+
+
+ | Description |
+ IFD Database |
+
+
+ | Creation Time |
+ 2016-12-27T14:48:51Z |
+
+
+ | Last Modification Time |
+ 2017-01-06T09:37:23Z |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ Ok |
+
+
+ | Status |
+ Online |
+
+
+ | Is Online |
+ true |
+
+
+ | Version |
+ 2 |
+
+
+ | User Data Stored |
+ 26330380641880 |
+
+
+ | Size On Disk |
+ 2199028454764 |
+
+
+ | Dedupe Ratio |
+ 11.9 |
+
+
+ | Number Of Items |
+ 1014 |
+
+
+ | Number Of Data Jobs |
+ 8744 |
+
+
+ | Number Of Outbound Copy Jobs |
+ 0 |
+
+
+ | Number Of Inbound Copy Jobs |
+ 0 |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | isTeamed |
+ true |
+
+
+ | isDegraded |
+ false |
+
+
+ | numTeamMembers |
+ 2 |
+
+
+ | teamMembers |
+ 1,2 |
+
+
+ | noWriteTeamMembers |
+ |
+
+
+ | offlineTeamMembers |
+ |
+
+
+ | allowAddTeamMembers |
+ true |
+
+
+ | allowRemoveTeamMembers |
+ true |
+
+
+ | allowDegradedOperation |
+ true |
+
+
+ | allowRedundancy |
+ true |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 000001597325669A0D0E7FD228DA1F97 |
+
+
+ | Name |
+ CDM_Store |
+
+
+ | Description |
+ CDM_Database |
+
+
+ | Creation Time |
+ 2016-12-22T13:46:57Z |
+
+
+ | Last Modification Time |
+ 2017-01-06T09:39:08Z |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ Ok |
+
+
+ | Status |
+ Online |
+
+
+ | Is Online |
+ true |
+
+
+ | Version |
+ 2 |
+
+
+ | User Data Stored |
+ 107260177809408 |
+
+
+ | Size On Disk |
+ 25048121319933 |
+
+
+ | Dedupe Ratio |
+ 4.2 |
+
+
+ | Number Of Items |
+ 20994 |
+
+
+ | Number Of Data Jobs |
+ 98341 |
+
+
+ | Number Of Outbound Copy Jobs |
+ 0 |
+
+
+ | Number Of Inbound Copy Jobs |
+ 0 |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | isTeamed |
+ true |
+
+
+ | isDegraded |
+ false |
+
+
+ | numTeamMembers |
+ 2 |
+
+
+ | teamMembers |
+ 1,2 |
+
+
+ | noWriteTeamMembers |
+ |
+
+
+ | offlineTeamMembers |
+ |
+
+
+ | allowAddTeamMembers |
+ true |
+
+
+ | allowRemoveTeamMembers |
+ true |
+
+
+ | allowDegradedOperation |
+ true |
+
+
+ | allowRedundancy |
+ true |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 000001594EF7D5561836FFC77521DEBB |
+
+
+ | Name |
+ ORA_SMALL_Store |
+
+
+ | Description |
+ Databases less than 500G |
+
+
+ | Creation Time |
+ 2016-12-22T08:31:44Z |
+
+
+ | Last Modification Time |
+ 2016-12-30T09:03:02Z |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ Ok |
+
+
+ | Status |
+ Online |
+
+
+ | Is Online |
+ true |
+
+
+ | Version |
+ 2 |
+
+
+ | User Data Stored |
+ 85105315804864 |
+
+
+ | Size On Disk |
+ 8259472516886 |
+
+
+ | Dedupe Ratio |
+ 10.3 |
+
+
+ | Number Of Items |
+ 53982 |
+
+
+ | Number Of Data Jobs |
+ 269827 |
+
+
+ | Number Of Outbound Copy Jobs |
+ 0 |
+
+
+ | Number Of Inbound Copy Jobs |
+ 0 |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | isTeamed |
+ true |
+
+
+ | isDegraded |
+ false |
+
+
+ | numTeamMembers |
+ 2 |
+
+
+ | teamMembers |
+ 1,2 |
+
+
+ | noWriteTeamMembers |
+ |
+
+
+ | offlineTeamMembers |
+ |
+
+
+ | allowAddTeamMembers |
+ true |
+
+
+ | allowRemoveTeamMembers |
+ true |
+
+
+ | allowDegradedOperation |
+ true |
+
+
+ | allowRedundancy |
+ true |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 0000015944E75512FAF4DCE0C53B5042 |
+
+
+ | Name |
+ DET_Store |
+
+
+ | Description |
+ DET Database |
+
+
+ | Creation Time |
+ 2016-12-22T14:07:33Z |
+
+
+ | Last Modification Time |
+ 2016-12-28T10:08:48Z |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ Ok |
+
+
+ | Status |
+ Online |
+
+
+ | Is Online |
+ true |
+
+
+ | Version |
+ 2 |
+
+
+ | User Data Stored |
+ 214529888044608 |
+
+
+ | Size On Disk |
+ 72369417590404 |
+
+
+ | Dedupe Ratio |
+ 2.9 |
+
+
+ | Number Of Items |
+ 6293 |
+
+
+ | Number Of Data Jobs |
+ 36480 |
+
+
+ | Number Of Outbound Copy Jobs |
+ 0 |
+
+
+ | Number Of Inbound Copy Jobs |
+ 0 |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | isTeamed |
+ true |
+
+
+ | isDegraded |
+ false |
+
+
+ | numTeamMembers |
+ 2 |
+
+
+ | teamMembers |
+ 1,2 |
+
+
+ | noWriteTeamMembers |
+ |
+
+
+ | offlineTeamMembers |
+ |
+
+
+ | allowAddTeamMembers |
+ true |
+
+
+ | allowRemoveTeamMembers |
+ true |
+
+
+ | allowDegradedOperation |
+ true |
+
+
+ | allowRedundancy |
+ true |
+
+
+
+
+
+
+
+
+ | Name |
+ Value |
+
+
+
+
+ | Store ID |
+ 0000015D509C00246C15E5828450B053 |
+
+
+ | Name |
+ NDW_Store2 |
+
+
+ | Description |
+ NDW database Store 2 |
+
+
+ | Creation Time |
+ 2017-07-17T12:53:07Z |
+
+
+ | Last Modification Time |
+ 2017-07-17T12:53:07Z |
+
+
+ | Health Level |
+ 1 |
+
+
+ | Health |
+ Ok |
+
+
+ | Status |
+ Online |
+
+
+ | Is Online |
+ true |
+
+
+ | Version |
+ 2 |
+
+
+ | User Data Stored |
+ 293234243552299 |
+
+
+ | Size On Disk |
+ 64787183268532 |
+
+
+ | Dedupe Ratio |
+ 4.5 |
+
+
+ | Number Of Items |
+ 2384 |
+
+
+ | Number Of Data Jobs |
+ 50246 |
+
+
+ | Number Of Outbound Copy Jobs |
+ 0 |
+
+
+ | Number Of Inbound Copy Jobs |
+ 0 |
+
+
+ | primaryTransferPolicy |
+ 1 |
+
+
+ | primaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | secondaryTransferPolicy |
+ 1 |
+
+
+ | secondaryTransferPolicyString |
+ Low Bandwidth |
+
+
+ | userDataSizeLimitBytes |
+ 0 |
+
+
+ | dedupedDataSizeOnDiskLimitBytes |
+ 0 |
+
+
+ | dataJobRetentionDays |
+ 90 |
+
+
+ | inboundCopyJobRetentionDays |
+ 90 |
+
+
+ | outboundCopyJobRetentionDays |
+ 90 |
+
+
+ | is store encrypted |
+ false |
+
+
+ | secure erase mode |
+ 0 |
+
+
+ | secure erase mode description |
+ Secure_Erase_NoPassCount |
+
+
+ | supportStorageModeVariableBlockDedupe |
+ true |
+
+
+ | supportStorageModeFixedBlockDedupe |
+ true |
+
+
+ | supportStorageModeNoDedupe |
+ true |
+
+
+ | supportWriteSparse |
+ false |
+
+
+ | supportWriteInPlace |
+ false |
+
+
+ | supportRawReadWrite |
+ true |
+
+
+ | supportMultipleObjectOpeners |
+ true |
+
+
+ | supportMultipleObjectWrites |
+ false |
+
+
+ | supportCloneExtent |
+ true |
+
+
+ | isTeamed |
+ true |
+
+
+ | isDegraded |
+ false |
+
+
+ | numTeamMembers |
+ 2 |
+
+
+ | teamMembers |
+ 3,4 |
+
+
+ | noWriteTeamMembers |
+ |
+
+
+ | offlineTeamMembers |
+ |
+
+
+ | allowAddTeamMembers |
+ true |
+
+
+ | allowRemoveTeamMembers |
+ true |
+
+
+ | allowDegradedOperation |
+ true |
+
+
+ | allowRedundancy |
+ true |
+
+
+
+
+
+
+
+"""
+# .
+
+
+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.