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