Hi Trond,<br><br>Thank you so much! it worked very well.<br><br><br><div class="gmail_quote">On Fri, Apr 13, 2012 at 20:37, Trond Hasle Amundsen <span dir="ltr"><<a href="mailto:t.h.amundsen@usit.uio.no">t.h.amundsen@usit.uio.no</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div></div><div class="h5">Leonardo Bacha Abrantes <<a href="mailto:leonardo@lbasolutions.com">leonardo@lbasolutions.com</a>> writes:<br>


<br>
> Hi everybody!<br>
><br>
> I'm using check_openmanage plugin in nagios to monitoring the temperature of my<br>
> dell servers.<br>
> It's working, however, the warning and critical alerts that I configure are not<br>
> working.<br>
><br>
> [root@monitor:/etc/openmanage]# /usr/lib/nagios/plugins/check_openmanage -w 25<br>
> -c 30 -H 10.11.12.1 -C Test--only temp<br>
> TEMPERATURES OK - 1 temperature probes checked:<BR>Temperature Probe 0 [System<br>
> Board Ambient Temp] reads 30 C (min=8/3, max=42/47)<br>
><br>
> The temperature is 30 and the check should appear WARNING because I used -w 25.<br>
<br>
</div></div>Hello Leonardo,<br>
<br>
The syntax you're using with the '-w' and '-c' options is wrong. From<br>
the manual page:<br>
<br>
       -w, --warning STRING or FILE<br>
           Override the machine-default temperature warning<br>
           thresholds. Syntax is "id1=max[/min],id2=max[/min],...". The<br>
           following example sets warning limits to max 50C for probe 0,<br>
           and max 45C and min 10C for probe 1:<br>
<br>
           check_openmanage -w 0=50,1=45/10<br>
<br>
           The minimum limit can be omitted, if desired. Most often, you<br>
           are only interested in setting the maximum thresholds.<br>
<br>
           This parameter can be either a string with the limits, or a<br>
           file containing the limits string. The option can be<br>
           specified multiple times.<br>
<br>
           NOTE: This option should only be used to narrow the field of<br>
           OK temperatures wrt. the OMSA defaults. To expand the field<br>
           of OK temperatures, increase the OMSA thresholds. See the<br>
           plugin web page for more information.<br>
<br>
       -c, --critical STRING or FILE<br>
           Override the machine-default temperature critical<br>
           thresholds. Syntax and behaviour is the same as for warning<br>
           thresholds described above.<br>
<br>
The reason that you need to specify the ID of the temperature probes is<br>
that there may be more than one, each with its own thresholds. In your<br>
case there is only one probe and its ID is 0, so replace your command<br>
above with:<br>
<br>
  check_openmanage -w 0=25 -c 0=30 -H 10.11.12.1 -C Test --only temp<br>
<br>
That should do the trick.<br>
<br>
Regards,<br>
--<br>
Trond H. Amundsen <<a href="mailto:t.h.amundsen@usit.uio.no">t.h.amundsen@usit.uio.no</a>><br>
Center for Information Technology Services, University of Oslo<br>
<br>
------------------------------------------------------------------------------<br>
For Developers, A Lot Can Happen In A Second.<br>
Boundary is the first to Know...and Tell You.<br>
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!<br>
<a href="http://p.sf.net/sfu/Boundary-d2dvs2" target="_blank">http://p.sf.net/sfu/Boundary-d2dvs2</a><br>
_______________________________________________<br>
Nagios-users mailing list<br>
<a href="mailto:Nagios-users@lists.sourceforge.net">Nagios-users@lists.sourceforge.net</a><br>
<a href="https://lists.sourceforge.net/lists/listinfo/nagios-users" target="_blank">https://lists.sourceforge.net/lists/listinfo/nagios-users</a><br>
::: Please include Nagios version, plugin version (-v) and OS when reporting any issue.<br>
::: Messages without supporting info will risk being sent to /dev/null<br>
</blockquote></div><br>