-
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.
MON-34002 otl request are sent to broker
- Loading branch information
1 parent
689a09d
commit 74dccd8
Showing
27 changed files
with
879 additions
and
93 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
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 2018-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 2018-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] | ||
*/ | ||
|
||
#include "com/centreon/broker/lua/broker_utils.hh" | ||
|
||
|
@@ -37,6 +37,7 @@ | |
#include "com/centreon/broker/log_v2.hh" | ||
#include "com/centreon/broker/mapping/entry.hh" | ||
#include "com/centreon/broker/misc/misc.hh" | ||
#include "com/centreon/common/hex_dump.hh" | ||
#include "com/centreon/exceptions/msg_fmt.hh" | ||
|
||
using namespace com::centreon::broker; | ||
|
@@ -189,6 +190,7 @@ static void _message_to_json(std::ostringstream& oss, | |
} | ||
oss << ']'; | ||
break; | ||
case google::protobuf::FieldDescriptor::TYPE_SFIXED64: | ||
case google::protobuf::FieldDescriptor::TYPE_INT64: | ||
oss << fmt::format("\"{}\":[", entry_name); | ||
for (size_t j = 0; j < s; j++) { | ||
|
@@ -198,6 +200,7 @@ static void _message_to_json(std::ostringstream& oss, | |
} | ||
oss << ']'; | ||
break; | ||
case google::protobuf::FieldDescriptor::TYPE_FIXED64: | ||
case google::protobuf::FieldDescriptor::TYPE_UINT64: | ||
oss << fmt::format("\"{}\":[", entry_name); | ||
for (size_t j = 0; j < s; j++) { | ||
|
@@ -237,9 +240,20 @@ static void _message_to_json(std::ostringstream& oss, | |
} | ||
oss << ']'; | ||
break; | ||
case google::protobuf::FieldDescriptor::TYPE_BYTES: | ||
oss << fmt::format("\"{}\":[", entry_name); | ||
for (size_t j = 0; j < s; j++) { | ||
if (j > 0) | ||
oss << ','; | ||
tmpl = refl->GetRepeatedStringReference(*p, f, j, &tmpl); | ||
oss << '"' << com::centreon::common::hex_dump(tmpl, 0) << '"'; | ||
} | ||
oss << ']'; | ||
break; | ||
default: // Error, a type not handled | ||
throw msg_fmt( | ||
"protobuf {} type ID is not handled in the broker json converter", | ||
"protobuf {} type ID is not handled in the " | ||
"broker json converter", | ||
f->type()); | ||
} | ||
} else { | ||
|
@@ -258,9 +272,11 @@ static void _message_to_json(std::ostringstream& oss, | |
case google::protobuf::FieldDescriptor::TYPE_UINT32: | ||
oss << fmt::format("\"{}\":{}", entry_name, refl->GetUInt32(*p, f)); | ||
break; | ||
case google::protobuf::FieldDescriptor::TYPE_SFIXED64: | ||
case google::protobuf::FieldDescriptor::TYPE_INT64: | ||
oss << fmt::format("\"{}\":{}", entry_name, refl->GetInt64(*p, f)); | ||
break; | ||
case google::protobuf::FieldDescriptor::TYPE_FIXED64: | ||
case google::protobuf::FieldDescriptor::TYPE_UINT64: | ||
oss << fmt::format("\"{}\":{}", entry_name, refl->GetUInt64(*p, f)); | ||
break; | ||
|
@@ -277,6 +293,11 @@ static void _message_to_json(std::ostringstream& oss, | |
_message_to_json(oss, &refl->GetMessage(*p, f)); | ||
oss << '}'; | ||
break; | ||
case google::protobuf::FieldDescriptor::TYPE_BYTES: | ||
tmpl = refl->GetStringReference(*p, f, &tmpl); | ||
oss << fmt::format(R"("{}":"{}")", entry_name, | ||
com::centreon::common::hex_dump(tmpl, 0)); | ||
break; | ||
default: // Error, a type not handled | ||
throw msg_fmt( | ||
"protobuf {} type ID is not handled in the broker json converter", | ||
|
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 2009-2013,2015-2016 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 2009-2013,2015-2016 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] | ||
*/ | ||
|
||
#include "com/centreon/broker/io/events.hh" | ||
#include "com/centreon/broker/io/protocols.hh" | ||
|
@@ -215,6 +215,8 @@ void broker_module_init(void const* arg) { | |
e.register_event( | ||
neb::pb_service_group_member::static_type(), "ServiceGroupMember", | ||
&neb::pb_service_group_member::operations, "services_servicegroups"); | ||
e.register_event(neb::pb_otl_metrics::static_type(), "OTLMetrics", | ||
&neb::pb_otl_metrics::operations, "otl_metrics"); | ||
} | ||
} | ||
} | ||
|
Oops, something went wrong.
74dccd8
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
Failed 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
Bam Pb
Inherited Downtime
Inherited Downtime
Inherited Downtime
Inherited Downtime
Pb Inherited Downtime
Pb Inherited Downtime
Pb Inherited Downtime
Pb Inherited Downtime
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
Bbdo-Protobuf
Bbdo-Protobuf
Compression
Delete-Poller
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
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
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
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
Servicegroups
Servicegroups
Services-Increased
Services-Increased
Services-With-Notes-And-Actions
Services-With-Notes-And-Actions
Services-With-Notes-And-Actions
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
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
Sql
Sql
Sql
Sql
Sql
Severities
Severities
Severities
Severities
Severities
Severities
Severities
74dccd8
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
Failed 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
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
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
Bbdo-Protobuf
Bbdo-Protobuf
Bench
Bench
Bench
Bench
Bench
Bench
Bench
Compression
Delete-Poller
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
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
Muxer Filter
Muxer Filter
Muxer Filter
Muxer Filter
Muxer Filter
Muxer Filter
Muxer Filter
Muxer Filter
Opentelemetry
Output-Tables
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
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
Servicegroups
Servicegroups
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
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
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
Victoria
Victoria
Victoria
Whitelist
Whitelist
Whitelist
Whitelist
Whitelist
Whitelist
Sql
Sql
Sql
Sql
Sql
Connector Ssh
Connector Ssh
Connector Ssh
Connector Ssh
Migration
Severities
Severities
Severities
Severities
Severities
Severities
Severities
74dccd8
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
Failed 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
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
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
Bbdo-Protobuf
Bbdo-Protobuf
Bench
Bench
Bench
Bench
Bench
Bench
Bench
Compression
Delete-Poller
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
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
Muxer Filter
Muxer Filter
Muxer Filter
Muxer Filter
Muxer Filter
Muxer Filter
Muxer Filter
Muxer Filter
Opentelemetry
Output-Tables
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
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
Servicegroups
Servicegroups
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
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
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
Victoria
Victoria
Victoria
Whitelist
Whitelist
Whitelist
Whitelist
Whitelist
Whitelist
Sql
Sql
Sql
Sql
Sql
Connector Ssh
Connector Ssh
Connector Ssh
Connector Ssh
Migration
Severities
Severities
Severities
Severities
Severities
Severities
Severities
74dccd8
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
Failed 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
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
Bam Pb
Bam Pb
Boolean Rules
Boolean Rules
Boolean Rules
Boolean Rules
Boolean Rules
Boolean Rules
Boolean Rules
Boolean Rules
Boolean Rules
Boolean Rules
Inherited Downtime
Inherited Downtime
Inherited Downtime
Inherited Downtime
Inherited Downtime
Inherited Downtime
Inherited Downtime
Inherited Downtime
Pb Inherited Downtime
Pb Inherited Downtime
Pb Inherited Downtime
Pb Inherited Downtime
Pb Inherited Downtime
Pb Inherited Downtime
Pb Inherited Downtime
Pb Inherited Downtime
Acknowledgement
Acknowledgement
Acknowledgement
Acknowledgement
Acknowledgement
Acknowledgement
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
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
Bbdo-Protobuf
Bbdo-Protobuf
Bbdo-Protobuf
Bbdo-Protobuf
Bbdo-Protobuf
Bbdo-Protobuf
Bbdo-Protobuf
Bbdo-Protobuf
Bbdo-Protobuf
Bbdo-Protobuf
Bbdo-Protobuf
Bench
Bench
Bench
Bench
Bench
Bench
Bench
Bench
Bench
Bench
Bench
Bench
Bench
Bench
Compression
Compression
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Delete-Poller
Downtimes
Downtimes
Downtimes
Downtimes
Downtimes
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-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
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
Hostgroups
Hostgroups
Hostgroups
Hostgroups
Hostgroups
Hostgroups
Hostgroups
Hostgroups
Hosts-With-Notes-And-Actions
Hosts-With-Notes-And-Actions
Hosts-With-Notes-And-Actions
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
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
Muxer Filter
Muxer Filter
Muxer Filter
Muxer Filter
Muxer Filter
Muxer Filter
Muxer Filter
Muxer Filter
Muxer Filter
Muxer Filter
Muxer Filter
Muxer Filter
Muxer Filter
Muxer Filter
Muxer Filter
Muxer Filter
Opentelemetry
Opentelemetry
Output-Tables
Output-Tables
Output-Tables
Output-Tables
Output-Tables
Output-Tables
Output-Tables
Output-Tables
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
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
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-From-Db
Rrd-From-Db
Rrd-From-Db
Rrd-From-Db
Rrd-From-Db
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrd
Rrdcached-From-Db
Rrdcached-From-Db
Rrdcached-From-Db
Rrdcached-From-Db
Rrdcached-From-Db
Rrdcached-From-Db
Rrdcached-From-Db
Rrdcached-From-Db
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Rrdcached
Scheduler
Scheduler
Servicegroups
Servicegroups
Servicegroups
Servicegroups
Servicegroups
Servicegroups
Servicegroups
Servicegroups
Servicegroups
Servicegroups
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-And-Bulk-Stmt
Services-Increased
Services-Increased
Services-Increased
Services-Increased
Services-With-Notes-And-Actions
Services-With-Notes-And-Actions
Services-With-Notes-And-Actions
Services-With-Notes-And-Actions
Services-With-Notes-And-Actions
Services-With-Notes-And-Actions
Services
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
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
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
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tags
Tls
Tls
Tls
Tls
Tls
Tls
Tls
Tls
Tls
Tls
Tls
Tls
Tls
Tls
Tls
Tls
Victoria
Victoria
Victoria
Victoria
Victoria
Victoria
Whitelist
Whitelist
Whitelist
Whitelist
Whitelist
Whitelist
Whitelist
Whitelist
Whitelist
Whitelist
Whitelist
Whitelist
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Sql
Connector Ssh
Connector Ssh
Connector Ssh
Connector Ssh
Connector Ssh
Connector Ssh
Connector Ssh
Connector Ssh
Migration
Migration
Severities
Severities
Severities
Severities
Severities
Severities
Severities
Severities
Severities
Severities
Severities
Severities
Severities
Severities