Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - ArnaHud

#1
General Support / Server temperature
June 25, 2015, 10:49:54 AM
Hi there !
Here's my problem : I want to get the temperature of my servers.
For this, I use :
"Temperature of CPU's thermal zone:
WMI.Query(root\WMI,"select * from MSAcpi_ThermalZoneTemperature",CurrentTemperature)
This temperature is in tenths of degrees Kelvin, so you need to add transformation script:
for Celsius:
($1-2730)/10"

The problem is, with that WMI query + transformation script, I always get 8 degrees ...
Is someone got this problem already ? Or is there another solution to get the temperature ?

Thanks,
Arnaud
#2
General Support / Re: Delay alarms
April 21, 2015, 03:23:43 PM
Hi,
After more tests, it seems to work perfectly with your method Victor.
Thank you very much for your time !
#3
General Support / Re: Delay alarms
April 20, 2015, 04:25:22 PM
If I'm not mistaking, I have to put this script in the "Transformation" of my DCI ?
But for the second part, I don't see how to say at least 5 polls in my threshold ... Is it with an "Operation >= 5" and the "Last polled value" at 1 ?
Sorry for my "noob" questions, I have a bit of trouble on this as you can see  :-[

Edit : Nevermind, I think I just understood my mistake ... In the threshold panel, I thought "Last Polled Value" was like the last value returned, and in fact it's the duration, the number of polls ... So in my case "Last polled value" at 5 and "Operation == 1".
#4
General Support / Re: Delay alarms
April 20, 2015, 11:29:22 AM
Ah yes, i didn't see this, thank you !
Once I have changed this value (for 5), will NetXMS see the change of state immediately (in the last values of the status agent of a node), or the values will change after the "PollCountForStatusChange" ?
It could be awesome, like that I could see if a node interface was done for a poll status, but was up the next one (it could be just a restart or a signal lost and I don't need to receive a mail for this one).
I don't know if I'm clear with this  :P

Edit : I just tried this solution, it's working, but not totally as I want. I'd like to have the node down in the NetXMS console after the first poll status, but receive a mail if he's down for 5 min (after 5 polls status down).
Here the state change just after 5 min, so in this period of time, I don't see it down (it takes 5 polls to tell me that the node is down, and 5 new polls for up where I'd like to know at the first poll that he's up ^^).
#5
General Support / Re: Delay alarms
April 20, 2015, 10:36:04 AM
Hi,
Thanks for your answer.
But with this solution, I have to set the "required poll count" of every node interfaces to the number I want, that's a bit long ...
Is there a quicker solution to do it, for example for a whole Infrastructure Services Group or a Template ?
I'd like to do this on all my servers and switches.

Thanks !
#6
General Support / Delay alarms
April 16, 2015, 03:47:39 PM
Hi there !
First of all, congrats for your awesome application, NetXMS is great  :)

Now for my question : I'd like to delay the notification when a node is down, but i seem to do something wrong, I don't find how to do it.
In my case, I want to receive a mail notification when a node is down for like 5min (because sometime, the equipment just has some trouble to get the Wifi and get disconnected for a few seconds to one minute, and I don't want to be alerted for that).
The mail notification is working, but it's send just 1-2 min after the node goes down ...
Is there an option I'm missing to do that ? Or do I need to do some scripting for this ?

Thanks !