<p>check_oracle in the 1.4.15 release doesn't correctly check for pmon +ASM instance from at least Oracle 11 as the pmon proces was renamed from ora_pmon_.* to asm_pmon_.*.<br>
Small change in the code is needed<br>
....old<br>
--db)<br>
    pmonchk=<code>ps -ef | grep -v grep | grep -c "ora_pmon_${2}$"</code><br>
    if [ ${pmonchk} -ge 1 ] ; then<br>
.... repaired<br>
--db)<br>
    pmonchk=<code>ps -ef | grep -v grep | grep -c "ora_pmon_${2}$"</code><br>
    pmonchk=$(($pmonchk+<code>ps -ef | grep -v grep | grep -c "asm_pmon_${2}$"</code>))<br>
    if [ ${pmonchk} -ge 1 ] ; then</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br>Reply to this email directly or <a href='https://github.com/nagios-plugins/nagios-plugins/issues/1207'>view it on GitHub</a>.<img src='https://github.com/notifications/beacon/_EHT0K2RMtzboqJPrl-P-M5xUbFkXaxIlZG8cCNAzanADZRMjJa2auev9gn3542Z.gif' height='1' width='1'></p>