Giter Site home page Giter Site logo

zbx-hpmsa's Introduction

zbx-hpmsa

Utility for retrieve hardware info and stats about HPE MSA storages via XML API for Zabbix Monitoring Platform.
Zabbix Share page: https://share.zabbix.com/component/mtree/storage-devices/hp/hp-msa-2040-xml-api

zbx-hpmsa provides ability to make Low Level Discovery (LLD) of HPE MSA storage components via it's XML API and retrieve many of some other metrics like health statuses, temperature etc.
Developed with Python 3.7, works with Python 3.4 and higher.

Latest stable versions: 0.7.4

Please, read Requirements and Installation section on Wiki page before use.

v0.6 vs v0.7

There are a couple of important changes in v0.7 of the script:

  • Removed 'health' argument. It was used for working with old Zabbix versions, which doesn't support JSONPath preprocessing (like 3.0 and 3.2). So, version 0.7 supports only Zabbix 4.0 and 4.2; 3.4 also will work, but LLD doesn't;
  • Version 0.7 breaks compatibility with template distributed for version 0.6.x. Now, master item contains JSON with shorten key names.
    E.g. version 0.6.8 outpul was:
[root@server ~]# ./zbx-hpmsa_v0.6.8.py full storage-ip-address fans
{"fan_1.1":{"health-num":"0","status-num":"0","speed":"3770"},"fan_1.2":{"health-num":"0","status-num":"0","speed":"3910"}}

And from 0.7 it becomes like that:

[root@server ~]# ./zbx-hpmsa_v0.7.py full storage-ip-address fans
{"fan_1.1":{"h":"0","s":"0","sp":"3910"},"fan_1.2":{"h":"0","s":"0","sp":"3920"}} 

I hope it will reduce total received bytes by Zabbix database.

  • Also, version 0.7 contains two new cli arguments: '--pretty' and '--human'. The first one is for printing JSON with linebeaks and the second for translate shorten JSON keys to full human readable names.
[root@server ~]# ./zbx-hpmsa_v0.7.py --pretty full storage-ip-address fans
{
  "fan_1.1":{
    "h":"0",
    "s":"0",
    "sp":"3900"
  },
  "fan_1.2":{
    "h":"0",
    "s":"0",
    "sp":"3930"
  }
}
[root@server ~]# ./zbx-hpmsa_v0.7.py --human --pretty full storage-ip-address fans
{
  "fan_1.1":{
    "health":"0",
    "status":"0",
    "speed":"3890"
  },
  "fan_1.2":{
    "health":"0",
    "status":"0",
    "speed":"3930"
  }
}

Dependencies

  • requests
  • sqlite3

Feautres

Common:

  • Bulk requests for dependent items (Zabbix 4.0+)
  • HTTPS support
  • Login cache (SQLite3)
  • 'install' argument to prepare script to work

LLD and full data in JSON:

  • Physical disks
  • Controllers
  • Enclosures
  • Ports
  • Pools
  • Disk groups
  • Power supplies
  • Fans
  • Volumes

Usage

You can find more examples on Wiki page, but I placed some cases here too.

  • LLD of enclosures, controllers, virtual disks and physical disks:
[root@server ~] # ./zbx-hpmsa.py lld 10.0.0.1 volumes
{"data":[{"{#VOLUME.ID}":"Test_Volume","{#VOLUME.SN}":"00c0ff2896a400008fb7265a01000000","{#VOLUME.TYPE}":"standard"}}
  • Request full available data in JSON. E.g. all disks:
[root@server ~] # ./zbx-hpmsa.py full 10.0.0.1 disks
{"1.1":{"h":"0","t":"25","ts":"1","cj":"0","poh":"15050"},"1.2":{"h":"0","t":"25","ts":"1","cj":"0","poh":"15050"}, ... }

Zabbix templates

In addition I've attached preconfigured Zabbix Templates here, so you can use them in your environment and build your own template based on it.
Templates using LLD functionality and {HOST.CONN} macro to determine HTTP(S) connection URL, so make sure that it points to right DNS name or IP and your MSA has HTTP(S) protocol enabled.
Also template expects what MSA storage has default user with default password - 'monitor'@'!monitor', but if it isn't true - correct it with '-u' and '-p' or '-f|--login-file' options.
If you want to use HTTPS, you must correct template and be sure what {HOST.CONN} macro contains FQDN. By the way, look at relevant Wiki page for HTTPS support.
Started with version v0.5.4 I've attached new template file for Zabbix 4.0, which using dependent items functionality and can retrieve much more metrics from storage than earlier versions. Check Wiki to read more about it or if you speak russian look at my post on habr.com.

Have fun and don't forget to rate it on share.zabbix.com if you like it. =)

Tested myself with:
HPE MSA 2040, HPE MSA 2050

Reported about correct working with
HP MSA P2000 G3, HP MSA2324FC (2000 G2 series, I think, will works too)

Known Issues:

  • Using '--https verify' with round-robin DNS name doesn't works correctly. It may give you the "ERROR: -10027", that means the user in not recongnized on the system. It happens because of session key was given from one MSA controller, but the script tries to establish connections the other one. The option '--https direct|--ssl direct' will works fine, so you can try to use it instead. I haven't full solution right now, so just don't using it so. =)

zbx-hpmsa's People

Contributors

asand3r avatar frei-style avatar rmonakhov avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.