summaryrefslogtreecommitdiff
path: root/MIBS/synology/SYNOLOGY-RAID-MIB
diff options
context:
space:
mode:
authorDavid Leutgeb <david.leutgeb@mannundmouse.com>2023-12-05 12:25:34 +0100
committerDavid Leutgeb <david.leutgeb@mannundmouse.com>2023-12-05 12:25:34 +0100
commit98a672123c7872f6b9b75a9a2b6bb3aea504de6a (patch)
tree9b13bd7f563c3198047bd359195327cf28b3caf0 /MIBS/synology/SYNOLOGY-RAID-MIB
downloadmibs-main.tar.gz
mibs-main.zip
Initial commitHEADmain
Diffstat (limited to 'MIBS/synology/SYNOLOGY-RAID-MIB')
-rw-r--r--MIBS/synology/SYNOLOGY-RAID-MIB139
1 files changed, 139 insertions, 0 deletions
diff --git a/MIBS/synology/SYNOLOGY-RAID-MIB b/MIBS/synology/SYNOLOGY-RAID-MIB
new file mode 100644
index 0000000..73942b0
--- /dev/null
+++ b/MIBS/synology/SYNOLOGY-RAID-MIB
@@ -0,0 +1,139 @@
+SYNOLOGY-RAID-MIB DEFINITIONS ::= BEGIN
+
+IMPORTS
+ OBJECT-GROUP, MODULE-COMPLIANCE
+ FROM SNMPv2-CONF
+ enterprises, MODULE-IDENTITY, OBJECT-TYPE, Integer32
+ FROM SNMPv2-SMI;
+
+synoRaid MODULE-IDENTITY
+ LAST-UPDATED "201309110000Z"
+ ORGANIZATION "www.synology.com"
+ CONTACT-INFO
+ "postal: Jay Pan
+ email: jaypan@synology.com"
+ DESCRIPTION
+ "Characteristics of the raid information"
+ REVISION "201309110000Z"
+ DESCRIPTION
+ "Second draft."
+ ::= { synology 3 }
+
+synology OBJECT IDENTIFIER
+ ::= { enterprises 6574 }
+
+raidTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF RaidEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Synology raid table"
+ ::= { synoRaid 1 }
+
+raidEntry OBJECT-TYPE
+ SYNTAX RaidEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "For all raid entry"
+ INDEX { raidIndex }
+ ::= { raidTable 1 }
+
+RaidEntry ::= SEQUENCE {
+ raidIndex Integer32,
+ raidName OCTET STRING,
+ raidStatus Integer32,
+ raidFreeSize Counter64,
+ raidTotalSize Counter64
+}
+
+raidIndex OBJECT-TYPE
+ SYNTAX Integer32(0..2147483647)
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "The index of raid table"
+ ::= { raidEntry 1 }
+
+raidName OBJECT-TYPE
+ SYNTAX OCTET STRING
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Synology raid name
+ The name of each raid will be showed here.
+ "
+ ::= { raidEntry 2 }
+
+raidStatus OBJECT-TYPE
+ SYNTAX Integer32(1..12)
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Synology Raid status
+ Each meanings of status represented describe below.
+ Normal(1): The raid functions normally.
+ Degrade(11): Degrade happens when a tolerable failure of disk(s) occurs.
+ Crashed(12): Raid has crashed and just uses for read-only operation.
+
+ ** 2018/6/15 add **
+ DataScrubbing(13): Raid status is DATASCRUBBING
+ RaidDeploying(14) : Deploying Single volume on pool
+ RaidUnDeploying(15): Undeploying Single volume on pool
+ RaidMountCache(16): Mounting SSD cache
+ RaidUnmountCache(17): Unmounting SSD cache
+ RaidExpandingUnfinishedSHR(18): Continue expand SHR if interrupted
+ RaidConvertSHRToPool(19): Converting Single volume on SHR to mutiple volume on SHR
+ RaidMigrateSHR1ToSHR2(20): Migrating SHR1 to SHR2
+ RaidUnknownStatus(21): Unknown raid status
+ ** END **
+
+ Note:
+ Other status will be showed when creating or deleting raids, including below status, Repairing(2), Migrating(3), Expanding(4), Deleting(5), Creating(6), RaidSyncing(7), RaidParityChecking(8), RaidAssembling(9) and Canceling(10).
+ "
+ ::= { raidEntry 3 }
+
+raidFreeSize OBJECT-TYPE
+ SYNTAX Counter64
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Synology raid freesize
+ Free space in bytes.
+ "
+ ::= { raidEntry 4 }
+
+raidTotalSize OBJECT-TYPE
+ SYNTAX Counter64
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Synology raid totalsize
+ Total space in bytes.
+ "
+ ::= { raidEntry 5 }
+
+raidConformance OBJECT IDENTIFIER ::= { synoRaid 2 }
+raidCompliances OBJECT IDENTIFIER ::= { raidConformance 1 }
+raidGroups OBJECT IDENTIFIER ::= { raidConformance 2 }
+
+raidCompliance MODULE-COMPLIANCE
+ STATUS current
+ DESCRIPTION
+ "The compliance statement for synoRaid entities which
+ implement the SYNOLOGY RAID MIB."
+ MODULE -- this module
+ MANDATORY-GROUPS { raidGroup }
+
+ ::= { raidCompliances 1 }
+
+raidGroup OBJECT-GROUP
+ OBJECTS { raidName,
+ raidStatus}
+ STATUS current
+ DESCRIPTION
+ "A collection of objects providing basic instrumentation and
+ control of an synology raid entity."
+ ::= { raidGroups 1 }
+
+END