Page 1 of 1
BPI-Settings
Posted: Sun Apr 09, 2017 7:42 am
by bashar.abed
Hi,
We have Nagios XI version 5.4.2 VM machine , i using BPI-settings to configure our system , i sent you sample for our configuration,
we have 5 layer for Testing-System the Scenario is :-
if one layer is down (Critical) the Testing-System Icon show critical status
if one layer is warning the Testing-System icon show Warning Status
So how can do that ,and please see the attached file about that
Thanks
Re: BPI-Settings
Posted: Sun Apr 09, 2017 8:04 pm
by Box293
Try:
Warning 81
Critical 21
Re: BPI-Settings
Posted: Mon Apr 10, 2017 1:18 am
by bashar.abed
Hi,
i tried as your requested
the main root Testing-System settings
Warning 81
Critical 21
the attached files showing as below
on BPI photo we noticed when one layer became warning the main root Testing-System showing Warning status ,it is true
but in BPI2 photo we noticed when one layer became critical (red color) the main root Testing-System showing Warning Status ,it is false, it must showing Critical Status ,because we need when one layer became down "critical status",the main Testing-System Icon showing Critical status(red color)
so please send me the solution about that it is very important for our company
Thanks
Re: BPI-Settings
Posted: Mon Apr 10, 2017 2:42 pm
by ssax
The issue is that BPI only takes into account problem states, it doesn't weigh warnings any differently than criticals, they are both problem states. Until the developers implement that functionality it won't do what you're looking for.
For example:
Say you have 3 services for a BPI group in these states:
BPI will see it like this:
And will calculate it like this:
Code: Select all
100 / total_num_services_in_group = individual_item_percent
So for our current setup:
33.3 is the weight that each item has (whether OK or in a problem state), BPI would calculate it like this:
The final calculation is:
Code: Select all
100 - TOTAL_PROBLEM_PECENTAGE = Group Overall Health
Code: Select all
100 - (33.3 + 33.3) = 33.3% Group Overall Health
So you can see that it doesn't matter whether it's a WARNING or a CRITICAL, only that it's in a problem state.
Let me know if you have any questions.
Thank you