-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(broker/bam): events propagation improved in BAs (#908)
* fix(broker/bam): events propagation improved in BAs * chore(tests): README updated * chore(doc): broker-doc.md updated * fix(tests): issue with the rescheduling Co-authored-by: NITCHEU B <[email protected]> * fix(ci): libssh2 is provided by conan not by the packaging REFS: MON-22327
- Loading branch information
Showing
76 changed files
with
2,610 additions
and
1,699 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
/* | ||
** Copyright 2021-2022 Centreon | ||
** | ||
** Licensed under the Apache License, Version 2.0 (the "License"); | ||
** you may not use this file except in compliance with the License. | ||
** You may obtain a copy of the License at | ||
** | ||
** http://www.apache.org/licenses/LICENSE-2.0 | ||
** | ||
** Unless required by applicable law or agreed to in writing, software | ||
** distributed under the License is distributed on an "AS IS" BASIS, | ||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
** See the License for the specific language governing permissions and | ||
** limitations under the License. | ||
** | ||
** For more information : [email protected] | ||
*/ | ||
* Copyright 2021-2023 Centreon | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* For more information : [email protected] | ||
*/ | ||
|
||
#ifndef CC_BROKER_EVENTS_HH | ||
#define CC_BROKER_EVENTS_HH | ||
|
@@ -100,10 +100,10 @@ enum data_element { | |
de_custom_variable, | ||
de_custom_variable_status, | ||
de_downtime, | ||
de_event_handler, | ||
de_flapping_status, | ||
de_host_check, | ||
de_host_dependency, | ||
de_event_handler = 6, | ||
de_flapping_status = 7, // unused | ||
de_host_check = 8, | ||
de_host_dependency = 9, | ||
de_host_group, | ||
de_host_group_member, | ||
de_host, | ||
|
@@ -137,7 +137,7 @@ enum data_element { | |
de_pb_service_check = 40, | ||
de_pb_log_entry = 41, | ||
de_pb_instance_status = 42, | ||
de_pb_module = 43, | ||
// de_pb_module = 43, Not used | ||
de_pb_instance = 44, | ||
de_pb_acknowledgement = 45, | ||
de_pb_responsive_instance = 46, | ||
|
@@ -193,6 +193,11 @@ enum data_element { | |
de_pb_dimension_truncate_table_signal = 30 | ||
}; | ||
} | ||
|
||
namespace extcmd { | ||
enum data_element { de_ba_info = 2 }; | ||
} | ||
|
||
constexpr uint32_t make_type(io::data_category cat, uint32_t elem) { | ||
return (cat << 16) | elem; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
/* | ||
** Copyright 2014-2015, 2021-2022 Centreon | ||
** | ||
** Licensed under the Apache License, Version 2.0 (the "License"); | ||
** you may not use this file except in compliance with the License. | ||
** You may obtain a copy of the License at | ||
** | ||
** http://www.apache.org/licenses/LICENSE-2.0 | ||
** | ||
** Unless required by applicable law or agreed to in writing, software | ||
** distributed under the License is distributed on an "AS IS" BASIS, | ||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
** See the License for the specific language governing permissions and | ||
** limitations under the License. | ||
** | ||
** For more information : [email protected] | ||
*/ | ||
/** | ||
* Copyright 2014-2015, 2021-2023 Centreon | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* For more information : [email protected] | ||
*/ | ||
|
||
#ifndef CCB_BAM_BA_HH | ||
#define CCB_BAM_BA_HH | ||
|
@@ -103,7 +103,7 @@ class ba : public computable, public service_listener { | |
int _recompute_count{0}; | ||
|
||
static double _normalize(double d); | ||
virtual void _apply_impact(kpi* kpi_ptr, impact_info& impact) = 0; | ||
virtual bool _apply_impact(kpi* kpi_ptr, impact_info& impact) = 0; | ||
virtual void _unapply_impact(kpi* kpi_ptr, impact_info& impact) = 0; | ||
virtual void _recompute(); | ||
std::shared_ptr<pb_ba_status> _generate_ba_status(bool state_changed) const; | ||
|
@@ -119,8 +119,6 @@ class ba : public computable, public service_listener { | |
virtual ~ba() noexcept = default; | ||
ba& operator=(ba const& other) = delete; | ||
void add_impact(std::shared_ptr<kpi> const& impact); | ||
bool child_has_update(computable* child, | ||
io::stream* visitor = nullptr) override; | ||
virtual double get_downtime_impact_hard() { return 0.0; } | ||
virtual double get_downtime_impact_soft() { return 0.0; } | ||
virtual double get_ack_impact_hard() { return 0.0; } | ||
|
@@ -153,6 +151,10 @@ class ba : public computable, public service_listener { | |
void set_inherited_downtime(pb_inherited_downtime const& dwn); | ||
void set_level_critical(double level); | ||
void set_level_warning(double level); | ||
void update_from(computable* child, io::stream* visitor) override; | ||
std::string object_info() const override; | ||
void dump(const std::string& filename) const; | ||
void dump(std::ofstream& output) const override; | ||
}; | ||
} // namespace bam | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
/* | ||
** Copyright 2014, 2021 Centreon | ||
** | ||
** Licensed under the Apache License, Version 2.0 (the "License"); | ||
** you may not use this file except in compliance with the License. | ||
** You may obtain a copy of the License at | ||
** | ||
** http://www.apache.org/licenses/LICENSE-2.0 | ||
** | ||
** Unless required by applicable law or agreed to in writing, software | ||
** distributed under the License is distributed on an "AS IS" BASIS, | ||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
** See the License for the specific language governing permissions and | ||
** limitations under the License. | ||
** | ||
** For more information : [email protected] | ||
*/ | ||
* Copyright 2014, 2021, 2023 Centreon | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* For more information : [email protected] | ||
*/ | ||
|
||
#ifndef CCB_BAM_BOOL_AND_HH | ||
#define CCB_BAM_BOOL_AND_HH | ||
|
@@ -43,8 +43,9 @@ class bool_and : public bool_binary_operator { | |
~bool_and() noexcept override = default; | ||
bool_and(const bool_and&) = delete; | ||
bool_and& operator=(const bool_and&) = delete; | ||
double value_hard() override; | ||
double value_hard() const override; | ||
bool boolean_value() const override; | ||
std::string object_info() const override; | ||
}; | ||
} // namespace bam | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
/* | ||
** Copyright 2014-2016, 2021 Centreon | ||
** | ||
** Licensed under the Apache License, Version 2.0 (the "License"); | ||
** you may not use this file except in compliance with the License. | ||
** You may obtain a copy of the License at | ||
** | ||
** http://www.apache.org/licenses/LICENSE-2.0 | ||
** | ||
** Unless required by applicable law or agreed to in writing, software | ||
** distributed under the License is distributed on an "AS IS" BASIS, | ||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
** See the License for the specific language governing permissions and | ||
** limitations under the License. | ||
** | ||
** For more information : [email protected] | ||
*/ | ||
* Copyright 2014-2016, 2021-2023 Centreon | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* For more information : [email protected] | ||
*/ | ||
|
||
#ifndef CCB_BAM_BOOL_BINARY_OPERATOR_HH | ||
#define CCB_BAM_BOOL_BINARY_OPERATOR_HH | ||
|
@@ -53,12 +53,12 @@ class bool_binary_operator : public bool_value { | |
bool_binary_operator(bool_binary_operator const&) = delete; | ||
~bool_binary_operator() noexcept override = default; | ||
bool_binary_operator& operator=(const bool_binary_operator&) = delete; | ||
bool child_has_update(computable* child, | ||
io::stream* visitor = nullptr) override; | ||
void set_left(std::shared_ptr<bool_value> const& left); | ||
void set_left(const std::shared_ptr<bool_value>& left); | ||
void set_right(std::shared_ptr<bool_value> const& right); | ||
bool state_known() const override; | ||
bool in_downtime() const override; | ||
void update_from(computable* child, io::stream* visitor) override; | ||
void dump(std::ofstream& output) const override; | ||
}; | ||
} // namespace bam | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
/* | ||
** Copyright 2014 Centreon | ||
** | ||
** Licensed under the Apache License, Version 2.0 (the "License"); | ||
** you may not use this file except in compliance with the License. | ||
** You may obtain a copy of the License at | ||
** | ||
** http://www.apache.org/licenses/LICENSE-2.0 | ||
** | ||
** Unless required by applicable law or agreed to in writing, software | ||
** distributed under the License is distributed on an "AS IS" BASIS, | ||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
** See the License for the specific language governing permissions and | ||
** limitations under the License. | ||
** | ||
** For more information : [email protected] | ||
*/ | ||
* Copyright 2014, 2023 Centreon | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* For more information : [email protected] | ||
*/ | ||
|
||
#ifndef CCB_BAM_BOOL_CALL_HH | ||
#define CCB_BAM_BOOL_CALL_HH | ||
|
@@ -34,24 +34,22 @@ namespace bam { | |
* to an external expression. | ||
*/ | ||
class bool_call : public bool_value { | ||
std::string _name; | ||
std::shared_ptr<bool_value> _expression; | ||
|
||
public: | ||
typedef std::shared_ptr<bool_call> ptr; | ||
|
||
bool_call(std::string const& name); | ||
~bool_call() noexcept override = default; | ||
bool_call(const bool_call&) = delete; | ||
bool_call& operator=(const bool_call&) = delete; | ||
double value_hard() override; | ||
double value_hard() const override; | ||
bool boolean_value() const override; | ||
bool state_known() const override; | ||
std::string const& get_name() const; | ||
void set_expression(std::shared_ptr<bool_value> expression); | ||
bool child_has_update(computable* child, | ||
io::stream* visitor = nullptr) override; | ||
|
||
private: | ||
std::string _name; | ||
std::shared_ptr<bool_value> _expression; | ||
void update_from(computable* child, io::stream* visitor) override; | ||
}; | ||
} // namespace bam | ||
|
||
|
Oops, something went wrong.
68143f8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Robot Results
Passed Tests
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Boolean Rules
Boolean Rules
Boolean Rules
Boolean Rules
Boolean Rules
Inherited Downtime
Inherited Downtime
Inherited Downtime
Inherited Downtime
Pb Inherited Downtime
Pb Inherited Downtime
Pb Inherited Downtime
Pb Inherited Downtime
networkFailure
networkFailure
networkFailure
networkFailure
networkFailure
networkFailure
networkFailure
networkFailure
networkFailure
Acknowledgement
Acknowledgement
Acknowledgement
Acknowledgement
Acknowledgement
Acknowledgement
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Bbdo-Protobuf
Bbdo-Protobuf
Bbdo-Protobuf
Bbdo-Protobuf
Bbdo-Protobuf
Bbdo-Protobuf
Bbdo-Protobuf
Compression
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Downtimes
Downtimes
Downtimes
Downtimes
Downtimes
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
Hostgroups
Hostgroups
Hostgroups
Hostgroups
Hostgroups
Hostgroups
Hosts-With-Notes-And-Actions
Hosts-With-Notes-And-Actions
Hosts-With-Notes-And-Actions
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Output-Tables
Output-Tables
Output-Tables
Output-Tables
Output-Tables
Output-Tables
Retention-Duplicates
Retention-Duplicates
Retention-Duplicates
Retention-Duplicates
Retention-Duplicates
Retention-Duplicates
Retention-Duplicates
Retention-Duplicates
Retention-Duplicates
Retention-Duplicates
Reverse-Connection
Reverse-Connection
Reverse-Connection
Reverse-Connection
Reverse-Connection
Rrd-From-Db
Rrd-From-Db
Rrd-From-Db
Rrd-From-Db
Rrd-From-Db
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrdcached-From-Db
Rrdcached-From-Db
Rrdcached-From-Db
Rrdcached-From-Db
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Scheduler
Servicegroups
Servicegroups
Servicegroups
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-Increased
Services-Increased
Services-With-Notes-And-Actions
Services-With-Notes-And-Actions
Services-With-Notes-And-Actions
Services
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tls
Tls
Tls
Tls
Tls
Tls
Tls
Tls
Bbdo-Server-Client-Ko
Bbdo-Server-Client-Ko
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Command-Line
Command-Line
Command-Line
Command-Line
Filters
Filters
Grpc-Stream
Grpc-Stream
Grpc-Stream
Grpc-Stream
Grpc-Stream
Grpc-Stream
Grpc-Stream
Grpc-Stream
Grpc-Stream
Grpc-Stream
Log
Log
Log
Log
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Ccc
Ccc
Ccc
Ccc
Ccc
Ccc
Ccc
Ccc
Connector Perl
Connector Perl
Connector Perl
Connector Ssh
Connector Ssh
Connector Ssh
Forced Checks
Forced Checks
Forced Checks
Forced Checks
Forced Checks
Forced Checks
Perl-Connectors
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Migration
Hosts
Hosts
Hosts
Severities
Severities
Severities
Severities
Severities
Severities
Severities
68143f8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Robot Results
Passed Tests
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Boolean Rules
Boolean Rules
Boolean Rules
Boolean Rules
Boolean Rules
Inherited Downtime
Inherited Downtime
Inherited Downtime
Inherited Downtime
Pb Inherited Downtime
Pb Inherited Downtime
Pb Inherited Downtime
Pb Inherited Downtime
networkFailure
networkFailure
networkFailure
networkFailure
networkFailure
networkFailure
networkFailure
networkFailure
networkFailure
Acknowledgement
Acknowledgement
Acknowledgement
Acknowledgement
Acknowledgement
Acknowledgement
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Bbdo-Protobuf
Bbdo-Protobuf
Bbdo-Protobuf
Bbdo-Protobuf
Bbdo-Protobuf
Bbdo-Protobuf
Bbdo-Protobuf
Compression
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Downtimes
Downtimes
Downtimes
Downtimes
Downtimes
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
Hostgroups
Hostgroups
Hostgroups
Hostgroups
Hostgroups
Hostgroups
Hosts-With-Notes-And-Actions
Hosts-With-Notes-And-Actions
Hosts-With-Notes-And-Actions
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Output-Tables
Output-Tables
Output-Tables
Output-Tables
Output-Tables
Output-Tables
Retention-Duplicates
Retention-Duplicates
Retention-Duplicates
Retention-Duplicates
Retention-Duplicates
Retention-Duplicates
Retention-Duplicates
Retention-Duplicates
Retention-Duplicates
Retention-Duplicates
Reverse-Connection
Reverse-Connection
Reverse-Connection
Reverse-Connection
Reverse-Connection
Rrd-From-Db
Rrd-From-Db
Rrd-From-Db
Rrd-From-Db
Rrd-From-Db
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrdcached-From-Db
Rrdcached-From-Db
Rrdcached-From-Db
Rrdcached-From-Db
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Scheduler
Servicegroups
Servicegroups
Servicegroups
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-Increased
Services-Increased
Services-With-Notes-And-Actions
Services-With-Notes-And-Actions
Services-With-Notes-And-Actions
Services
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tls
Tls
Tls
Tls
Tls
Tls
Tls
Tls
Bbdo-Server-Client-Ko
Bbdo-Server-Client-Ko
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Command-Line
Command-Line
Command-Line
Command-Line
Filters
Filters
Grpc-Stream
Grpc-Stream
Grpc-Stream
Grpc-Stream
Grpc-Stream
Grpc-Stream
Grpc-Stream
Grpc-Stream
Grpc-Stream
Grpc-Stream
Log
Log
Log
Log
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Ccc
Ccc
Ccc
Ccc
Ccc
Ccc
Ccc
Ccc
Connector Perl
Connector Perl
Connector Perl
Connector Ssh
Connector Ssh
Connector Ssh
Forced Checks
Forced Checks
Forced Checks
Forced Checks
Forced Checks
Forced Checks
Perl-Connectors
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Migration
Hosts
Hosts
Hosts
Severities
Severities
Severities
Severities
Severities
Severities
Severities
68143f8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Robot Results
Passed Tests
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Bam Pb
Boolean Rules
Boolean Rules
Boolean Rules
Boolean Rules
Boolean Rules
Inherited Downtime
Inherited Downtime
Inherited Downtime
Inherited Downtime
Pb Inherited Downtime
Pb Inherited Downtime
Pb Inherited Downtime
Pb Inherited Downtime
networkFailure
networkFailure
networkFailure
networkFailure
networkFailure
networkFailure
networkFailure
networkFailure
networkFailure
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Anomaly-Detection
Bbdo-Protobuf
Bbdo-Protobuf
Bbdo-Protobuf
Bbdo-Protobuf
Bbdo-Protobuf
Bbdo-Protobuf
Bbdo-Protobuf
Compression
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Downtimes
Downtimes
Downtimes
Downtimes
Downtimes
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
External-Commands2
Hostgroups
Hostgroups
Hostgroups
Hostgroups
Hostgroups
Hostgroups
Hosts-With-Notes-And-Actions
Hosts-With-Notes-And-Actions
Hosts-With-Notes-And-Actions
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Log-V2 Engine
Output-Tables
Output-Tables
Output-Tables
Output-Tables
Output-Tables
Output-Tables
Retention-Duplicates
Retention-Duplicates
Retention-Duplicates
Retention-Duplicates
Retention-Duplicates
Retention-Duplicates
Retention-Duplicates
Retention-Duplicates
Retention-Duplicates
Retention-Duplicates
Reverse-Connection
Reverse-Connection
Reverse-Connection
Reverse-Connection
Reverse-Connection
Rrd-From-Db
Rrd-From-Db
Rrd-From-Db
Rrd-From-Db
Rrd-From-Db
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrdcached-From-Db
Rrdcached-From-Db
Rrdcached-From-Db
Rrdcached-From-Db
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Scheduler
Servicegroups
Servicegroups
Servicegroups
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-Increased
Services-Increased
Services-With-Notes-And-Actions
Services-With-Notes-And-Actions
Services-With-Notes-And-Actions
Services
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tls
Tls
Tls
Tls
Tls
Tls
Tls
Tls
Bbdo-Server-Client-Ko
Bbdo-Server-Client-Ko
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client-Reversed
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Bbdo-Server-Client
Command-Line
Command-Line
Command-Line
Command-Line
Filters
Filters
Grpc-Stream
Grpc-Stream
Grpc-Stream
Grpc-Stream
Grpc-Stream
Grpc-Stream
Grpc-Stream
Grpc-Stream
Grpc-Stream
Grpc-Stream
Log
Log
Log
Log
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Ccc
Ccc
Ccc
Ccc
Ccc
Ccc
Ccc
Ccc
Connector Perl
Connector Perl
Connector Perl
Connector Ssh
Connector Ssh
Connector Ssh
Forced Checks
Forced Checks
Forced Checks
Forced Checks
Forced Checks
Forced Checks
Perl-Connectors
Start-Stop
Start-Stop
Start-Stop
Start-Stop
Migration
Hosts
Hosts
Hosts
Severities
Severities
Severities
Severities
Severities
Severities
Severities