Using Zabbix 3.4.
I have a web scenario defined that has these settings:
Interval = 1m
Attempts = 2
Steps:
1) Timeout = 15s
2) Timeout = 15s
When this runs...how many 'failures' will it report if both attempts fail? How long is it between 'attempts'?
I'm wondering about my Trigger that watches this Scenario. I want the trigger to be a bit robust, to prevent flopping. So I would like the two most recent results to both be failures.
But if my Scenario is returning 2 failures for 1 check, because it attempts it twice, then that will throw off my calculation. I'm guessing it only returns 1 failure, and only if both 'Attempts' fail the test.
I have a web scenario defined that has these settings:
Interval = 1m
Attempts = 2
Steps:
1) Timeout = 15s
2) Timeout = 15s
When this runs...how many 'failures' will it report if both attempts fail? How long is it between 'attempts'?
I'm wondering about my Trigger that watches this Scenario. I want the trigger to be a bit robust, to prevent flopping. So I would like the two most recent results to both be failures.
Code:
{Template_1:web.test.fail[Web_Check].sum(#2)}>1
Comment