Skip to content

Commit

Permalink
fix(broker/bam): events propagation improved in BAs (#908)
Browse files Browse the repository at this point in the history
* 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
bouda1 authored Oct 6, 2023
1 parent fd596ab commit 68143f8
Show file tree
Hide file tree
Showing 76 changed files with 2,610 additions and 1,699 deletions.
1 change: 0 additions & 1 deletion .github/docker/Dockerfile.collect-alma8
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ dnf install -y cmake \
MariaDB-server \
gnutls-devel \
libgcrypt-devel \
libssh2-devel \
lua-devel \
make \
perl-ExtUtils-Embed.noarch \
Expand Down
1 change: 0 additions & 1 deletion .github/docker/Dockerfile.collect-alma9
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ dnf install -y cmake \
mariadb \
gnutls-devel \
libgcrypt-devel \
libssh2-devel \
lua-devel \
make \
perl-ExtUtils-Embed.noarch \
Expand Down
47 changes: 26 additions & 21 deletions bbdo/events.hh
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
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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;
}
Expand Down
42 changes: 22 additions & 20 deletions broker/bam/inc/com/centreon/broker/bam/ba.hh
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
Expand Down Expand Up @@ -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;
Expand All @@ -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; }
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion broker/bam/inc/com/centreon/broker/bam/ba_best.hh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class ba_best : public ba {
void _commit_initial_events(io::stream* visitor);

protected:
void _apply_impact(kpi* kpi_ptr, impact_info& impact) override;
bool _apply_impact(kpi* kpi_ptr, impact_info& impact) override;
void _unapply_impact(kpi* kpi_ptr, impact_info& impact) override;
void _recompute() override;

Expand Down
2 changes: 1 addition & 1 deletion broker/bam/inc/com/centreon/broker/bam/ba_impact.hh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class kpi;
*/
class ba_impact : public ba {
protected:
void _apply_impact(kpi* kpi_ptr, impact_info& impact) override;
bool _apply_impact(kpi* kpi_ptr, impact_info& impact) override;
void _unapply_impact(kpi* kpi_ptr, impact_info& impact) override;

public:
Expand Down
2 changes: 1 addition & 1 deletion broker/bam/inc/com/centreon/broker/bam/ba_ratio_number.hh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class kpi;
* of value.
*/
class ba_ratio_number : public ba {
void _apply_impact(kpi* kpi_ptr, impact_info& impact) override;
bool _apply_impact(kpi* kpi_ptr, impact_info& impact) override;
void _unapply_impact(kpi* kpi_ptr, impact_info& impact) override;
void _recompute() override;

Expand Down
4 changes: 1 addition & 3 deletions broker/bam/inc/com/centreon/broker/bam/ba_ratio_percent.hh
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,7 @@ class kpi;
* of value.
*/
class ba_ratio_percent : public ba {
float _num_soft_critical_children;

void _apply_impact(kpi* kpi_ptr, ba::impact_info& impact) override;
bool _apply_impact(kpi* kpi_ptr, ba::impact_info& impact) override;
void _unapply_impact(kpi* kpi_ptr, ba::impact_info& impact) override;
void _recompute() override;

Expand Down
2 changes: 1 addition & 1 deletion broker/bam/inc/com/centreon/broker/bam/ba_worst.hh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class ba_worst : public ba {
void _commit_initial_events(io::stream* visitor);

protected:
void _apply_impact(kpi* kpi_ptr, impact_info& impact) override;
bool _apply_impact(kpi* kpi_ptr, impact_info& impact) override;
void _unapply_impact(kpi* kpi_ptr, impact_info& impact) override;
void _recompute() override;

Expand Down
35 changes: 18 additions & 17 deletions broker/bam/inc/com/centreon/broker/bam/bool_and.hh
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
Expand Down Expand Up @@ -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

Expand Down
38 changes: 19 additions & 19 deletions broker/bam/inc/com/centreon/broker/bam/bool_binary_operator.hh
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
Expand Down Expand Up @@ -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

Expand Down
44 changes: 21 additions & 23 deletions broker/bam/inc/com/centreon/broker/bam/bool_call.hh
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
Expand All @@ -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

Expand Down
Loading

3 comments on commit 68143f8

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Robot Results

✅ Passed ❌ Failed ⏭️ Skipped Total Pass %
381 0 0 381 100

Passed Tests

Name ⏱️ Duration Suite
BAPBSTATUS 20.556 s Bam Pb
BABEST_SERVICE_CRITICAL 26.677 s Bam Pb
BA_IMPACT_2KPI_SERVICES 40.755 s Bam Pb
BA_RATIO_PERCENT_BA_SERVICE 30.819 s Bam Pb
BA_RATIO_NUMBER_BA_SERVICE 26.628 s Bam Pb
BA_BOOL_KPI 20.779 s Bam Pb
BEPB_DIMENSION_BV_EVENT 10.874 s Bam Pb
BEPB_DIMENSION_BA_EVENT 10.879 s Bam Pb
BEPB_DIMENSION_BA_BV_RELATION_EVENT 10.881 s Bam Pb
BEPB_DIMENSION_TIMEPERIOD 10.763 s Bam Pb
BEPB_DIMENSION_KPI_EVENT 10.767 s Bam Pb
BEPB_KPI_STATUS 20.765 s Bam Pb
BEPB_BA_DURATION_EVENT 20.814 s Bam Pb
BEPB_DIMENSION_BA_TIMEPERIOD_RELATION 10.781 s Bam Pb
BEPB_DIMENSION_TRUNCATE_TABLE 10.807 s Bam Pb
BA_RATIO_NUMBER_BA_4_SERVICE 35.749 s Bam Pb
BA_RATIO_PERCENT_BA_4_SERVICE 30.927 s Bam Pb
BABOO 115.694 s Boolean Rules
BABOOOR 15.897 s Boolean Rules
BABOOAND 15.792 s Boolean Rules
BABOOORREL 30.809 s Boolean Rules
BABOOCOMPL 21.138 s Boolean Rules
BEBAMIDT1 14.657 s Inherited Downtime
BEBAMIDT2 36.758 s Inherited Downtime
BEBAMIGNDT1 26.043 s Inherited Downtime
BEBAMIGNDT2 74.206 s Inherited Downtime
BEBAMIDTU1 26.677 s Pb Inherited Downtime
BEBAMIDTU2 51.309 s Pb Inherited Downtime
BEBAMIGNDTU1 40.786 s Pb Inherited Downtime
BEBAMIGNDTU2 75.748 s Pb Inherited Downtime
NetworkDbFail1 72.851 s networkFailure
NetworkDbFail2 72.944 s networkFailure
NetworkDbFail3 84.843 s networkFailure
NetworkDbFail4 102.903 s networkFailure
NetworkDbFail5 127.783 s networkFailure
NetworkDBFail6 69.903 s networkFailure
NetworkDBFailU6 75.316 s networkFailure
NetworkDBFail7 50.266 s networkFailure
NetworkDBFailU7 50.298 s networkFailure
BEACK1 20.145 s Acknowledgement
BEACK2 21.454 s Acknowledgement
BEACK3 20.455 s Acknowledgement
BEACK4 13.443 s Acknowledgement
BEACK5 33.502 s Acknowledgement
BEACK6 27.498 s Acknowledgement
ANO_NOFILE 36.708 s Anomaly-Detection
ANO_TOO_OLD_FILE 36.524 s Anomaly-Detection
ANO_OUT_LOWER_THAN_LIMIT 36.63 s Anomaly-Detection
ANO_OUT_UPPER_THAN_LIMIT 36.539 s Anomaly-Detection
ANO_JSON_SENSITIVITY_NOT_SAVED 6.442 s Anomaly-Detection
ANO_CFG_SENSITIVITY_SAVED 6.61 s Anomaly-Detection
ANO_EXTCMD_SENSITIVITY_SAVED 7.656 s Anomaly-Detection
AOUTLU1 20.299 s Anomaly-Detection
ANO_DT1 20.289 s Anomaly-Detection
ANO_DT2 20.354 s Anomaly-Detection
ANO_DT3 25.295 s Anomaly-Detection
ANO_DT4 20.466 s Anomaly-Detection
BEPBBEE1 8.735 s Bbdo-Protobuf
BEPBBEE2 0.204 s Bbdo-Protobuf
BEPBBEE3 25.204 s Bbdo-Protobuf
BEPBBEE4 10.453 s Bbdo-Protobuf
BEPBBEE5 10.442 s Bbdo-Protobuf
BEPBRI1 10.344 s Bbdo-Protobuf
BEPBCVS 20.413 s Bbdo-Protobuf
BECC1 107.444 s Compression
EBDP1 32.573 s Delete-Poller
EBDP2 21.764 s Delete-Poller
EBDP3 21.318 s Delete-Poller
EBDP4 37.121 s Delete-Poller
EBDP5 32.62 s Delete-Poller
EBDP6 21.798000000000002 s Delete-Poller
EBDP7 21.361 s Delete-Poller
EBDP8 37.531 s Delete-Poller
BEDTMASS1 25.401 s Downtimes
BEDTMASS2 20.236 s Downtimes
BEDTSVCREN1 13.593 s Downtimes
BEDTSVCFIXED 11.171 s Downtimes
BEDTHOSTFIXED 25.302 s Downtimes
BEEXTCMD1 26.42 s External-Commands
BEEXTCMD2 25.357 s External-Commands
BEEXTCMD3 30.547 s External-Commands
BEEXTCMD4 25.568 s External-Commands
BEEXTCMD5 30.652 s External-Commands
BEEXTCMD6 25.835 s External-Commands
BEEXTCMD7 30.551 s External-Commands
BEEXTCMD8 26.196 s External-Commands
BEEXTCMD9 30.578 s External-Commands
BEEXTCMD10 25.851 s External-Commands
BEEXTCMD11 30.596 s External-Commands
BEEXTCMD12 26.525 s External-Commands
BEEXTCMD13 30.688 s External-Commands
BEEXTCMD14 25.599 s External-Commands
BEEXTCMD15 30.571 s External-Commands
BEEXTCMD16 26.264 s External-Commands
BEEXTCMD17 30.576 s External-Commands
BEEXTCMD18 20.887 s External-Commands
BEEXTCMD19 30.604 s External-Commands
BEEXTCMD20 25.603 s External-Commands
BEEXTCMD21 40.547 s External-Commands
BEEXTCMD22 30.894 s External-Commands
BEEXTCMD23 20.292 s External-Commands
BEEXTCMD24 16.072 s External-Commands
BEEXTCMD25 15.339 s External-Commands
BEEXTCMD26 14.367 s External-Commands
BEEXTCMD27 15.314 s External-Commands
BEEXTCMD28 14.289 s External-Commands
BEEXTCMD29 40.719 s External-Commands
BEEXTCMD30 32.014 s External-Commands2
BEEXTCMD31 20.35 s External-Commands2
BEEXTCMD32 16.564 s External-Commands2
BEEXTCMD33 15.358 s External-Commands2
BEEXTCMD34 14.355 s External-Commands2
BEEXTCMD35 20.299 s External-Commands2
BEEXTCMD36 15.495 s External-Commands2
BEEXTCMD37 20.321 s External-Commands2
BEEXTCMD38 16.624 s External-Commands2
BEEXTCMD39 15.353 s External-Commands2
BEEXTCMD40 15.632 s External-Commands2
BEEXTCMD41 15.34 s External-Commands2
BEEXTCMD42 16.057 s External-Commands2
BEEXTCMD_GRPC1 26.758 s External-Commands2
BEEXTCMD_GRPC2 27.371 s External-Commands2
BEEXTCMD_GRPC3 30.576 s External-Commands2
BEEXTCMD_GRPC4 25.1 s External-Commands2
BEEXTCMD_REVERSE_GRPC1 37.769 s External-Commands2
BEEXTCMD_REVERSE_GRPC2 28.838 s External-Commands2
BEEXTCMD_REVERSE_GRPC3 30.724 s External-Commands2
BEEXTCMD_REVERSE_GRPC4 34.342 s External-Commands2
BEEXTCMD_COMPRESS_GRPC1 30.612 s External-Commands2
BEATOI11 16.527 s External-Commands2
BEATOI12 9.937 s External-Commands2
BEATOI13 10.059 s External-Commands2
BEATOI21 13.092 s External-Commands2
BEATOI22 17.544 s External-Commands2
BEATOI23 10.942 s External-Commands2
BECUSTOMHOSTVAR 20.493 s External-Commands2
BECUSTOMSVCVAR 20.663 s External-Commands2
BESERVCHECK 6.575 s External-Commands2
BEHOSTCHECK 6.85 s External-Commands2
EBNHG1 13.572 s Hostgroups
EBNHGU1 15.213 s Hostgroups
EBNHGU2 15.302 s Hostgroups
EBNHGU3 15.564 s Hostgroups
EBNHG4 25.885 s Hostgroups
EBNHGU4 30.345 s Hostgroups
EBSNU1 10.265 s Hosts-With-Notes-And-Actions
EBSAU2 10.249 s Hosts-With-Notes-And-Actions
EBSN3 10.348 s Hosts-With-Notes-And-Actions
LOGV2EB1 12.252 s Log-V2 Engine
LOGV2EBU1 21.307 s Log-V2 Engine
LOGV2DB1 26.911 s Log-V2 Engine
LOGV2DB2 72.313 s Log-V2 Engine
LOGV2EB2 12.249 s Log-V2 Engine
LOGV2EBU2 21.317 s Log-V2 Engine
LOGV2EF1 10.725999999999999 s Log-V2 Engine
LOGV2DF1 39.726 s Log-V2 Engine
LOGV2DF2 39.598 s Log-V2 Engine
LOGV2EF2 10.806000000000001 s Log-V2 Engine
LOGV2FE2 130.609 s Log-V2 Engine
BERES1 11.337 s Output-Tables
BEHS1 10.399000000000001 s Output-Tables
BEINSTANCESTATUS 10.459 s Output-Tables
BEINSTANCE 1.114 s Output-Tables
BE_NOTIF_OVERFLOW 10.672 s Output-Tables
BE_TIME_NULL_SERVICE_RESOURCE 10.353 s Output-Tables
BERD1 48.623 s Retention-Duplicates
BERD2 50.378 s Retention-Duplicates
BERDUC1 48.486 s Retention-Duplicates
BERDUCU1 45.504 s Retention-Duplicates
BERDUC2 44.433 s Retention-Duplicates
BERDUCU2 45.438 s Retention-Duplicates
BERDUC3U1 55.623 s Retention-Duplicates
BERDUC3U2 65.598 s Retention-Duplicates
BERDUCA300 10.39 s Retention-Duplicates
BERDUCA301 11.206 s Retention-Duplicates
BRGC1 61.843 s Reverse-Connection
BRCTS1 163.945 s Reverse-Connection
BRCS1 54.213 s Reverse-Connection
BRCTSMN 46.816 s Reverse-Connection
BRCTSMNS 71.814 s Reverse-Connection
BRRDDMDB1 10.298 s Rrd-From-Db
BRRDDIDDB1 11.593 s Rrd-From-Db
BRRDRBDB1 51.278 s Rrd-From-Db
BRRDRBUDB1 51.868 s Rrd-From-Db
BRRDUPLICATE 12.797 s Rrd-From-Db
BRRDDM1 11.404 s Rrd
BRRDWM1 21.285 s Rrd
BRRDDID1 12.678 s Rrd
BRRDDMID1 11.619 s Rrd
BRRDDMU1 6.598 s Rrd
BRRDDIDU1 6.61 s Rrd
BRRDDMIDU1 2.549 s Rrd
BRRDRM1 16.129 s Rrd
BRRDRMU1 16.039 s Rrd
BRRDCDDMDB1 10.321 s Rrdcached-From-Db
BRRDCDDIDDB1 11.593 s Rrdcached-From-Db
BRRDCDRBDB1 42.188 s Rrdcached-From-Db
BRRDCDRBUDB1 43.226 s Rrdcached-From-Db
BRRDCDDM1 11.299 s Rrdcached
BRRDCDDID1 12.573 s Rrdcached
BRRDCDDMID1 11.566 s Rrdcached
BRRDCDDMU1 6.638 s Rrdcached
BRRDCDDIDU1 11.63 s Rrdcached
BRRDCDDMIDU1 6.538 s Rrdcached
BRRDCDRB1 33.871 s Rrdcached
BRRDCDRBU1 34.662 s Rrdcached
ENRSCHE1 159.739 s Scheduler
EBNSG1 12.917 s Servicegroups
EBNSGU1 15.244 s Servicegroups
EBNSGU2 15.223 s Servicegroups
EBBPS1 121.35 s Services-And-Bulk-Stmt
EBBPS2 136.412 s Services-And-Bulk-Stmt
EBMSSM 25.459 s Services-And-Bulk-Stmt
EBPS2 24.707 s Services-And-Bulk-Stmt
EBNSVC1 45.288 s Services-Increased
Service_increased_huge_check_interval 45.434 s Services-Increased
EBSNU1 10.275 s Services-With-Notes-And-Actions
EBSAU2 10.342 s Services-With-Notes-And-Actions
EBSN3 10.452 s Services-With-Notes-And-Actions
SDER 11.369 s Services
BESS1 12.428 s Start-Stop
BESS2 9.512 s Start-Stop
BESS3 6.568 s Start-Stop
BESS4 11.61 s Start-Stop
BESS5 10.505 s Start-Stop
BESS_GRPC1 6.263 s Start-Stop
BESS_GRPC2 7.612 s Start-Stop
BESS_GRPC3 11.506 s Start-Stop
BESS_GRPC4 7.984 s Start-Stop
BESS_GRPC5 9.085 s Start-Stop
BESS_GRPC_COMPRESS1 9.214 s Start-Stop
BESS_CRYPTED_GRPC1 61.037 s Start-Stop
BESS_CRYPTED_GRPC2 40.098 s Start-Stop
BESS_CRYPTED_GRPC3 43.705 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC1 44.844 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC2 55.881 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC3 55.807 s Start-Stop
BESS_ENGINE_DELETE_HOST 17.959 s Start-Stop
BESSBQ1 20.321 s Start-Stop
BETAG1 9.586 s Tags
BETAG2 10.795 s Tags
BEUTAG1 10.309 s Tags
BEUTAG2 20.319 s Tags
BEUTAG3 11.451 s Tags
BEUTAG4 16.364 s Tags
BEUTAG5 11.483 s Tags
BEUTAG6 11.52 s Tags
BEUTAG7 35.578 s Tags
BEUTAG8 30.607 s Tags
BEUTAG9 16.453 s Tags
BEUTAG10 25.55 s Tags
BEUTAG11 25.61 s Tags
BEUTAG12 16.381 s Tags
BECT1 92.905 s Tls
BECT2 10.56 s Tls
BECT3 10.299 s Tls
BECT4 10.713 s Tls
BECT_GRPC1 100.529 s Tls
BECT_GRPC2 13.121 s Tls
BECT_GRPC3 13.037 s Tls
BECT_GRPC4 14.009 s Tls
BSCSSK1 13.781 s Bbdo-Server-Client-Ko
BSCSSK2 8.367 s Bbdo-Server-Client-Ko
BSCSSR1 34.89 s Bbdo-Server-Client-Reversed
BSCSSRR1 24.982 s Bbdo-Server-Client-Reversed
BSCSSPRR1 23.877 s Bbdo-Server-Client-Reversed
BSCSSRR2 37.283 s Bbdo-Server-Client-Reversed
BSCSSGRR1 29.39 s Bbdo-Server-Client-Reversed
BSCSSTRR1 22.377 s Bbdo-Server-Client-Reversed
BSCSSTRR2 22.38 s Bbdo-Server-Client-Reversed
BSCSSTGRR2 10.164 s Bbdo-Server-Client-Reversed
BSCSSCRR1 10.195 s Bbdo-Server-Client-Reversed
BSCSSCRR2 10.195 s Bbdo-Server-Client-Reversed
BSCSSCGRR1 9.597 s Bbdo-Server-Client-Reversed
BSCSSCGRR2 19.212 s Bbdo-Server-Client-Reversed
BSCSS1 51.045 s Bbdo-Server-Client
BSCSSP1 46.02 s Bbdo-Server-Client
BSCSS2 37.279 s Bbdo-Server-Client
BSCSS3 0.093 s Bbdo-Server-Client
BSCSS4 37.251 s Bbdo-Server-Client
BSCSSG1 32.16 s Bbdo-Server-Client
BSCSSG2 49.797 s Bbdo-Server-Client
BSCSSG3 0.092 s Bbdo-Server-Client
BSCSSG4 50.275 s Bbdo-Server-Client
BSCSST1 51.572 s Bbdo-Server-Client
BSCSST2 51.571 s Bbdo-Server-Client
BSCSSTG1 5.094 s Bbdo-Server-Client
BSCSSTG2 12.463 s Bbdo-Server-Client
BSCSSTG3 5.6850000000000005 s Bbdo-Server-Client
BSCSSC1 14.32 s Bbdo-Server-Client
BSCSSC2 9.703 s Bbdo-Server-Client
BSCSSCG1 9.712 s Bbdo-Server-Client
BSCSSGA1 12.704 s Bbdo-Server-Client
BSCSSGA2 9.202 s Bbdo-Server-Client
BCL1 0.042 s Command-Line
BCL2 7.757 s Command-Line
BCL3 1.322 s Command-Line
BCL4 0.323 s Command-Line
BFC1 8.278 s Filters
BFC2 6.767 s Filters
BGRPCSS1 23.721 s Grpc-Stream
BGRPCSS2 49.856 s Grpc-Stream
BGRPCSS3 24.69 s Grpc-Stream
BGRPCSS4 50.319 s Grpc-Stream
BGRPCSS5 18.667 s Grpc-Stream
BGRPCSSU1 51.274 s Grpc-Stream
BGRPCSSU2 102.468 s Grpc-Stream
BGRPCSSU3 51.266 s Grpc-Stream
BGRPCSSU4 102.44 s Grpc-Stream
BGRPCSSU5 51.25 s Grpc-Stream
BLDIS1 39.731 s Log
BLEC1 3.079 s Log
BLEC2 2.268 s Log
BLEC3 1.287 s Log
BDB1 41.206 s Sql
BDB2 41.912 s Sql
BDB3 41.202 s Sql
BDB4 52.432 s Sql
BDB5 82.375 s Sql
BDB6 82.693 s Sql
BDB7 11.072 s Sql
BDB8 11.079 s Sql
BDB9 10.072 s Sql
BDB10 9.675 s Sql
BEDB2 16.054 s Sql
BEDB3 13.568 s Sql
BEDB4 11.893 s Sql
BDBM1 30.808 s Sql
BDBU1 50.944 s Sql
BDBU3 16.059 s Sql
BDBU5 70.9 s Sql
BDBU7 3.249 s Sql
BDBU10 10.26 s Sql
BDBMU1 33.928 s Sql
BSS1 34.227 s Start-Stop
BSS2 37.227 s Start-Stop
BSS3 0.076 s Start-Stop
BSS4 37.216 s Start-Stop
BSS5 18.626 s Start-Stop
BSSU1 31.21 s Start-Stop
BSSU2 101.493 s Start-Stop
BSSU3 0.076 s Start-Stop
BSSU4 101.375 s Start-Stop
BSSU5 50.707 s Start-Stop
START_STOP_CBD 52.318 s Start-Stop
BECCC1 9.235 s Ccc
BECCC2 11.243 s Ccc
BECCC3 11.33 s Ccc
BECCC4 11.327 s Ccc
BECCC5 11.329 s Ccc
BECCC6 11.327 s Ccc
BECCC7 11.329 s Ccc
BECCC8 11.328 s Ccc
test use connector perl exist script 5.056 s Connector Perl
test use connector perl unknown script 5.054 s Connector Perl
test use connector perl multiple script 10.556000000000001 s Connector Perl
TestBadUser 3.061 s Connector Ssh
TestBadPwd 0.07 s Connector Ssh
Test6Hosts 15.302 s Connector Ssh
EFHC1 26.169 s Forced Checks
EFHC2 31.079 s Forced Checks
EFHCU1 30.19 s Forced Checks
EFHCU2 25.282 s Forced Checks
EMACROS 16.065 s Forced Checks
EMACROS_NOTIF 12.515 s Forced Checks
EPC1 16.63 s Perl-Connectors
ESS1 0.16 s Start-Stop
ESS2 6.786 s Start-Stop
ESS3 9.217 s Start-Stop
ESS4 7.74 s Start-Stop
MIGRATION 93.033 s Migration
BEUHSEV1 10.273 s Hosts
BEUHSEV2 15.527 s Hosts
BETUHSEV1 10.585 s Hosts
BESEV1 4.773 s Severities
BESEV2 4.749 s Severities
BEUSEV1 10.276 s Severities
BEUSEV2 11.274000000000001 s Severities
BEUSEV3 10.517 s Severities
BEUSEV4 15.584 s Severities
BETUSEV1 10.64 s Severities

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Robot Results

✅ Passed ❌ Failed ⏭️ Skipped Total Pass %
381 0 0 381 100

Passed Tests

Name ⏱️ Duration Suite
BAPBSTATUS 20.56 s Bam Pb
BABEST_SERVICE_CRITICAL 30.767 s Bam Pb
BA_IMPACT_2KPI_SERVICES 35.734 s Bam Pb
BA_RATIO_PERCENT_BA_SERVICE 26.625 s Bam Pb
BA_RATIO_NUMBER_BA_SERVICE 30.831 s Bam Pb
BA_BOOL_KPI 20.809 s Bam Pb
BEPB_DIMENSION_BV_EVENT 10.778 s Bam Pb
BEPB_DIMENSION_BA_EVENT 10.772 s Bam Pb
BEPB_DIMENSION_BA_BV_RELATION_EVENT 10.9 s Bam Pb
BEPB_DIMENSION_TIMEPERIOD 10.769 s Bam Pb
BEPB_DIMENSION_KPI_EVENT 10.881 s Bam Pb
BEPB_KPI_STATUS 20.8 s Bam Pb
BEPB_BA_DURATION_EVENT 20.81 s Bam Pb
BEPB_DIMENSION_BA_TIMEPERIOD_RELATION 10.766 s Bam Pb
BEPB_DIMENSION_TRUNCATE_TABLE 10.973 s Bam Pb
BA_RATIO_NUMBER_BA_4_SERVICE 35.741 s Bam Pb
BA_RATIO_PERCENT_BA_4_SERVICE 35.818 s Bam Pb
BABOO 110.787 s Boolean Rules
BABOOOR 15.894 s Boolean Rules
BABOOAND 15.995 s Boolean Rules
BABOOORREL 30.942 s Boolean Rules
BABOOCOMPL 21.144 s Boolean Rules
BEBAMIDT1 19.855 s Inherited Downtime
BEBAMIDT2 38.344 s Inherited Downtime
BEBAMIGNDT1 26.959 s Inherited Downtime
BEBAMIGNDT2 74.039 s Inherited Downtime
BEBAMIDTU1 30.473 s Pb Inherited Downtime
BEBAMIDTU2 51.081 s Pb Inherited Downtime
BEBAMIGNDTU1 40.685 s Pb Inherited Downtime
BEBAMIGNDTU2 80.629 s Pb Inherited Downtime
NetworkDbFail1 71.528 s networkFailure
NetworkDbFail2 72.815 s networkFailure
NetworkDbFail3 51.769 s networkFailure
NetworkDbFail4 105.855 s networkFailure
NetworkDbFail5 134.867 s networkFailure
NetworkDBFail6 70.637 s networkFailure
NetworkDBFailU6 70.297 s networkFailure
NetworkDBFail7 52.511 s networkFailure
NetworkDBFailU7 55.231 s networkFailure
BEACK1 16.188 s Acknowledgement
BEACK2 16.49 s Acknowledgement
BEACK3 20.487 s Acknowledgement
BEACK4 13.267 s Acknowledgement
BEACK5 31.56 s Acknowledgement
BEACK6 27.544 s Acknowledgement
ANO_NOFILE 36.892 s Anomaly-Detection
ANO_TOO_OLD_FILE 36.808 s Anomaly-Detection
ANO_OUT_LOWER_THAN_LIMIT 36.792 s Anomaly-Detection
ANO_OUT_UPPER_THAN_LIMIT 36.693 s Anomaly-Detection
ANO_JSON_SENSITIVITY_NOT_SAVED 6.601 s Anomaly-Detection
ANO_CFG_SENSITIVITY_SAVED 6.616 s Anomaly-Detection
ANO_EXTCMD_SENSITIVITY_SAVED 7.519 s Anomaly-Detection
AOUTLU1 20.339 s Anomaly-Detection
ANO_DT1 20.255 s Anomaly-Detection
ANO_DT2 25.362 s Anomaly-Detection
ANO_DT3 25.357 s Anomaly-Detection
ANO_DT4 20.258 s Anomaly-Detection
BEPBBEE1 8.764 s Bbdo-Protobuf
BEPBBEE2 0.12 s Bbdo-Protobuf
BEPBBEE3 25.305 s Bbdo-Protobuf
BEPBBEE4 10.489 s Bbdo-Protobuf
BEPBBEE5 10.365 s Bbdo-Protobuf
BEPBRI1 10.383 s Bbdo-Protobuf
BEPBCVS 20.541 s Bbdo-Protobuf
BECC1 105.67 s Compression
EBDP1 32.681 s Delete-Poller
EBDP2 26.819 s Delete-Poller
EBDP3 21.382 s Delete-Poller
EBDP4 37.345 s Delete-Poller
EBDP5 32.488 s Delete-Poller
EBDP6 26.687 s Delete-Poller
EBDP7 21.331 s Delete-Poller
EBDP8 37.568 s Delete-Poller
BEDTMASS1 20.57 s Downtimes
BEDTMASS2 16.805 s Downtimes
BEDTSVCREN1 14.371 s Downtimes
BEDTSVCFIXED 13.845 s Downtimes
BEDTHOSTFIXED 20.333 s Downtimes
BEEXTCMD1 26.5 s External-Commands
BEEXTCMD2 26.123 s External-Commands
BEEXTCMD3 26.556 s External-Commands
BEEXTCMD4 26.176 s External-Commands
BEEXTCMD5 30.585 s External-Commands
BEEXTCMD6 24.831 s External-Commands
BEEXTCMD7 30.602 s External-Commands
BEEXTCMD8 26.111 s External-Commands
BEEXTCMD9 30.582 s External-Commands
BEEXTCMD10 26.299 s External-Commands
BEEXTCMD11 30.548000000000002 s External-Commands
BEEXTCMD12 25.622 s External-Commands
BEEXTCMD13 30.622 s External-Commands
BEEXTCMD14 27.189 s External-Commands
BEEXTCMD15 30.536 s External-Commands
BEEXTCMD16 26.447 s External-Commands
BEEXTCMD17 30.501 s External-Commands
BEEXTCMD18 22.629 s External-Commands
BEEXTCMD19 30.642 s External-Commands
BEEXTCMD20 27.191 s External-Commands
BEEXTCMD21 40.486 s External-Commands
BEEXTCMD22 28.527 s External-Commands
BEEXTCMD23 20.409 s External-Commands
BEEXTCMD24 15.643 s External-Commands
BEEXTCMD25 20.329 s External-Commands
BEEXTCMD26 14.18 s External-Commands
BEEXTCMD27 15.325 s External-Commands
BEEXTCMD28 14.36 s External-Commands
BEEXTCMD29 40.56 s External-Commands
BEEXTCMD30 29.582 s External-Commands2
BEEXTCMD31 20.282 s External-Commands2
BEEXTCMD32 15.469 s External-Commands2
BEEXTCMD33 15.287 s External-Commands2
BEEXTCMD34 14.287 s External-Commands2
BEEXTCMD35 20.299 s External-Commands2
BEEXTCMD36 15.994 s External-Commands2
BEEXTCMD37 20.312 s External-Commands2
BEEXTCMD38 14.314 s External-Commands2
BEEXTCMD39 20.225 s External-Commands2
BEEXTCMD40 15.939 s External-Commands2
BEEXTCMD41 15.254 s External-Commands2
BEEXTCMD42 16.951999999999998 s External-Commands2
BEEXTCMD_GRPC1 30.488 s External-Commands2
BEEXTCMD_GRPC2 25.711 s External-Commands2
BEEXTCMD_GRPC3 30.46 s External-Commands2
BEEXTCMD_GRPC4 25.458 s External-Commands2
BEEXTCMD_REVERSE_GRPC1 32.548 s External-Commands2
BEEXTCMD_REVERSE_GRPC2 28.598 s External-Commands2
BEEXTCMD_REVERSE_GRPC3 30.446 s External-Commands2
BEEXTCMD_REVERSE_GRPC4 34.448 s External-Commands2
BEEXTCMD_COMPRESS_GRPC1 30.756 s External-Commands2
BEATOI11 15.918 s External-Commands2
BEATOI12 15.947 s External-Commands2
BEATOI13 15.901 s External-Commands2
BEATOI21 14.291 s External-Commands2
BEATOI22 16.951999999999998 s External-Commands2
BEATOI23 9.943 s External-Commands2
BECUSTOMHOSTVAR 20.448 s External-Commands2
BECUSTOMSVCVAR 20.531 s External-Commands2
BESERVCHECK 6.36 s External-Commands2
BEHOSTCHECK 7.672 s External-Commands2
EBNHG1 12.932 s Hostgroups
EBNHGU1 15.237 s Hostgroups
EBNHGU2 15.191 s Hostgroups
EBNHGU3 15.315 s Hostgroups
EBNHG4 25.53 s Hostgroups
EBNHGU4 30.267 s Hostgroups
EBSNU1 10.242 s Hosts-With-Notes-And-Actions
EBSAU2 10.425 s Hosts-With-Notes-And-Actions
EBSN3 10.231 s Hosts-With-Notes-And-Actions
LOGV2EB1 13.581 s Log-V2 Engine
LOGV2EBU1 21.317 s Log-V2 Engine
LOGV2DB1 27.211 s Log-V2 Engine
LOGV2DB2 72.33 s Log-V2 Engine
LOGV2EB2 14.637 s Log-V2 Engine
LOGV2EBU2 21.325 s Log-V2 Engine
LOGV2EF1 9.532 s Log-V2 Engine
LOGV2DF1 39.731 s Log-V2 Engine
LOGV2DF2 39.598 s Log-V2 Engine
LOGV2EF2 10.079 s Log-V2 Engine
LOGV2FE2 129.645 s Log-V2 Engine
BERES1 11.271 s Output-Tables
BEHS1 10.382 s Output-Tables
BEINSTANCESTATUS 15.426 s Output-Tables
BEINSTANCE 1.156 s Output-Tables
BE_NOTIF_OVERFLOW 20.752 s Output-Tables
BE_TIME_NULL_SERVICE_RESOURCE 10.412 s Output-Tables
BERD1 48.552 s Retention-Duplicates
BERD2 50.373 s Retention-Duplicates
BERDUC1 49.385 s Retention-Duplicates
BERDUCU1 50.467 s Retention-Duplicates
BERDUC2 44.356 s Retention-Duplicates
BERDUCU2 45.346 s Retention-Duplicates
BERDUC3U1 50.545 s Retention-Duplicates
BERDUC3U2 65.442 s Retention-Duplicates
BERDUCA300 11.197 s Retention-Duplicates
BERDUCA301 11.237 s Retention-Duplicates
BRGC1 62.723 s Reverse-Connection
BRCTS1 162.753 s Reverse-Connection
BRCS1 55.204 s Reverse-Connection
BRCTSMN 46.668 s Reverse-Connection
BRCTSMNS 61.816 s Reverse-Connection
BRRDDMDB1 10.251 s Rrd-From-Db
BRRDDIDDB1 11.535 s Rrd-From-Db
BRRDRBDB1 29.84 s Rrd-From-Db
BRRDRBUDB1 34.857 s Rrd-From-Db
BRRDUPLICATE 12.158 s Rrd-From-Db
BRRDDM1 11.36 s Rrd
BRRDWM1 20.463 s Rrd
BRRDDID1 12.679 s Rrd
BRRDDMID1 11.624 s Rrd
BRRDDMU1 6.826 s Rrd
BRRDDIDU1 6.7219999999999995 s Rrd
BRRDDMIDU1 6.584 s Rrd
BRRDRM1 33.933 s Rrd
BRRDRMU1 34.862 s Rrd
BRRDCDDMDB1 10.287 s Rrdcached-From-Db
BRRDCDDIDDB1 11.536 s Rrdcached-From-Db
BRRDCDRBDB1 33.595 s Rrdcached-From-Db
BRRDCDRBUDB1 34.256 s Rrdcached-From-Db
BRRDCDDM1 7.253 s Rrdcached
BRRDCDDID1 12.56 s Rrdcached
BRRDCDDMID1 11.557 s Rrdcached
BRRDCDDMU1 2.716 s Rrdcached
BRRDCDDIDU1 11.616 s Rrdcached
BRRDCDDMIDU1 11.518 s Rrdcached
BRRDCDRB1 33.846 s Rrdcached
BRRDCDRBU1 34.634 s Rrdcached
ENRSCHE1 159.564 s Scheduler
EBNSG1 14.016 s Servicegroups
EBNSGU1 15.244 s Servicegroups
EBNSGU2 11.28 s Servicegroups
EBBPS1 136.416 s Services-And-Bulk-Stmt
EBBPS2 133.422 s Services-And-Bulk-Stmt
EBMSSM 25.323 s Services-And-Bulk-Stmt
EBPS2 26.642 s Services-And-Bulk-Stmt
EBNSVC1 41.238 s Services-Increased
Service_increased_huge_check_interval 50.46 s Services-Increased
EBSNU1 10.266 s Services-With-Notes-And-Actions
EBSAU2 10.454 s Services-With-Notes-And-Actions
EBSN3 10.457 s Services-With-Notes-And-Actions
SDER 15.261 s Services
BESS1 11.600999999999999 s Start-Stop
BESS2 10.478 s Start-Stop
BESS3 6.954 s Start-Stop
BESS4 11.38 s Start-Stop
BESS5 5.735 s Start-Stop
BESS_GRPC1 5.946 s Start-Stop
BESS_GRPC2 9.203 s Start-Stop
BESS_GRPC3 3.86 s Start-Stop
BESS_GRPC4 6.037 s Start-Stop
BESS_GRPC5 4.16 s Start-Stop
BESS_GRPC_COMPRESS1 6.141 s Start-Stop
BESS_CRYPTED_GRPC1 39.258 s Start-Stop
BESS_CRYPTED_GRPC2 39.021 s Start-Stop
BESS_CRYPTED_GRPC3 38.317 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC1 45.122 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC2 61.334 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC3 58.335 s Start-Stop
BESS_ENGINE_DELETE_HOST 16.945 s Start-Stop
BESSBQ1 25.324 s Start-Stop
BETAG1 9.948 s Tags
BETAG2 10.554 s Tags
BEUTAG1 10.262 s Tags
BEUTAG2 20.263 s Tags
BEUTAG3 11.301 s Tags
BEUTAG4 16.313 s Tags
BEUTAG5 11.335 s Tags
BEUTAG6 11.455 s Tags
BEUTAG7 40.518 s Tags
BEUTAG8 15.534 s Tags
BEUTAG9 11.414 s Tags
BEUTAG10 20.366 s Tags
BEUTAG11 15.388 s Tags
BEUTAG12 11.378 s Tags
BECT1 98.024 s Tls
BECT2 13.891 s Tls
BECT3 10.563 s Tls
BECT4 10.707 s Tls
BECT_GRPC1 112.016 s Tls
BECT_GRPC2 13.196 s Tls
BECT_GRPC3 12.99 s Tls
BECT_GRPC4 14.063 s Tls
BSCSSK1 7.784 s Bbdo-Server-Client-Ko
BSCSSK2 7.87 s Bbdo-Server-Client-Ko
BSCSSR1 34.823 s Bbdo-Server-Client-Reversed
BSCSSRR1 30.032 s Bbdo-Server-Client-Reversed
BSCSSPRR1 35.968 s Bbdo-Server-Client-Reversed
BSCSSRR2 37.292 s Bbdo-Server-Client-Reversed
BSCSSGRR1 29.483 s Bbdo-Server-Client-Reversed
BSCSSTRR1 28.428 s Bbdo-Server-Client-Reversed
BSCSSTRR2 40.538 s Bbdo-Server-Client-Reversed
BSCSSTGRR2 10.495 s Bbdo-Server-Client-Reversed
BSCSSCRR1 10.096 s Bbdo-Server-Client-Reversed
BSCSSCRR2 13.098 s Bbdo-Server-Client-Reversed
BSCSSCGRR1 6.8 s Bbdo-Server-Client-Reversed
BSCSSCGRR2 19.212 s Bbdo-Server-Client-Reversed
BSCSS1 51.027 s Bbdo-Server-Client
BSCSSP1 50.969 s Bbdo-Server-Client
BSCSS2 37.228 s Bbdo-Server-Client
BSCSS3 0.075 s Bbdo-Server-Client
BSCSS4 37.211 s Bbdo-Server-Client
BSCSSG1 31.714 s Bbdo-Server-Client
BSCSSG2 57.284 s Bbdo-Server-Client
BSCSSG3 0.074 s Bbdo-Server-Client
BSCSSG4 50.239 s Bbdo-Server-Client
BSCSST1 46.438 s Bbdo-Server-Client
BSCSST2 41.413 s Bbdo-Server-Client
BSCSSTG1 5.07 s Bbdo-Server-Client
BSCSSTG2 11.808 s Bbdo-Server-Client
BSCSSTG3 5.531 s Bbdo-Server-Client
BSCSSC1 9.688 s Bbdo-Server-Client
BSCSSC2 9.688 s Bbdo-Server-Client
BSCSSCG1 10.087 s Bbdo-Server-Client
BSCSSGA1 11.183 s Bbdo-Server-Client
BSCSSGA2 10.684 s Bbdo-Server-Client
BCL1 0.039 s Command-Line
BCL2 7.752 s Command-Line
BCL3 1.318 s Command-Line
BCL4 0.315 s Command-Line
BFC1 8.273 s Filters
BFC2 8.263 s Filters
BGRPCSS1 30.707 s Grpc-Stream
BGRPCSS2 50.327 s Grpc-Stream
BGRPCSS3 25.168 s Grpc-Stream
BGRPCSS4 49.79 s Grpc-Stream
BGRPCSS5 17.642 s Grpc-Stream
BGRPCSSU1 51.239 s Grpc-Stream
BGRPCSSU2 102.415 s Grpc-Stream
BGRPCSSU3 51.224 s Grpc-Stream
BGRPCSSU4 102.397 s Grpc-Stream
BGRPCSSU5 51.214 s Grpc-Stream
BLDIS1 39.714 s Log
BLEC1 3.07 s Log
BLEC2 2.262 s Log
BLEC3 1.271 s Log
BDB1 41.235 s Sql
BDB2 41.228 s Sql
BDB3 41.235 s Sql
BDB4 45.045 s Sql
BDB5 88.804 s Sql
BDB6 94.738 s Sql
BDB7 10.179 s Sql
BDB8 11.286 s Sql
BDB9 11.095 s Sql
BDB10 9.707 s Sql
BEDB2 12.062 s Sql
BEDB3 12.631 s Sql
BEDB4 11.697 s Sql
BDBM1 31.804 s Sql
BDBU1 51.143 s Sql
BDBU3 16.115 s Sql
BDBU5 71.022 s Sql
BDBU7 3.253 s Sql
BDBU10 10.279 s Sql
BDBMU1 34.231 s Sql
BSS1 31.247 s Start-Stop
BSS2 37.267 s Start-Stop
BSS3 0.098 s Start-Stop
BSS4 37.248 s Start-Stop
BSS5 18.643 s Start-Stop
BSSU1 31.243 s Start-Stop
BSSU2 102.421 s Start-Stop
BSSU3 0.105 s Start-Stop
BSSU4 102.311 s Start-Stop
BSSU5 51.225 s Start-Stop
START_STOP_CBD 52.578 s Start-Stop
BECCC1 7.534 s Ccc
BECCC2 11.25 s Ccc
BECCC3 11.248 s Ccc
BECCC4 11.371 s Ccc
BECCC5 11.344 s Ccc
BECCC6 11.344 s Ccc
BECCC7 11.343 s Ccc
BECCC8 11.344 s Ccc
test use connector perl exist script 5.056 s Connector Perl
test use connector perl unknown script 5.054 s Connector Perl
test use connector perl multiple script 10.555 s Connector Perl
TestBadUser 3.058 s Connector Ssh
TestBadPwd 0.07 s Connector Ssh
Test6Hosts 15.29 s Connector Ssh
EFHC1 26.185 s Forced Checks
EFHC2 30.606 s Forced Checks
EFHCU1 30.231 s Forced Checks
EFHCU2 26.324 s Forced Checks
EMACROS 15.256 s Forced Checks
EMACROS_NOTIF 12.734 s Forced Checks
EPC1 16.419 s Perl-Connectors
ESS1 0.11 s Start-Stop
ESS2 7.13 s Start-Stop
ESS3 7.803 s Start-Stop
ESS4 8.798 s Start-Stop
MIGRATION 89.243 s Migration
BEUHSEV1 10.275 s Hosts
BEUHSEV2 15.423 s Hosts
BETUHSEV1 10.484 s Hosts
BESEV1 4.529 s Severities
BESEV2 4.708 s Severities
BEUSEV1 10.234 s Severities
BEUSEV2 11.123 s Severities
BEUSEV3 10.265 s Severities
BEUSEV4 15.498 s Severities
BETUSEV1 10.462 s Severities

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Robot Results

✅ Passed ❌ Failed ⏭️ Skipped Total Pass %
375 0 0 375 100

Passed Tests

Name ⏱️ Duration Suite
BAPBSTATUS 25.428 s Bam Pb
BABEST_SERVICE_CRITICAL 26.617 s Bam Pb
BA_IMPACT_2KPI_SERVICES 35.77 s Bam Pb
BA_RATIO_PERCENT_BA_SERVICE 26.665 s Bam Pb
BA_RATIO_NUMBER_BA_SERVICE 26.61 s Bam Pb
BA_BOOL_KPI 20.721 s Bam Pb
BEPB_DIMENSION_BV_EVENT 10.74 s Bam Pb
BEPB_DIMENSION_BA_EVENT 10.839 s Bam Pb
BEPB_DIMENSION_BA_BV_RELATION_EVENT 10.744 s Bam Pb
BEPB_DIMENSION_TIMEPERIOD 10.739 s Bam Pb
BEPB_DIMENSION_KPI_EVENT 10.743 s Bam Pb
BEPB_KPI_STATUS 20.753 s Bam Pb
BEPB_BA_DURATION_EVENT 20.77 s Bam Pb
BEPB_DIMENSION_BA_TIMEPERIOD_RELATION 10.734 s Bam Pb
BEPB_DIMENSION_TRUNCATE_TABLE 10.737 s Bam Pb
BA_RATIO_NUMBER_BA_4_SERVICE 35.73 s Bam Pb
BA_RATIO_PERCENT_BA_4_SERVICE 35.737 s Bam Pb
BABOO 150.487 s Boolean Rules
BABOOOR 20.612 s Boolean Rules
BABOOAND 20.714 s Boolean Rules
BABOOORREL 35.656 s Boolean Rules
BABOOCOMPL 20.768 s Boolean Rules
BEBAMIDT1 20.455 s Inherited Downtime
BEBAMIDT2 34.955 s Inherited Downtime
BEBAMIGNDT1 26.254 s Inherited Downtime
BEBAMIGNDT2 74.017 s Inherited Downtime
BEBAMIDTU1 30.482 s Pb Inherited Downtime
BEBAMIDTU2 51.264 s Pb Inherited Downtime
BEBAMIGNDTU1 40.782 s Pb Inherited Downtime
BEBAMIGNDTU2 80.617 s Pb Inherited Downtime
NetworkDbFail1 71.599 s networkFailure
NetworkDbFail2 72.839 s networkFailure
NetworkDbFail3 48.846 s networkFailure
NetworkDbFail4 102.708 s networkFailure
NetworkDbFail5 96.945 s networkFailure
NetworkDBFail6 70.681 s networkFailure
NetworkDBFailU6 70.265 s networkFailure
NetworkDBFail7 50.364 s networkFailure
NetworkDBFailU7 50.281 s networkFailure
ANO_NOFILE 36.6 s Anomaly-Detection
ANO_TOO_OLD_FILE 36.63 s Anomaly-Detection
ANO_OUT_LOWER_THAN_LIMIT 36.631 s Anomaly-Detection
ANO_OUT_UPPER_THAN_LIMIT 36.506 s Anomaly-Detection
ANO_JSON_SENSITIVITY_NOT_SAVED 6.608 s Anomaly-Detection
ANO_CFG_SENSITIVITY_SAVED 6.606 s Anomaly-Detection
ANO_EXTCMD_SENSITIVITY_SAVED 7.427 s Anomaly-Detection
AOUTLU1 20.379 s Anomaly-Detection
ANO_DT1 20.374 s Anomaly-Detection
ANO_DT2 25.414 s Anomaly-Detection
ANO_DT3 25.324 s Anomaly-Detection
ANO_DT4 20.453 s Anomaly-Detection
BEPBBEE1 9.725 s Bbdo-Protobuf
BEPBBEE2 0.095 s Bbdo-Protobuf
BEPBBEE3 30.165 s Bbdo-Protobuf
BEPBBEE4 10.432 s Bbdo-Protobuf
BEPBBEE5 10.428 s Bbdo-Protobuf
BEPBRI1 10.43 s Bbdo-Protobuf
BEPBCVS 20.383 s Bbdo-Protobuf
BECC1 108.233 s Compression
EBDP1 32.436 s Delete-Poller
EBDP2 21.697 s Delete-Poller
EBDP3 21.424 s Delete-Poller
EBDP4 37.512 s Delete-Poller
EBDP5 32.648 s Delete-Poller
EBDP6 26.697 s Delete-Poller
EBDP7 21.308 s Delete-Poller
EBDP8 37.156 s Delete-Poller
BEDTMASS1 25.493 s Downtimes
BEDTMASS2 15.262 s Downtimes
BEDTSVCREN1 12.538 s Downtimes
BEDTSVCFIXED 13.115 s Downtimes
BEDTHOSTFIXED 25.35 s Downtimes
BEEXTCMD1 30.536 s External-Commands
BEEXTCMD2 26.538 s External-Commands
BEEXTCMD3 30.483 s External-Commands
BEEXTCMD4 25.947 s External-Commands
BEEXTCMD5 30.427 s External-Commands
BEEXTCMD6 22.242 s External-Commands
BEEXTCMD7 30.578 s External-Commands
BEEXTCMD8 25.907 s External-Commands
BEEXTCMD9 30.613 s External-Commands
BEEXTCMD10 25.504 s External-Commands
BEEXTCMD11 30.455 s External-Commands
BEEXTCMD12 25.894 s External-Commands
BEEXTCMD13 30.648 s External-Commands
BEEXTCMD14 25.896 s External-Commands
BEEXTCMD15 30.485 s External-Commands
BEEXTCMD16 25.461 s External-Commands
BEEXTCMD17 30.607 s External-Commands
BEEXTCMD18 22.492 s External-Commands
BEEXTCMD19 30.533 s External-Commands
BEEXTCMD20 25.839 s External-Commands
BEEXTCMD21 40.581 s External-Commands
BEEXTCMD22 27.201 s External-Commands
BEEXTCMD23 20.248 s External-Commands
BEEXTCMD24 18.991 s External-Commands
BEEXTCMD25 15.259 s External-Commands
BEEXTCMD26 14.205 s External-Commands
BEEXTCMD27 15.256 s External-Commands
BEEXTCMD28 14.221 s External-Commands
BEEXTCMD29 40.695 s External-Commands
BEEXTCMD30 30.646 s External-Commands2
BEEXTCMD31 20.304 s External-Commands2
BEEXTCMD32 15.993 s External-Commands2
BEEXTCMD33 15.312 s External-Commands2
BEEXTCMD34 16.514 s External-Commands2
BEEXTCMD35 20.239 s External-Commands2
BEEXTCMD36 15.633 s External-Commands2
BEEXTCMD37 20.25 s External-Commands2
BEEXTCMD38 14.322 s External-Commands2
BEEXTCMD39 15.276 s External-Commands2
BEEXTCMD40 14.275 s External-Commands2
BEEXTCMD41 15.26 s External-Commands2
BEEXTCMD42 15.983 s External-Commands2
BEEXTCMD_GRPC1 30.56 s External-Commands2
BEEXTCMD_GRPC2 26.282 s External-Commands2
BEEXTCMD_GRPC3 30.514 s External-Commands2
BEEXTCMD_GRPC4 26.071 s External-Commands2
BEEXTCMD_REVERSE_GRPC1 32.562 s External-Commands2
BEEXTCMD_REVERSE_GRPC2 28.258 s External-Commands2
BEEXTCMD_REVERSE_GRPC3 30.482 s External-Commands2
BEEXTCMD_REVERSE_GRPC4 33.745 s External-Commands2
BEEXTCMD_COMPRESS_GRPC1 30.64 s External-Commands2
BEATOI11 15.916 s External-Commands2
BEATOI12 16.941 s External-Commands2
BEATOI13 15.623 s External-Commands2
BEATOI21 13.44 s External-Commands2
BEATOI22 16.959 s External-Commands2
BEATOI23 10.435 s External-Commands2
BECUSTOMHOSTVAR 20.483 s External-Commands2
BECUSTOMSVCVAR 20.573 s External-Commands2
BESERVCHECK 6.409 s External-Commands2
BEHOSTCHECK 6.759 s External-Commands2
EBNHG1 12.602 s Hostgroups
EBNHGU1 15.24 s Hostgroups
EBNHGU2 15.282 s Hostgroups
EBNHGU3 15.333 s Hostgroups
EBNHG4 25.681 s Hostgroups
EBNHGU4 30.254 s Hostgroups
EBSNU1 10.262 s Hosts-With-Notes-And-Actions
EBSAU2 10.353 s Hosts-With-Notes-And-Actions
EBSN3 10.342 s Hosts-With-Notes-And-Actions
LOGV2EB1 12.303 s Log-V2 Engine
LOGV2EBU1 21.251 s Log-V2 Engine
LOGV2DB1 27.187 s Log-V2 Engine
LOGV2DB2 72.189 s Log-V2 Engine
LOGV2EB2 12.309 s Log-V2 Engine
LOGV2EBU2 21.295 s Log-V2 Engine
LOGV2EF1 3.6630000000000003 s Log-V2 Engine
LOGV2DF1 36.612 s Log-V2 Engine
LOGV2DF2 40.579 s Log-V2 Engine
LOGV2EF2 9.554 s Log-V2 Engine
LOGV2FE2 130.033 s Log-V2 Engine
BERES1 11.232 s Output-Tables
BEHS1 10.388 s Output-Tables
BEINSTANCESTATUS 10.361 s Output-Tables
BEINSTANCE 1.116 s Output-Tables
BE_NOTIF_OVERFLOW 20.721 s Output-Tables
BE_TIME_NULL_SERVICE_RESOURCE 10.381 s Output-Tables
BERD1 48.622 s Retention-Duplicates
BERD2 50.365 s Retention-Duplicates
BERDUC1 48.378 s Retention-Duplicates
BERDUCU1 45.436 s Retention-Duplicates
BERDUC2 44.359 s Retention-Duplicates
BERDUCU2 45.395 s Retention-Duplicates
BERDUC3U1 55.65 s Retention-Duplicates
BERDUC3U2 65.418 s Retention-Duplicates
BERDUCA300 11.193 s Retention-Duplicates
BERDUCA301 11.207 s Retention-Duplicates
BRGC1 62.065 s Reverse-Connection
BRCTS1 163.764 s Reverse-Connection
BRCS1 48.497 s Reverse-Connection
BRCTSMN 56.793 s Reverse-Connection
BRCTSMNS 71.742 s Reverse-Connection
BRRDDMDB1 10.281 s Rrd-From-Db
BRRDDIDDB1 11.538 s Rrd-From-Db
BRRDRBDB1 33.857 s Rrd-From-Db
BRRDRBUDB1 34.841 s Rrd-From-Db
BRRDUPLICATE 11.881 s Rrd-From-Db
BRRDDM1 11.584 s Rrd
BRRDWM1 25.55 s Rrd
BRRDDID1 12.835 s Rrd
BRRDDMID1 11.759 s Rrd
BRRDDMU1 6.733 s Rrd
BRRDDIDU1 6.868 s Rrd
BRRDDMIDU1 6.724 s Rrd
BRRDRM1 53.639 s Rrd
BRRDRMU1 69.625 s Rrd
BRRDCDDMDB1 10.252 s Rrdcached-From-Db
BRRDCDDIDDB1 2.66 s Rrdcached-From-Db
BRRDCDRBDB1 32.586 s Rrdcached-From-Db
BRRDCDRBUDB1 33.568 s Rrdcached-From-Db
BRRDCDDM1 11.381 s Rrdcached
BRRDCDDID1 12.647 s Rrdcached
BRRDCDDMID1 11.658 s Rrdcached
BRRDCDDMU1 6.715 s Rrdcached
BRRDCDDIDU1 6.716 s Rrdcached
BRRDCDDMIDU1 6.622 s Rrdcached
BRRDCDRB1 44.263 s Rrdcached
BRRDCDRBU1 44.753 s Rrdcached
ENRSCHE1 159.529 s Scheduler
EBNSG1 13.099 s Servicegroups
EBNSGU1 15.3 s Servicegroups
EBNSGU2 15.271 s Servicegroups
EBBPS1 116.493 s Services-And-Bulk-Stmt
EBBPS2 118.267 s Services-And-Bulk-Stmt
EBMSSM 25.31 s Services-And-Bulk-Stmt
EBPS2 24.344 s Services-And-Bulk-Stmt
EBNSVC1 40.399 s Services-Increased
Service_increased_huge_check_interval 40.461 s Services-Increased
EBSNU1 10.269 s Services-With-Notes-And-Actions
EBSAU2 10.483 s Services-With-Notes-And-Actions
EBSN3 10.455 s Services-With-Notes-And-Actions
SDER 15.241 s Services
BESS1 11.577 s Start-Stop
BESS2 14.163 s Start-Stop
BESS3 9.854 s Start-Stop
BESS4 5.618 s Start-Stop
BESS5 11.355 s Start-Stop
BESS_GRPC1 6.42 s Start-Stop
BESS_GRPC2 6.155 s Start-Stop
BESS_GRPC3 3.54 s Start-Stop
BESS_GRPC4 8.424 s Start-Stop
BESS_GRPC5 8.93 s Start-Stop
BESS_GRPC_COMPRESS1 12.38 s Start-Stop
BESS_CRYPTED_GRPC1 25.252 s Start-Stop
BESS_CRYPTED_GRPC2 43.782 s Start-Stop
BESS_CRYPTED_GRPC3 42.6 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC1 45.087 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC2 58.29 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC3 55.286 s Start-Stop
BESS_ENGINE_DELETE_HOST 17.897 s Start-Stop
BESSBQ1 25.254 s Start-Stop
BETAG1 9.658 s Tags
BETAG2 10.567 s Tags
BEUTAG1 10.282 s Tags
BEUTAG2 20.27 s Tags
BEUTAG3 11.31 s Tags
BEUTAG4 16.352 s Tags
BEUTAG5 11.34 s Tags
BEUTAG6 11.497 s Tags
BEUTAG7 15.467 s Tags
BEUTAG8 10.514 s Tags
BEUTAG9 11.462 s Tags
BEUTAG10 20.633 s Tags
BEUTAG11 26.311 s Tags
BEUTAG12 11.425 s Tags
BECT1 84.365 s Tls
BECT2 13.129 s Tls
BECT3 9.687 s Tls
BECT4 10.309 s Tls
BECT_GRPC1 102.657 s Tls
BECT_GRPC2 13.077 s Tls
BECT_GRPC3 13.04 s Tls
BECT_GRPC4 12.861 s Tls
BSCSSK1 7.796 s Bbdo-Server-Client-Ko
BSCSSK2 8.391 s Bbdo-Server-Client-Ko
BSCSSR1 32.803 s Bbdo-Server-Client-Reversed
BSCSSRR1 30.652 s Bbdo-Server-Client-Reversed
BSCSSPRR1 35.098 s Bbdo-Server-Client-Reversed
BSCSSRR2 37.248 s Bbdo-Server-Client-Reversed
BSCSSGRR1 30.036 s Bbdo-Server-Client-Reversed
BSCSSTRR1 23.123 s Bbdo-Server-Client-Reversed
BSCSSTRR2 23.219 s Bbdo-Server-Client-Reversed
BSCSSTGRR2 10.23 s Bbdo-Server-Client-Reversed
BSCSSCRR1 10.183 s Bbdo-Server-Client-Reversed
BSCSSCRR2 13.188 s Bbdo-Server-Client-Reversed
BSCSSCGRR1 9.684 s Bbdo-Server-Client-Reversed
BSCSSCGRR2 19.195 s Bbdo-Server-Client-Reversed
BSCSS1 51.027 s Bbdo-Server-Client
BSCSSP1 51.061 s Bbdo-Server-Client
BSCSS2 37.268 s Bbdo-Server-Client
BSCSS3 0.088 s Bbdo-Server-Client
BSCSS4 37.246 s Bbdo-Server-Client
BSCSSG1 31.356 s Bbdo-Server-Client
BSCSSG2 50.313 s Bbdo-Server-Client
BSCSSG3 6.208 s Bbdo-Server-Client
BSCSSG4 49.787 s Bbdo-Server-Client
BSCSST1 51.687 s Bbdo-Server-Client
BSCSST2 51.584 s Bbdo-Server-Client
BSCSSTG1 5.09 s Bbdo-Server-Client
BSCSSTG2 11.471 s Bbdo-Server-Client
BSCSSTG3 5.843 s Bbdo-Server-Client
BSCSSC1 9.715 s Bbdo-Server-Client
BSCSSC2 9.606 s Bbdo-Server-Client
BSCSSCG1 12.121 s Bbdo-Server-Client
BSCSSGA1 11.094 s Bbdo-Server-Client
BSCSSGA2 9.692 s Bbdo-Server-Client
BCL1 0.036 s Command-Line
BCL2 7.747 s Command-Line
BCL3 1.361 s Command-Line
BCL4 0.354 s Command-Line
BFC1 8.273 s Filters
BFC2 8.263 s Filters
BGRPCSS1 27.703 s Grpc-Stream
BGRPCSS2 49.825 s Grpc-Stream
BGRPCSS3 25.172 s Grpc-Stream
BGRPCSS4 49.785 s Grpc-Stream
BGRPCSS5 18.647 s Grpc-Stream
BGRPCSSU1 50.951 s Grpc-Stream
BGRPCSSU2 101.63 s Grpc-Stream
BGRPCSSU3 51.135 s Grpc-Stream
BGRPCSSU4 102.413 s Grpc-Stream
BGRPCSSU5 51.226 s Grpc-Stream
BLDIS1 39.729 s Log
BLEC1 3.079 s Log
BLEC2 2.267 s Log
BLEC3 1.274 s Log
BDB1 40.141 s Sql
BDB2 41.232 s Sql
BDB3 41.242 s Sql
BDB4 41.246 s Sql
BDB5 94.836 s Sql
BDB6 82.928 s Sql
BDB7 11.088 s Sql
BDB8 11.19 s Sql
BDB9 11.083 s Sql
BDB10 9.684 s Sql
BEDB2 15.91 s Sql
BEDB3 12.628 s Sql
BEDB4 10.896 s Sql
BDBM1 31.815 s Sql
BDBU1 51.301 s Sql
BDBU3 16.15 s Sql
BDBU5 69.976 s Sql
BDBU7 3.258 s Sql
BDBU10 10.28 s Sql
BDBMU1 33.997 s Sql
BSS1 31.22 s Start-Stop
BSS2 37.231 s Start-Stop
BSS3 0.073 s Start-Stop
BSS4 37.214 s Start-Stop
BSS5 18.628 s Start-Stop
BSSU1 31.211 s Start-Stop
BSSU2 101.493 s Start-Stop
BSSU3 0.075 s Start-Stop
BSSU4 101.371 s Start-Stop
BSSU5 50.707 s Start-Stop
START_STOP_CBD 52.318 s Start-Stop
BECCC1 10.49 s Ccc
BECCC2 11.278 s Ccc
BECCC3 11.384 s Ccc
BECCC4 11.371 s Ccc
BECCC5 11.409 s Ccc
BECCC6 11.396 s Ccc
BECCC7 11.389 s Ccc
BECCC8 11.408 s Ccc
test use connector perl exist script 5.055 s Connector Perl
test use connector perl unknown script 5.054 s Connector Perl
test use connector perl multiple script 10.556000000000001 s Connector Perl
TestBadUser 4.058 s Connector Ssh
TestBadPwd 0.065 s Connector Ssh
Test6Hosts 15.282 s Connector Ssh
EFHC1 26.318 s Forced Checks
EFHC2 30.856 s Forced Checks
EFHCU1 30.247 s Forced Checks
EFHCU2 26.351 s Forced Checks
EMACROS 15.692 s Forced Checks
EMACROS_NOTIF 12.782 s Forced Checks
EPC1 16.698 s Perl-Connectors
ESS1 0.134 s Start-Stop
ESS2 6.777 s Start-Stop
ESS3 8.283 s Start-Stop
ESS4 8.79 s Start-Stop
MIGRATION 98.244 s Migration
BEUHSEV1 10.462 s Hosts
BEUHSEV2 15.407 s Hosts
BETUHSEV1 10.579 s Hosts
BESEV1 4.533 s Severities
BESEV2 4.711 s Severities
BEUSEV1 10.221 s Severities
BEUSEV2 11.129 s Severities
BEUSEV3 10.26 s Severities
BEUSEV4 15.409 s Severities
BETUSEV1 10.478 s Severities

Please sign in to comment.