From Kevin Krumm, 6 Years ago, written in Plain Text.
Embed
  1. NIMBLE-MIB DEFINITIONS ::= BEGIN
  2.  
  3. IMPORTS
  4.     MODULE-IDENTITY, OBJECT-TYPE,
  5.     Unsigned32, Counter64
  6.         FROM SNMPv2-SMI
  7.     DisplayString, TruthValue
  8.         FROM SNMPv2-TC
  9.     enterprises
  10.         FROM SNMPv2-SMI;
  11.  
  12. nimble MODULE-IDENTITY
  13.     LAST-UPDATED    "201208310000Z"
  14.     ORGANIZATION    "Nimble Storage, Inc."
  15.     CONTACT-INFO
  16.             "Nimble Storage
  17.  
  18.             support@nimblestorage.com"
  19.     DESCRIPTION
  20.         "SMI Information for Nimble"
  21.  
  22.     REVISION    "201208310000Z"
  23.     DESCRIPTION "Nimble Storage 2.0.3.0 MIB"
  24.  
  25.     REVISION    "201206120000Z"
  26.     DESCRIPTION "Nimble Storage 1.3.0.0 MIB"
  27.  
  28.     REVISION    "201102280000Z"
  29.     DESCRIPTION "Initial revision"
  30.     ::= { enterprises 37447 }
  31.  
  32. --
  33. -- Nimble Objects (variables and tables)
  34. --
  35.  
  36. variables OBJECT IDENTIFIER ::= { nimble 1 }
  37.  
  38. --
  39. -- Volume Information
  40. --
  41.  
  42. volNumberOfVolumes OBJECT-TYPE
  43.     SYNTAX         Unsigned32
  44.     MAX-ACCESS     read-only
  45.     STATUS         obsolete
  46.     DESCRIPTION
  47.     "This variable has been obsoleted"
  48.     ::= { variables 1 }
  49.  
  50. volTable OBJECT-TYPE  -- MUST BE SUFFIXED WITH Table
  51.     SYNTAX         SEQUENCE OF VolEntry
  52.     MAX-ACCESS     not-accessible
  53.     STATUS         current
  54.     DESCRIPTION
  55.     "Volume information table."
  56.     ::= { variables 2 }
  57.  
  58. volEntry OBJECT-TYPE
  59.     SYNTAX          VolEntry
  60.     MAX-ACCESS      not-accessible
  61.     STATUS          current
  62.     DESCRIPTION
  63.     "A row of volume information."
  64.     INDEX { volIndex }
  65.     ::= { volTable 1 }
  66.  
  67. VolEntry ::= SEQUENCE {
  68.     volIndex                    Unsigned32,
  69.     volID                       Unsigned32,
  70.     volName                     DisplayString,
  71.     volSizeLow                  Unsigned32,
  72.     volSizeHigh                 Unsigned32,
  73.     volUsageLow                 Unsigned32,
  74.     volUsageHigh                Unsigned32,
  75.     volReserveLow               Unsigned32,
  76.     volReserveHigh              Unsigned32,
  77.     volOnline                   TruthValue,
  78.     volNumConnections           Unsigned32,
  79.     volStatTimeEpochSeconds     Counter64,
  80.     volIoReads                  Counter64,
  81.     volIoReadTimeMicrosec       Counter64,
  82.     volIoReadBytes              Counter64,
  83.     volIoSeqReads               Counter64,
  84.     volIoSeqReadBytes           Counter64,
  85.     volIoNonseqReadTotalHits    Counter64,
  86.     volIoNonseqReadMemHits      Counter64,
  87.     volIoNonseqReadSSDHits      Counter64,
  88.     volIoReadLatency0uTo100u    Counter64,
  89.     volIoReadLatency100uTo200u  Counter64,
  90.     volIoReadLatency200uTo500u  Counter64,
  91.     volIoReadLatency500uTo1m    Counter64,
  92.     volIoReadLatency1mTo2m      Counter64,
  93.     volIoReadLatency2mTo5m      Counter64,
  94.     volIoReadLatency5mTo10m     Counter64,
  95.     volIoReadLatency10mTo20m    Counter64,
  96.     volIoReadLatency20mTo50m    Counter64,
  97.     volIoReadLatency50mTo100m   Counter64,
  98.     volIoReadLatency100mTo200m  Counter64,
  99.     volIoReadLatency200mTo500m  Counter64,
  100.     volIoReadLatency500mTomax   Counter64,
  101.     volIoWrites                 Counter64,
  102.     volIoWriteTimeMicrosec      Counter64,
  103.     volIoWriteBytes             Counter64,
  104.     volIoSeqWrites              Counter64,
  105.     volIoSeqWriteBytes          Counter64,
  106.     volIoWriteLatency0uTo100u   Counter64,
  107.     volIoWriteLatency100uTo200u Counter64,
  108.     volIoWriteLatency200uTo500u Counter64,
  109.     volIoWriteLatency500uTo1m   Counter64,
  110.     volIoWriteLatency1mTo2m     Counter64,
  111.     volIoWriteLatency2mTo5m     Counter64,
  112.     volIoWriteLatency5mTo10m    Counter64,
  113.     volIoWriteLatency10mTo20m   Counter64,
  114.     volIoWriteLatency20mTo50m   Counter64,
  115.     volIoWriteLatency50mTo100m  Counter64,
  116.     volIoWriteLatency100mTo200m Counter64,
  117.     volIoWriteLatency200mTo500m Counter64,
  118.     volIoWriteLatency500mTomax  Counter64,
  119.     volDiskVolBytesUsedLow      Unsigned32,
  120.     volDiskVolBytesUsedHigh     Unsigned32,
  121.     volDiskSnapBytesUsedLow     Unsigned32,
  122.     volDiskSnapBytesUsedHigh    Unsigned32
  123. }
  124.  
  125. volIndex OBJECT-TYPE
  126.     SYNTAX      Unsigned32
  127.     MAX-ACCESS  not-accessible
  128.     STATUS      current
  129.     DESCRIPTION
  130.     "Volume Index."
  131.     ::= { volEntry 1 }
  132.  
  133. volID OBJECT-TYPE
  134.     SYNTAX      Unsigned32
  135.     MAX-ACCESS  read-only
  136.     STATUS      current
  137.     DESCRIPTION
  138.     "Volume ID."
  139.     ::= { volEntry 2 }
  140.  
  141. volName OBJECT-TYPE
  142.     SYNTAX      DisplayString
  143.     MAX-ACCESS  read-only
  144.     STATUS      current
  145.     DESCRIPTION
  146.     "Volume Name."
  147.     ::= { volEntry 3 }
  148.  
  149. volSizeLow OBJECT-TYPE
  150.     SYNTAX      Unsigned32
  151.     MAX-ACCESS  read-only
  152.     STATUS      current
  153.     DESCRIPTION
  154.     "Maximum defined size of a volume in bytes - low order bytes."
  155.     ::= { volEntry 4 }
  156.  
  157. volSizeHigh OBJECT-TYPE
  158.     SYNTAX      Unsigned32
  159.     MAX-ACCESS  read-only
  160.     STATUS      current
  161.     DESCRIPTION
  162.     "Maximum defined size of a volume in bytes - high order bytes."
  163.     ::= { volEntry 5 }
  164.  
  165. volUsageLow OBJECT-TYPE
  166.     SYNTAX      Unsigned32
  167.     MAX-ACCESS  read-only
  168.     STATUS      current
  169.     DESCRIPTION
  170.     "Current number of bytes a volume is using - low order bytes."
  171.     ::= { volEntry 6 }
  172.  
  173. volUsageHigh OBJECT-TYPE
  174.     SYNTAX      Unsigned32
  175.     MAX-ACCESS  read-only
  176.     STATUS      current
  177.     DESCRIPTION
  178.     "Current number of bytes a volume is using - high order bytes."
  179.     ::= { volEntry 7 }
  180.  
  181. volReserveLow OBJECT-TYPE
  182.     SYNTAX      Unsigned32
  183.     MAX-ACCESS  read-only
  184.     STATUS      current
  185.     DESCRIPTION
  186.     "Number of bytes reserved for a volume - low order bytes."
  187.     ::= { volEntry 8 }
  188.  
  189. volReserveHigh OBJECT-TYPE
  190.     SYNTAX      Unsigned32
  191.     MAX-ACCESS  read-only
  192.     STATUS      current
  193.     DESCRIPTION
  194.     "Number of bytes reserved for a volume - high order bytes."
  195.     ::= { volEntry 9 }
  196.  
  197. volOnline OBJECT-TYPE
  198.     SYNTAX      TruthValue
  199.     MAX-ACCESS  read-only
  200.     STATUS      current
  201.     DESCRIPTION
  202.     "Volume Online (true or false)."
  203.     ::= { volEntry 10 }
  204.  
  205. volNumConnections OBJECT-TYPE
  206.     SYNTAX      Unsigned32
  207.     MAX-ACCESS  read-only
  208.     STATUS      current
  209.     DESCRIPTION
  210.     "Number of iSCSI connections to the volume."
  211.     ::= { volEntry 11 }
  212.  
  213. volStatTimeEpochSeconds OBJECT-TYPE
  214.     SYNTAX      Counter64
  215.     MAX-ACCESS  read-only
  216.     STATUS      current
  217.     DESCRIPTION
  218.     "Time at which the sample was taken, measured in seconds since UNIX epoch."
  219.     ::= { volEntry 12 }
  220.  
  221. volIoReads OBJECT-TYPE
  222.     SYNTAX      Counter64
  223.     MAX-ACCESS  read-only
  224.     STATUS      current
  225.     DESCRIPTION
  226.     "Total cumulative number of Read I/Os (sequential and random)."
  227.     ::= { volEntry 13 }
  228.  
  229. volIoReadTimeMicrosec OBJECT-TYPE
  230.     SYNTAX      Counter64
  231.     MAX-ACCESS  read-only
  232.     STATUS      current
  233.     DESCRIPTION
  234.     "Total cumulative time for Read operation (sequential and random)."
  235.     ::= { volEntry 14 }
  236.  
  237. volIoReadBytes OBJECT-TYPE
  238.     SYNTAX      Counter64
  239.     MAX-ACCESS  read-only
  240.     STATUS      current
  241.     DESCRIPTION
  242.     "Total cumulative number of Read I/O bytes (sequential and random)."
  243.     ::= { volEntry 15 }
  244.  
  245. volIoSeqReads OBJECT-TYPE
  246.     SYNTAX      Counter64
  247.     MAX-ACCESS  read-only
  248.     STATUS      current
  249.     DESCRIPTION
  250.     "Total Number of Sequential Read I/O operations."
  251.     ::= { volEntry 16 }
  252.  
  253. volIoSeqReadBytes OBJECT-TYPE
  254.     SYNTAX      Counter64
  255.     MAX-ACCESS  read-only
  256.     STATUS      current
  257.     DESCRIPTION
  258.     "Total cumulative number of Sequential Read I/O bytes."
  259.     ::= { volEntry 17 }
  260.  
  261. volIoNonseqReadTotalHits OBJECT-TYPE
  262.     SYNTAX      Counter64
  263.     MAX-ACCESS  read-only
  264.     STATUS      current
  265.     DESCRIPTION
  266.     "Total number of Nonsequential Read I/O hits (to Memory and SSD)."
  267.     ::= { volEntry 18 }
  268.  
  269. volIoNonseqReadMemHits OBJECT-TYPE
  270.     SYNTAX      Counter64
  271.     MAX-ACCESS  read-only
  272.     STATUS      current
  273.     DESCRIPTION
  274.     "Total number of Nonsequential Read I/O hits to Memory."
  275.     ::= { volEntry 19 }
  276.  
  277. volIoNonseqReadSSDHits OBJECT-TYPE
  278.     SYNTAX      Counter64
  279.     MAX-ACCESS  read-only
  280.     STATUS      current
  281.     DESCRIPTION
  282.     "Total number of Nonsequential Read I/O hits to SSD."
  283.     ::= { volEntry 20 }
  284.  
  285. volIoReadLatency0uTo100u OBJECT-TYPE
  286.     SYNTAX      Counter64
  287.     MAX-ACCESS  read-only
  288.     STATUS      current
  289.     DESCRIPTION
  290.     "Number of Read I/O operations with latency between 0 and 100 microseconds."
  291.     ::= { volEntry 21 }
  292.  
  293. volIoReadLatency100uTo200u OBJECT-TYPE
  294.     SYNTAX      Counter64
  295.     MAX-ACCESS  read-only
  296.     STATUS      current
  297.     DESCRIPTION
  298.     "Number of Read I/O operations with latency between 100 and 200 microseconds."
  299.     ::= { volEntry 22 }
  300.  
  301. volIoReadLatency200uTo500u OBJECT-TYPE
  302.     SYNTAX      Counter64
  303.     MAX-ACCESS  read-only
  304.     STATUS      current
  305.     DESCRIPTION
  306.     "Number of Read I/O operations with latency between 200 and 500 microseconds."
  307.     ::= { volEntry 23 }
  308.  
  309. volIoReadLatency500uTo1m OBJECT-TYPE
  310.     SYNTAX      Counter64
  311.     MAX-ACCESS  read-only
  312.     STATUS      current
  313.     DESCRIPTION
  314.     "Number of Read I/O operations with latency between 1/2 and 1 milliseconds."
  315.     ::= { volEntry 24 }
  316.  
  317. volIoReadLatency1mTo2m OBJECT-TYPE
  318.     SYNTAX      Counter64
  319.     MAX-ACCESS  read-only
  320.     STATUS      current
  321.     DESCRIPTION
  322.     "Number of Read I/O operations with latency between 1 and 2 milliseconds."
  323.     ::= { volEntry 25 }
  324.  
  325. volIoReadLatency2mTo5m OBJECT-TYPE
  326.     SYNTAX      Counter64
  327.     MAX-ACCESS  read-only
  328.     STATUS      current
  329.     DESCRIPTION
  330.     "Number of Read I/O operations with latency between 2 and 5 milliseconds."
  331.     ::= { volEntry 26 }
  332.  
  333. volIoReadLatency5mTo10m OBJECT-TYPE
  334.     SYNTAX      Counter64
  335.     MAX-ACCESS  read-only
  336.     STATUS      current
  337.     DESCRIPTION
  338.     "Number of Read I/O operations with latency between 5 and 10 milliseconds."
  339.     ::= { volEntry 27 }
  340.  
  341. volIoReadLatency10mTo20m OBJECT-TYPE
  342.     SYNTAX      Counter64
  343.     MAX-ACCESS  read-only
  344.     STATUS      current
  345.     DESCRIPTION
  346.     "Number of Read I/O operations with latency between 10 and 20 milliseconds."
  347.     ::= { volEntry 28 }
  348.  
  349. volIoReadLatency20mTo50m OBJECT-TYPE
  350.     SYNTAX      Counter64
  351.     MAX-ACCESS  read-only
  352.     STATUS      current
  353.     DESCRIPTION
  354.     "Number of Read I/O operations with latency between 20 and 50 milliseconds."
  355.     ::= { volEntry 29 }
  356.  
  357. volIoReadLatency50mTo100m OBJECT-TYPE
  358.     SYNTAX      Counter64
  359.     MAX-ACCESS  read-only
  360.     STATUS      current
  361.     DESCRIPTION
  362.     "Number of Read I/O operations with latency between 50 and 100 milliseconds."
  363.     ::= { volEntry 30 }
  364.  
  365. volIoReadLatency100mTo200m OBJECT-TYPE
  366.     SYNTAX      Counter64
  367.     MAX-ACCESS  read-only
  368.     STATUS      current
  369.     DESCRIPTION
  370.     "Number of Read I/O operations with latency between 100 and 200 milliseconds."
  371.     ::= { volEntry 31 }
  372.  
  373. volIoReadLatency200mTo500m OBJECT-TYPE
  374.     SYNTAX      Counter64
  375.     MAX-ACCESS  read-only
  376.     STATUS      current
  377.     DESCRIPTION
  378.     "Number of Read I/O operations with latency between 200 and 500 milliseconds."
  379.     ::= { volEntry 32 }
  380.  
  381. volIoReadLatency500mTomax OBJECT-TYPE
  382.     SYNTAX      Counter64
  383.     MAX-ACCESS  read-only
  384.     STATUS      current
  385.     DESCRIPTION
  386.     "Number of Read I/O operations with latency above 500 milliseconds."
  387.     ::= { volEntry 33 }
  388.  
  389. volIoWrites OBJECT-TYPE
  390.     SYNTAX      Counter64
  391.     MAX-ACCESS  read-only
  392.     STATUS      current
  393.     DESCRIPTION
  394.     "Total cumulative number of Write I/Os."
  395.     ::= { volEntry 34 }
  396.  
  397. volIoWriteTimeMicrosec OBJECT-TYPE
  398.     SYNTAX      Counter64
  399.     MAX-ACCESS  read-only
  400.     STATUS      current
  401.     DESCRIPTION
  402.     "Total cumulative time for Write operation (sequential and random)."
  403.     ::= { volEntry 35 }
  404.  
  405. volIoWriteBytes OBJECT-TYPE
  406.     SYNTAX      Counter64
  407.     MAX-ACCESS  read-only
  408.     STATUS      current
  409.     DESCRIPTION
  410.     "Total cumulative number of Write I/O bytes (sequential and random)."
  411.     ::= { volEntry 36 }
  412.  
  413. volIoSeqWrites OBJECT-TYPE
  414.     SYNTAX      Counter64
  415.     MAX-ACCESS  read-only
  416.     STATUS      current
  417.     DESCRIPTION
  418.     "Total Number of Sequential Write I/O operations."
  419.     ::= { volEntry 37 }
  420.  
  421. volIoSeqWriteBytes OBJECT-TYPE
  422.     SYNTAX      Counter64
  423.     MAX-ACCESS  read-only
  424.     STATUS      current
  425.     DESCRIPTION
  426.     "Number of Sequential Write I/O bytes."
  427.     ::= { volEntry 38 }
  428.  
  429. volIoWriteLatency0uTo100u OBJECT-TYPE
  430.     SYNTAX      Counter64
  431.     MAX-ACCESS  read-only
  432.     STATUS      current
  433.     DESCRIPTION
  434.     "Number of Write I/O operations with latency between 0 and 100 microseconds."
  435.     ::= { volEntry 39 }
  436.  
  437. volIoWriteLatency100uTo200u OBJECT-TYPE
  438.     SYNTAX      Counter64
  439.     MAX-ACCESS  read-only
  440.     STATUS      current
  441.     DESCRIPTION
  442.     "Number of Write I/O operations with latency between 100 and 200 microseconds."
  443.     ::= { volEntry 40 }
  444.  
  445. volIoWriteLatency200uTo500u OBJECT-TYPE
  446.     SYNTAX      Counter64
  447.     MAX-ACCESS  read-only
  448.     STATUS      current
  449.     DESCRIPTION
  450.     "Number of Write I/O operations with latency between 200 and 500 microseconds."
  451.     ::= { volEntry 41 }
  452.  
  453. volIoWriteLatency500uTo1m OBJECT-TYPE
  454.     SYNTAX      Counter64
  455.     MAX-ACCESS  read-only
  456.     STATUS      current
  457.     DESCRIPTION
  458.     "Number of Write I/O operations with latency between 1/2 and 1 milliseconds."
  459.     ::= { volEntry 42 }
  460.  
  461. volIoWriteLatency1mTo2m OBJECT-TYPE
  462.     SYNTAX      Counter64
  463.     MAX-ACCESS  read-only
  464.     STATUS      current
  465.     DESCRIPTION
  466.     "Number of Write I/O operations with latency between 1 and 2 milliseconds."
  467.     ::= { volEntry 43 }
  468.  
  469. volIoWriteLatency2mTo5m OBJECT-TYPE
  470.     SYNTAX      Counter64
  471.     MAX-ACCESS  read-only
  472.     STATUS      current
  473.     DESCRIPTION
  474.     "Number of Write I/O operations with latency between 2 and 5 milliseconds."
  475.     ::= { volEntry 44 }
  476.  
  477. volIoWriteLatency5mTo10m OBJECT-TYPE
  478.     SYNTAX      Counter64
  479.     MAX-ACCESS  read-only
  480.     STATUS      current
  481.     DESCRIPTION
  482.     "Number of Write I/O operations with latency between 5 and 10 milliseconds."
  483.     ::= { volEntry 45 }
  484.  
  485. volIoWriteLatency10mTo20m OBJECT-TYPE
  486.     SYNTAX      Counter64
  487.     MAX-ACCESS  read-only
  488.     STATUS      current
  489.     DESCRIPTION
  490.     "Number of Write I/O operations with latency between 10 and 20 milliseconds."
  491.     ::= { volEntry 46 }
  492.  
  493. volIoWriteLatency20mTo50m OBJECT-TYPE
  494.     SYNTAX      Counter64
  495.     MAX-ACCESS  read-only
  496.     STATUS      current
  497.     DESCRIPTION
  498.     "Number of Write I/O operations with latency between 20 and 50 milliseconds."
  499.     ::= { volEntry 47 }
  500.  
  501. volIoWriteLatency50mTo100m OBJECT-TYPE
  502.     SYNTAX      Counter64
  503.     MAX-ACCESS  read-only
  504.     STATUS      current
  505.     DESCRIPTION
  506.     "Number of Write I/O operations with latency between 50 and 100 milliseconds."
  507.     ::= { volEntry 48 }
  508.  
  509. volIoWriteLatency100mTo200m OBJECT-TYPE
  510.     SYNTAX      Counter64
  511.     MAX-ACCESS  read-only
  512.     STATUS      current
  513.     DESCRIPTION
  514.     "Number of Write I/O operations with latency between 100 and 200 milliseconds."
  515.     ::= { volEntry 49 }
  516.  
  517. volIoWriteLatency200mTo500m OBJECT-TYPE
  518.     SYNTAX      Counter64
  519.     MAX-ACCESS  read-only
  520.     STATUS      current
  521.     DESCRIPTION
  522.     "Number of Write I/O operations with latency between 200 and 500 milliseconds."
  523.     ::= { volEntry 50 }
  524.  
  525. volIoWriteLatency500mTomax OBJECT-TYPE
  526.     SYNTAX      Counter64
  527.     MAX-ACCESS  read-only
  528.     STATUS      current
  529.     DESCRIPTION
  530.     "Number of Write I/O operations with latency above 500 milliseconds."
  531.     ::= { volEntry 51 }
  532.  
  533. volDiskVolBytesUsedLow OBJECT-TYPE
  534.     SYNTAX      Unsigned32
  535.     MAX-ACCESS  read-only
  536.     STATUS      current
  537.     DESCRIPTION
  538.     "Total number of bytes used on disk for volumes - low order bytes."
  539.     ::= { volEntry 52 }
  540.  
  541. volDiskVolBytesUsedHigh OBJECT-TYPE
  542.     SYNTAX      Unsigned32
  543.     MAX-ACCESS  read-only
  544.     STATUS      current
  545.     DESCRIPTION
  546.     "Total number of bytes used on disk for volumes - high order bytes."
  547.     ::= { volEntry 53 }
  548.  
  549. volDiskSnapBytesUsedLow OBJECT-TYPE
  550.     SYNTAX      Unsigned32
  551.     MAX-ACCESS  read-only
  552.     STATUS      current
  553.     DESCRIPTION
  554.     "Total number of bytes used on disk for snapshots - low order bytes."
  555.     ::= { volEntry 54 }
  556.  
  557. volDiskSnapBytesUsedHigh OBJECT-TYPE
  558.     SYNTAX      Unsigned32
  559.     MAX-ACCESS  read-only
  560.     STATUS      current
  561.     DESCRIPTION
  562.     "Total number of bytes used on disk for snapshots - high order bytes."
  563.     ::= { volEntry 55 }
  564.  
  565. ---
  566. --- Global Stats
  567. ---
  568.  
  569. globalStats OBJECT IDENTIFIER ::= { variables 3 }
  570.  
  571. statTimeEpochSeconds OBJECT-TYPE
  572.     SYNTAX      Counter64
  573.     MAX-ACCESS  read-only
  574.     STATUS      current
  575.     DESCRIPTION
  576.     "Time at which the sample was taken, measured in seconds since UNIX epoch."
  577.     ::= { globalStats 1 }
  578.  
  579. ioReads OBJECT-TYPE
  580.     SYNTAX      Counter64
  581.     MAX-ACCESS  read-only
  582.     STATUS      current
  583.     DESCRIPTION
  584.     "Total cumulative number of Read I/Os (sequential and random)."
  585.     ::= { globalStats 2 }
  586.  
  587. ioSeqReads OBJECT-TYPE
  588.     SYNTAX      Counter64
  589.     MAX-ACCESS  read-only
  590.     STATUS      current
  591.     DESCRIPTION
  592.     "Total cumulative number of Sequential Read I/Os."
  593.     ::= { globalStats 3 }
  594.  
  595. ioWrites OBJECT-TYPE
  596.     SYNTAX      Counter64
  597.     MAX-ACCESS  read-only
  598.     STATUS      current
  599.     DESCRIPTION
  600.     "Total cumulative number of Write I/Os."
  601.     ::= { globalStats 4 }
  602.  
  603. ioSeqWrites OBJECT-TYPE
  604.     SYNTAX      Counter64
  605.     MAX-ACCESS  read-only
  606.     STATUS      current
  607.     DESCRIPTION
  608.     "Total cumulative number of Sequential Write I/Os."
  609.     ::= { globalStats 5 }
  610.  
  611. ioReadTimeMicrosec OBJECT-TYPE
  612.     SYNTAX      Counter64
  613.     MAX-ACCESS  read-only
  614.     STATUS      current
  615.     DESCRIPTION
  616.     "Total cumulative microseconds the system has spent processing Read I/Os.  This includes system and disk latency, but not any network latency back to the initiator."
  617.     ::= { globalStats 6 }
  618.  
  619. ioWriteTimeMicrosec OBJECT-TYPE
  620.     SYNTAX      Counter64
  621.     MAX-ACCESS  read-only
  622.     STATUS      current
  623.     DESCRIPTION
  624.     "Total cumulative microseconds the system has spent processing Write I/Os.  This includes system and disk latency, but not any network latency back to the initiator."
  625.     ::= { globalStats 7 }
  626.  
  627. ioReadBytes OBJECT-TYPE
  628.     SYNTAX      Counter64
  629.     MAX-ACCESS  read-only
  630.     STATUS      current
  631.     DESCRIPTION
  632.     "Total cumulative number of Read I/O bytes (sequential and random)."
  633.     ::= { globalStats 8 }
  634.  
  635. ioSeqReadBytes OBJECT-TYPE
  636.     SYNTAX      Counter64
  637.     MAX-ACCESS  read-only
  638.     STATUS      current
  639.     DESCRIPTION
  640.     "Total cumulative number of Sequential Read I/O bytes."
  641.     ::= { globalStats 9 }
  642.  
  643. ioWriteBytes OBJECT-TYPE
  644.     SYNTAX      Counter64
  645.     MAX-ACCESS  read-only
  646.     STATUS      current
  647.     DESCRIPTION
  648.     "Total cumulative number of Write I/O bytes (sequential and random)."
  649.     ::= { globalStats 10 }
  650.  
  651. ioSeqWriteBytes OBJECT-TYPE
  652.     SYNTAX      Counter64
  653.     MAX-ACCESS  read-only
  654.     STATUS      current
  655.     DESCRIPTION
  656.     "Total cumulative number of Sequential Write I/O bytes."
  657.     ::= { globalStats 11 }
  658.  
  659. diskVolBytesUsedLow OBJECT-TYPE
  660.     SYNTAX      Unsigned32
  661.     MAX-ACCESS  read-only
  662.     STATUS      current
  663.     DESCRIPTION
  664.     "Total number of bytes used on disk for volumes - low order bytes."
  665.     ::= { globalStats 12 }
  666.  
  667. diskVolBytesUsedHigh OBJECT-TYPE
  668.     SYNTAX      Unsigned32
  669.     MAX-ACCESS  read-only
  670.     STATUS      current
  671.     DESCRIPTION
  672.     "Total number of bytes used on disk for volumes - high order bytes."
  673.     ::= { globalStats 13 }
  674.  
  675. diskSnapBytesUsedLow OBJECT-TYPE
  676.     SYNTAX      Unsigned32
  677.     MAX-ACCESS  read-only
  678.     STATUS      current
  679.     DESCRIPTION
  680.     "Total number of bytes used on disk for snapshots - low order bytes."
  681.     ::= { globalStats 14 }
  682.  
  683. diskSnapBytesUsedHigh OBJECT-TYPE
  684.     SYNTAX      Unsigned32
  685.     MAX-ACCESS  read-only
  686.     STATUS      current
  687.     DESCRIPTION
  688.     "Total number of bytes used on disk for snapshots - high order bytes."
  689.     ::= { globalStats 15 }
  690.  
  691. ioNonseqReadHits OBJECT-TYPE
  692.     SYNTAX      Counter64
  693.     MAX-ACCESS  read-only
  694.     STATUS      current
  695.     DESCRIPTION
  696.     "Total cumulative number of cache hits for Non-Sequential Read I/Os."
  697.     ::= { globalStats 16 }
  698.  
  699. --
  700. -- Nimble arrays
  701. --
  702.  
  703. arrays OBJECT IDENTIFIER ::= { nimble 3 }
  704.  
  705. arrayEntry OBJECT-TYPE
  706.     SYNTAX      DisplayString
  707.     MAX-ACCESS  not-accessible
  708.     STATUS      current
  709.     DESCRIPTION
  710.     "Nimble Array."
  711.     ::= { arrays 1 }
  712.  
  713.  
  714. END
  715.  

Replies to Nimble Storage MIBS rss

Title Name Language When
Re: Nimble Storage MIBS Mustard Monkey text 5 Years ago.
Re: Nimble Storage MIBS Buff Penguin python 5 Years ago.