do we have updated HPE Synergy by HTTP Template for actual Synergy OneView? Default template is for x-api-version 1200 (OneView 5.0), my version is 6.6 (x-api 3800), template from Zabbix 6.2 does not work with this OneView. Do we have any solution? thank you, Tomas
Ad Widget
Collapse
HPE Synergy by HTTP Template for Synergy OneView 6.6
Collapse
X
-
What do you think is their main goal...? To create a software, that you can use, or throw out templates for every possible thing there is out in internets? Do you even imagine, what it takes to create a proper template? For starters having access to mentioned software and version... Can you provide it? Please contact them, tell, that you have and can give them access to update certain templates...
There is paid support, if it so much bothers you, that something is not updated, please open your wallet and pay for quicker resolution...Comment
-
Yup, I don't deny that keeping up with things like API changes on every single template Zabbix writes would be a significant amount of work. I also never suggested that Zabbix write a template for "every possible thing there is out in Internets". I did however express disappointment that a template Zabbix wrote for monitoring HPE Synergy systems is literally years behind in API changes.
I fully endorse paying for open source software that we use in our organization. I literally just deployed Zabbix this week to test how well it would work for monitoring an HPE Synergy environment that I'm in the process of putting into production. For the reason I mentioned, Zabbix is not the turn-key solution I'd hoped for, but it does have potential so paid support may be in the cards.
-
-
Yea.. that "every possible thing there is out in Internets" was a bit exaggerated, have to admit... And seems my mood was not the best on Friday..
I have see too many first time posters, who only come to whine about something that is not really related to forum or product... so I sometimes just lash out a bit.. Sry bout that...
But that existing HPE synergy template may as well work ok with newer API versions, There's not too many differences... Which can be worked out with some testing.
Comment
-
I found a bug in Synergy by HTTP Template.
In line 27 of the script [HPE Synergy: Get data], it says "response = request.post(Synergy.params.base_url + 'rest/version');", but it should be "response = request.get( Synergy.params.base_url + 'rest/version');" is a mistake.
Now it works with OneView 6.6.Comment
-
I've found a couple of additional updates that needed to be made to the Get data script. I'm using an external directory for authentication, but a local zabbix read-only user. in the login function on lines 66 I needed to insert the following additional parameters (in addition to existing userName/password) Modify the LoginDomain to suite:
'authLoginDomain': 'Local',
'loginMsgAck': true,
Finally, in the logout function, it was not passing the auth token in the header (https://techlibrary.hpe.com/docs/ent...login-sessions). Within 24hrs i started getting errors about the number of login session tokens for 24hours being exceeded.
Adding this: request.addHeader('Auth: ' + Synergy.session_id); just before the request.delete function should solve that issue as well.Comment
Comment