In the Oracle probe documentation it is said that if the checkbox "Enable Threshold On Space" is activated, two parameters will be evaluated before generating an alert for lack of space in tablespace at checkpoint "tablespace_free".
It turns out that enabling that checkbox and it continues to evaluate only the percentage parameter instead of evaluating percentage and space together (Gb).
Release : 8.51 or superior
Component : UIM - ORACLE
When the user creates a profile through the admin console the key key_col_name = FREESP is not getting added inside the threshold of tablespace_free checkpoint.
For work around add key key_col_name = FREESP under the threshold section of tablespace_free checkpoint. (As highlighted below).
<thresholds>
<default>
<0>
msg_val = Profile $profile, instance $instance, tablespace $NAME has $PCT% ($FREESP) free space available (autoext.:$AUTOEXT, chunks:$CHUNKS)
key_col_value = 30
msg = tablespace_free_2
sev = information
checkName = tablespace_free
testVal = default_0
key_col_name = FREESP
default = default
value = 100
</0>
</default>
</thresholds>