Hello,
I would like to use actions to run automated commands.
I have 3 triggers to alert if the size of 3 files become to large. I have 1 to alert if the free space on the disk become to small.
What I would like to do is check if : one of the first 3 AND the second are in problem, auto run a command.
But, when I try to do it, I add the triggers in condition section and I obtain :
(A or B or C or D) and (E)
(A) trigger = "Size of /file1 is too high (>50 Mo)"
(B) trigger = "Size of /file2 is too high (>50 Mo)"
(C) trigger = "Size of /file3 is too high (>50 Mo)"
(D) trigger = "Low free disk space on volume /"
(E) Trigger value = "PROBLEM"
WHEREAS I would like to have :
((A or B or C) and D) and (E)
(A) trigger = "Size of /file1 is too high (>50 Mo)"
(B) trigger = "Size of /file2 is too high (>50 Mo)"
(C) trigger = "Size of /file3 is too high (>50 Mo)"
(D) trigger = "Low free disk space on volume /"
(E) Trigger value = "PROBLEM"
or something like that...
Is it possible ? Should it be done another way ?
I would like to use actions to run automated commands.
I have 3 triggers to alert if the size of 3 files become to large. I have 1 to alert if the free space on the disk become to small.
What I would like to do is check if : one of the first 3 AND the second are in problem, auto run a command.
But, when I try to do it, I add the triggers in condition section and I obtain :
(A or B or C or D) and (E)
(A) trigger = "Size of /file1 is too high (>50 Mo)"
(B) trigger = "Size of /file2 is too high (>50 Mo)"
(C) trigger = "Size of /file3 is too high (>50 Mo)"
(D) trigger = "Low free disk space on volume /"
(E) Trigger value = "PROBLEM"
WHEREAS I would like to have :
((A or B or C) and D) and (E)
(A) trigger = "Size of /file1 is too high (>50 Mo)"
(B) trigger = "Size of /file2 is too high (>50 Mo)"
(C) trigger = "Size of /file3 is too high (>50 Mo)"
(D) trigger = "Low free disk space on volume /"
(E) Trigger value = "PROBLEM"
or something like that...
Is it possible ? Should it be done another way ?
Comment