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
BPI-Settings
-
bashar.abed
- Posts: 153
- Joined: Tue Oct 11, 2016 1:34 am
- Location: Ramallah West Bank Palestine
- Contact:
BPI-Settings
You do not have the required permissions to view the files attached to this post.
- Box293
- Too Basu
- Posts: 5126
- Joined: Sun Feb 07, 2010 10:55 pm
- Location: Deniliquin, Australia
- Contact:
Re: BPI-Settings
Try:
Warning 81
Critical 21
Warning 81
Critical 21
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
-
bashar.abed
- Posts: 153
- Joined: Tue Oct 11, 2016 1:34 am
- Location: Ramallah West Bank Palestine
- Contact:
Re: BPI-Settings
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
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
You do not have the required permissions to view the files attached to this post.
Re: BPI-Settings
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:
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:
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
For example:
Say you have 3 services for a BPI group in these states:
Code: Select all
1. OK
2. WARNING
3. CRITICALCode: Select all
1. OK
2. PROBLEM
3. PROBLEMCode: Select all
100 / total_num_services_in_group = individual_item_percentCode: Select all
100 / 3 = 33.3Code: Select all
1. 0
2. 33.3
3. 33.3Code: Select all
100 - TOTAL_PROBLEM_PECENTAGE = Group Overall HealthCode: Select all
100 - (33.3 + 33.3) = 33.3% Group Overall HealthLet me know if you have any questions.
Thank you