Difference between revisions of "ZenPack:Nimble"
(Created page with "{{ZenPack |Summary=This ZenPack is to manage Nimble storage arrays using the SNMP protocol. A new nimble device type is created with a new component type to represent volumesT...") |
|||
Line 1: | Line 1: | ||
{{ZenPack | {{ZenPack | ||
− | |Summary=This | + | |Summary=This ZenPack is to manage Nimble storage arrays using the SNMP protocol. A new nimble device type is created with a new component type to represent volumes. |
The ZenPack provides a modeler plugin to discover all volumes for a Nimble device. | The ZenPack provides a modeler plugin to discover all volumes for a Nimble device. | ||
Line 73: | Line 73: | ||
ZenPacks.zenoss.PythonCollector at least 1.6 | ZenPacks.zenoss.PythonCollector at least 1.6 | ||
ZenPacks.zenoss.CalculatedPerformance 2.0.4 or higher | ZenPacks.zenoss.CalculatedPerformance 2.0.4 or higher | ||
− | |||
− | |||
{{ZenPackFooter}} | {{ZenPackFooter}} |
Latest revision as of 17:49, 17 June 2015
- Author(s)
- Jane Curry
- Current Maintainer(s)
- Jane Curry
- Organization
- Skills 1st
- License
- GNU General Public License, Version 2
- ZenPack name
- ZenPacks.community.Nimble
- More Information
- GitHub page/HomePage
- Link to more docs
- View Documentation
- Git sources (for cloning)
- Link
Devices Monitored:
Nimble ZenPack
The ZenPack provides a modeler plugin to discover all volumes for a Nimble device.
It also provides device classes of /Storage and /Storage/Nimble.
A performance template is provided to gather and graph the scalar data listed above. The ZenPack binds this template to the /Storage/Nimble device class.
A component performance template is provided to gather data for volume usage and graph that data. Note that component templates must not be manually bound - they bind automatically to the object type that exactly matches the name of the template.
The two Nimble MIBs are included in the ZenPack.
A new event is raised on volume performance thresholds. This event includes a transform to improve the summary field of the event.
Because this ZenPack needs to perform functions on SNMP values in performance templates, the Zenoss Calculated Performance ZenPack is a prerequisite, which itself has a prerequisite of the Python Collector ZenPack. Objects
A new device object class - NimbleDevice - with a relationship of nimbleVolume (note capitalisation) A new component object class for a NimbleDevice - NimbleVolume - with a relationship nimbleDevice Modeler Plugins
A modeler plugin - NimbleVolumeMap - which gathers id, name, various sizes, online status and number of connections. The three sets of size data are in 2 MIB values - high 32 bits and low 32 bits. The modeler combines these values to present a single value in the NimbleVolume object. We believe that the raw SNMP data is in MB. The modeler divides this by 1024 to present values as GB.
The NimbleVolumeMap plugin is assigned to the /Storage/Nimble device class by the ZenPack. Templates
Device-level template - NimbleGlobalStats - is available for device classes from /Storage/Nimble. It is bound to this device class in the ZenPack. It gathers and graphs ioreads/writes, ioSeqReads/Writes and ioNonSeqReadHits.
Component template NimbleVolume (note the name exactly matches the new object class), is available for device classes from /Storage/Nimble. It must not be manually bound. It gathers volUsageHigh and volUsageLow SNMP tables. To convert these values into a single datapoint, the Zenoss Calculated Performance ZenPack is used to create a new datapoint of volUsage. These values are all in MB.
Two thresholds are supplied for "30 percent used" and "90 percent used". They access the object's value for VolSize (ie the maximum size of the volume) and then threshold the VolUsage datapoint at the respective percentages. The threshold value is multiplied by 1024 (as the VolSize object data delivered by the modeler is given in GB). They generate a /Perf/Nimble event if the threshold is breached.
Graphs are delivered of volUsageLow and volUsage. Note that the volUsage datapoint in the VolUsage graph has been modified with an RPN (Reverse Polish Notation) formula of 1024,*,1024,* . This does not affect the value stored in the rrd datafile but does ensure that graph actually shows bytes, rather than MB. The autoscaling of the rrdgraph utility then automatically applies appropriate M / G / T on the labels. zProperties
This ZenPack introduces no new zProperties but it does set the zPythonClass property to ZenPacks.community.Nimble.NimbleDevice for the device class /Storage/Nimble. MIBs
Two MIBs are supplied with this ZenPack:
NIMBLE-TRAP-MIB NIMBLE-MIB
Events
The performance template has a threshold which generates an event of class /Perf/Nimble. The event has a transform which improves the output of the summary field. The event is included in the ZenPack.Warning
The ZenPack Catalog has moved to its new home at https://www.zenoss.com/product/zenpacks as of January 17, 2017. The following information may be out of date, and this page will eventually be removed.
Support
This ZenPack is developed by the Zenoss user community and supported via our online forums. Zenoss, Inc. does not provide direct support for this ZenPack.
Releases
- Version 1.0.1- Download
- Released on 2015/04/28
- Compatible with Zenoss Core 4.2.x, Zenoss Resource Manager 4.1.x, Zenoss Resource Manager 4.2.x
Background
This ZenPack has 2 prerequisites:
ZenPacks.zenoss.PythonCollector at least 1.6 ZenPacks.zenoss.CalculatedPerformance 2.0.4 or higher
Installation
Normal Installation (packaged egg)
- Download the appropriate egg file for the version of Zenoss you are running.
- Ensure you are logged in as the zenoss user:
$ sudo su - zenoss
- Install the ZenPack:
$ zenpack --install ZenPacks.community.Nimble-*.egg
- Restart these services:
$ Restart Zenoss
Developer Mode Installation
In order to do a development mode installation you will want to clone the existing git repository, and then use the --link flag with the zenpack command:
- Ensure you are logged in as the zenoss user:
$ sudo su - zenoss
- Start by cloning the upstream repository:
$ git clone https://github.com/jcurry/ZenPacks.community.Nimble
- Next, perform the installation:
$ zenpack --link --install ZenPacks.community.Nimble
- Finally, restart these serivices:
$ Restart Zenoss
Discuss
New: Don't forget to add yourself to the Zenoss User Map!