You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When raising an alarm twice, the additional info is not updated.
% There is not much space left on hda2
> ok = elarm:raise(partition_full, "/dev/hda2", [{level,90}])
% There is even less space left on hda2
> ok = elarm:raise(partition_full, "/dev/hda2", [{level,92}])
Afterwards, I would expect level to be 92, but it is 90:
I suggest changing elarm so that it will update the additional info with each raise.
The question arises whether we need to send notifications about the additional info being changed. In the longer term, probably yes, but I suggest not implementing that yet, because another missing Elarm feature is changing the severity of an existing alarm, and these may affect each other.
The text was updated successfully, but these errors were encountered:
When raising an alarm twice, the additional info is not updated.
Afterwards, I would expect
level
to be 92, but it is 90:I suggest changing elarm so that it will update the additional info with each raise.
The question arises whether we need to send notifications about the additional info being changed. In the longer term, probably yes, but I suggest not implementing that yet, because another missing Elarm feature is changing the severity of an existing alarm, and these may affect each other.
The text was updated successfully, but these errors were encountered: