Skip to content

Commit

Permalink
MON-34002 otl request are sent to broker
Browse files Browse the repository at this point in the history
  • Loading branch information
jean-christophe81 committed Feb 8, 2024
1 parent 689a09d commit 74dccd8
Show file tree
Hide file tree
Showing 27 changed files with 879 additions and 93 deletions.
33 changes: 33 additions & 0 deletions bbdo/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,39 @@ add_dependencies(pb_remove_graph_message_lib target_remove_graph_message
set_target_properties(pb_remove_graph_message_lib
PROPERTIES POSITION_INDEPENDENT_CODE ON)

set(otl_protobuf_files
opentelemetry/proto/collector/metrics/v1/metrics_service
opentelemetry/proto/metrics/v1/metrics
opentelemetry/proto/common/v1/common
opentelemetry/proto/resource/v1/resource
)

foreach(name IN LISTS otl_protobuf_files)
set(proto_file "${name}.proto")
add_custom_command(
OUTPUT "${CMAKE_SOURCE_DIR}/bbdo/${name}.pb.cc"
COMMENT "Generating interface files of the otl file ${proto_file}"
DEPENDS ${CONAN_RES_DIRS_OPENTELEMETRY-PROTO}/${proto_file}
COMMAND
${Protobuf_PROTOC_EXECUTABLE} ARGS --cpp_out=${CMAKE_SOURCE_DIR}/bbdo
--proto_path=${CONAN_RES_DIRS_OPENTELEMETRY-PROTO} ${proto_file}
VERBATIM)
endforeach()

add_library(pb_open_telemetry_lib STATIC
${CMAKE_SOURCE_DIR}/bbdo/opentelemetry/proto/collector/metrics/v1/metrics_service.pb.cc
${CMAKE_SOURCE_DIR}/bbdo/opentelemetry/proto/metrics/v1/metrics.pb.cc
${CMAKE_SOURCE_DIR}/bbdo/opentelemetry/proto/common/v1/common.pb.cc
${CMAKE_SOURCE_DIR}/bbdo/opentelemetry/proto/resource/v1/resource.pb.cc
)

set_target_properties(pb_open_telemetry_lib
PROPERTIES POSITION_INDEPENDENT_CODE ON)





macro(get_protobuf_files name)
set_source_files_properties("${CMAKE_SOURCE_DIR}/bbdo/${name}.pb.cc"
PROPERTIES GENERATED TRUE)
Expand Down
3 changes: 3 additions & 0 deletions bbdo/events.hh
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,9 @@ enum data_element {
de_pb_status = 10,
de_pb_index_mapping = 11,
de_pb_metric_mapping = 12,
de_pb_otl_metrics =
13 // contain an
// ::opentelemetry::proto::collector::metrics::v1::ExportMetricsServiceRequest
};
}
namespace bam {
Expand Down
1 change: 1 addition & 0 deletions broker/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -455,6 +455,7 @@ target_link_libraries(
bbdo_bbdo
pb_bbdo_lib
pb_extcmd_lib
pb_open_telemetry_lib
berpc
CONAN_PKG::zlib
CONAN_PKG::spdlog
Expand Down
3 changes: 3 additions & 0 deletions broker/grpc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ target_link_libraries(
pb_tag_lib
pb_bam_lib
pb_extcmd_lib
pb_open_telemetry_lib
pb_rebuild_message_lib
pb_remove_graph_message_lib
pb_header_lib
Expand Down Expand Up @@ -95,6 +96,7 @@ add_custom_command(
COMMAND
${Protobuf_PROTOC_EXECUTABLE} ARGS --cpp_out=${SRC_DIR}
--proto_path=${MODULE_DIR} --proto_path=${CMAKE_SOURCE_DIR}/bbdo
--proto_path=${CONAN_RES_DIRS_OPENTELEMETRY-PROTO}
grpc_stream.proto
VERBATIM)

Expand All @@ -106,6 +108,7 @@ add_custom_command(
${Protobuf_PROTOC_EXECUTABLE} ARGS --grpc_out=${SRC_DIR}
--plugin=protoc-gen-grpc=${CONAN_BIN_DIRS_GRPC}/grpc_cpp_plugin
--proto_path=${MODULE_DIR} --proto_path=${CMAKE_SOURCE_DIR}/bbdo
--proto_path=${CONAN_RES_DIRS_OPENTELEMETRY-PROTO}
grpc_stream.proto
VERBATIM)

Expand Down
29 changes: 29 additions & 0 deletions broker/grpc/generate_proto.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

file_begin_content = """syntax = "proto3";
import "opentelemetry/proto/collector/metrics/v1/metrics_service.proto";
"""

file_message_centreon_event = """
Expand Down Expand Up @@ -216,6 +217,34 @@ class received_protobuf : public io::protobuf<T, Typ> {
"""

#The following message is not in bbdo protobuff files so we need to add manually.

file_message_centreon_event += f" opentelemetry.proto.collector.metrics.v1.ExportMetricsServiceRequest ExportMetricsServiceRequest_ = {one_of_index};\n"

cc_file_protobuf_to_event_function += """
case ::stream::CentreonEvent::kExportMetricsServiceRequest:
return std::make_shared<detail::received_protobuf<
::opentelemetry::proto::collector::metrics::v1::
ExportMetricsServiceRequest,
make_type(io::storage, storage::de_pb_otl_metrics)>>(
stream_content, &grpc_event_type::exportmetricsservicerequest_,
&grpc_event_type::mutable_exportmetricsservicerequest_);
"""

cc_file_create_event_with_data_function += """
case make_type(io::storage, storage::de_pb_otl_metrics):
ret = std::make_shared<channel::event_with_data>(
event, reinterpret_cast<channel::event_with_data::releaser_type>(
&grpc_event_type::release_exportmetricsservicerequest_));
ret->grpc_event.set_allocated_exportmetricsservicerequest_(
&std::static_pointer_cast<io::protobuf<
::opentelemetry::proto::collector::metrics::v1::
ExportMetricsServiceRequest,
make_type(io::storage, storage::de_pb_otl_metrics)>>(event)
->mut_obj());
break;
"""

with open(args.proto_file, 'w', encoding="utf-8") as fp:
fp.write(file_begin_content)
fp.write("""
Expand Down
55 changes: 38 additions & 17 deletions broker/lua/src/broker_utils.cc
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"

Expand All @@ -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;
Expand Down Expand Up @@ -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++) {
Expand All @@ -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++) {
Expand Down Expand Up @@ -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 {
Expand All @@ -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;
Expand All @@ -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",
Expand Down
11 changes: 9 additions & 2 deletions broker/neb/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,13 @@ set(NEB_SOURCES
add_library(nebbase STATIC ${NEB_SOURCES})
add_dependencies(nebbase table_max_size target_neb target_severity target_tag)

target_link_libraries(nebbase CONAN_PKG::protobuf pb_severity_lib pb_tag_lib
pb_neb_lib pb_header_lib)
target_link_libraries(nebbase
CONAN_PKG::protobuf
pb_severity_lib
pb_tag_lib
pb_neb_lib
pb_header_lib
pb_open_telemetry_lib)

set(NEBBASE_CXXFLAGS "${NEBBASE_CXXFLAGS} -fPIC")
set_property(TARGET nebbase PROPERTY COMPILE_FLAGS ${NEBBASE_CXXFLAGS})
Expand Down Expand Up @@ -162,6 +167,8 @@ endif()
set_target_properties("${CBMOD}" PROPERTIES PREFIX "")
target_precompile_headers(${CBMOD} REUSE_FROM nebbase)

target_include_directories(${CBMOD} PRIVATE ${CMAKE_SOURCE_DIR}/bbdo)

# Testing.
if(WITH_TESTING)
set(TESTS_SOURCES
Expand Down
5 changes: 3 additions & 2 deletions broker/neb/inc/com/centreon/broker/neb/callbacks.hh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
#ifndef CCB_NEB_CALLBACKS_HH
#define CCB_NEB_CALLBACKS_HH


namespace com::centreon::broker {

namespace neb {
Expand Down Expand Up @@ -67,9 +66,11 @@ int callback_tag(int callback_type, void* data) noexcept;

int callback_pb_bench(int callback_type, void* data);

int callback_otl_metrics(int callback_type, void* data);

void unregister_callbacks();
} // namespace neb

}
} // namespace com::centreon::broker

#endif // !CCB_NEB_CALLBACKS_HH
7 changes: 6 additions & 1 deletion broker/neb/inc/com/centreon/broker/neb/internal.hh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
#include "com/centreon/broker/io/protobuf.hh"
#include "com/centreon/broker/multiplexing/publisher.hh"
#include "com/centreon/broker/neb/callback.hh"
#include "opentelemetry/proto/collector/metrics/v1/metrics_service.pb.h"

namespace com::centreon::broker {

Expand Down Expand Up @@ -122,8 +123,12 @@ using pb_service_group_member =
io::protobuf<ServiceGroupMember,
make_type(io::neb, neb::de_pb_service_group_member)>;

using pb_otl_metrics = io::protobuf<
opentelemetry::proto::collector::metrics::v1::ExportMetricsServiceRequest,
make_type(io::storage, storage::de_pb_otl_metrics)>;

} // namespace neb

}
} // namespace com::centreon::broker

#endif // !CCB_NEB_INTERNAL_HH
34 changes: 18 additions & 16 deletions broker/neb/src/broker.cc
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"
Expand Down Expand Up @@ -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");
}
}
}
Expand Down
Loading

4 comments on commit 74dccd8

@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 % ⏱️ Duration
15 267 0 282 5.32 0s

Failed Tests

Name Message ⏱️ Duration Suite
BAWORST No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BAWORST2 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BABEST_SERVICE_CRITICAL No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_IMPACT_2KPI_SERVICES No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_RATIO_PERCENT_BA_SERVICE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_RATIO_NUMBER_BA_SERVICE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_BOOL_KPI No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_BV_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_BA_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_BA_BV_RELATION_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_TIMEPERIOD No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_KPI_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_KPI_STATUS No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_BA_DURATION_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_BA_TIMEPERIOD_RELATION No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_TRUNCATE_TABLE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_RATIO_NUMBER_BA_4_SERVICE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_RATIO_PERCENT_BA_4_SERVICE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEBAMIDT1 No keyword with name 'Config Engine' found. 0.000 s Inherited Downtime
BEBAMIDT2 No keyword with name 'Config Engine' found. 0.000 s Inherited Downtime
BEBAMIGNDT1 No keyword with name 'Config Engine' found. 0.000 s Inherited Downtime
BEBAMIGNDT2 No keyword with name 'Config Engine' found. 0.000 s Inherited Downtime
BEBAMIDTU1 No keyword with name 'Config Engine' found. 0.000 s Pb Inherited Downtime
BEBAMIDTU2 No keyword with name 'Config Engine' found. 0.000 s Pb Inherited Downtime
BEBAMIGNDTU1 No keyword with name 'Config Engine' found. 0.000 s Pb Inherited Downtime
BEBAMIGNDTU2 No keyword with name 'Config Engine' found. 0.000 s Pb Inherited Downtime
BEACK1 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK2 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK3 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK4 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK5 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK6 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
ANO_NOFILE No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_TOO_OLD_FILE No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_OUT_LOWER_THAN_LIMIT No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_OUT_UPPER_THAN_LIMIT No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_JSON_SENSITIVITY_NOT_SAVED No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_CFG_SENSITIVITY_SAVED No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_EXTCMD_SENSITIVITY_SAVED No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
AOUTLU1 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_DT1 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_DT2 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_DT3 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_DT4 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
BEPBBEE1 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBBEE2 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBBEE3 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBBEE4 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBBEE5 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBRI1 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBCVS No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPB_HOST_DEPENDENCY No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPB_SERVICE_DEPENDENCY No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BECC1 No keyword with name 'Config Engine' found. 0.000 s Compression
EBDP1 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP2 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP3 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP4 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP5 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP6 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP7 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP8 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
BEDTMASS1 No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEDTMASS2 No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEDTSVCREN1 No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEDTSVCFIXED No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEDTHOSTFIXED No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEEXTCMD1 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD2 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD3 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD4 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD5 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD6 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD7 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD8 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD9 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD10 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD11 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD12 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD13 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD14 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD15 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD16 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD17 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD18 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD19 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD20 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD21 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD22 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD23 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD24 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD25 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD26 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD27 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD28 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD29 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD30 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD31 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD32 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD33 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD34 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD35 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD36 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD37 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD38 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD39 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD40 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD41 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD42 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_GRPC1 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_GRPC2 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_GRPC3 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_GRPC4 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_REVERSE_GRPC1 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_REVERSE_GRPC2 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_REVERSE_GRPC3 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_REVERSE_GRPC4 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_COMPRESS_GRPC1 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI11 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI12 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI13 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI21 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI22 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI23 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BECUSTOMHOSTVAR No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BECUSTOMSVCVAR No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BESERVCHECK No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEHOSTCHECK No keyword with name 'Config Engine' found. 0.000 s External-Commands2
EBNHG1 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU1 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU2 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU3 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHG4 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU4_BBDO3 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU4_BBDO2 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBSNU1 No keyword with name 'Config Engine' found. 0.000 s Hosts-With-Notes-And-Actions
EBSAU2 No keyword with name 'Config Engine' found. 0.000 s Hosts-With-Notes-And-Actions
EBSN3 No keyword with name 'Config Engine' found. 0.000 s Hosts-With-Notes-And-Actions
LOGV2EB1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EBU1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2DB1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2DB2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EB2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EBU2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EF1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2DF1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2DF2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EF2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2FE2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
BERES1 No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BEHS1 No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BEINSTANCESTATUS No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BEINSTANCE No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BE_NOTIF_OVERFLOW No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BE_TIME_NULL_SERVICE_RESOURCE No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BE_DEFAULT_NOTIFCATION_INTERVAL_IS_ZERO_SERVICE_RESOURCE No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BERD1 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERD2 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUC1 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUCU1 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUC2 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUCU2 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUC3U1 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUC3U2 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUCA300 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUCA301 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BRGC1 No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRCTS1 No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRCS1 No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRCTSMN No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRCTSMNS No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRRDDMDB1 No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDDIDDB1 No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDRBDB1 No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDRBUDB1 No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDUPLICATE No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDDM1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDWM1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDID1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDMID1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDMU1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDIDU1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDMIDU1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDRM1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDRMU1 No keyword with name 'Config Engine' found. 0.000 s Rrd
RRD1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDCDDMDB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached-From-Db
BRRDCDDIDDB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached-From-Db
BRRDCDRBDB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached-From-Db
BRRDCDRBUDB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached-From-Db
BRRDCDDM1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDID1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDMID1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDMU1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDIDU1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDMIDU1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDRB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDRBU1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
ENRSCHE1 No keyword with name 'Config Engine' found. 0.000 s Scheduler
EBNSG1 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBNSGU1 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBNSGU2 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBNSGU3_BBDO3 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBNSGU3_BBDO2 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBNSVC1 No keyword with name 'Config Engine' found. 0.000 s Services-Increased
Service_increased_huge_check_interval No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-Increased
EBSNU1 No keyword with name 'Config Engine' found. 0.000 s Services-With-Notes-And-Actions
EBSAU2 No keyword with name 'Config Engine' found. 0.000 s Services-With-Notes-And-Actions
EBSN3 No keyword with name 'Config Engine' found. 0.000 s Services-With-Notes-And-Actions
BESS1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS3 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS4 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS5 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC3 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC4 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC5 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC_COMPRESS1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_GRPC1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_GRPC3 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC3 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_ENGINE_DELETE_HOST No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESSBQ1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
Start_Stop_Engine_Broker_1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
Start_Stop_Engine_Broker_2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
Start_Stop_Broker_Engine_1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
Start_Stop_Broker_Engine_2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BETAG1 No keyword with name 'Config Engine' found. 0.000 s Tags
BETAG2 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG1 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG2 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG3 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG4 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG5 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG6 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG8 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG9 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG10 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG11 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG12 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG_REMOVE_HOST_FROM_HOSTGROUP No keyword with name 'Config Engine' found. 0.000 s Tags
BECT1 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT2 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT3 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT4 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT_GRPC1 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT_GRPC3 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT_GRPC4 No keyword with name 'Config Engine' found. 0.000 s Tls
BEDB2 No keyword with name 'Config Engine' found. 0.000 s Sql
BEDB3 No keyword with name 'Config Engine' found. 0.000 s Sql
BEDB4 No keyword with name 'Config Engine' found. 0.000 s Sql
BDBM1 No keyword with name 'Config Engine' found. 0.000 s Sql
BDBMU1 No keyword with name 'Config Engine' found. 0.000 s Sql
BESEV1 No keyword with name 'Config Engine' found. 0.000 s Severities
BESEV2 No keyword with name 'Config Engine' found. 0.000 s Severities
BEUSEV1 No keyword with name 'Config Engine' found. 0.000 s Severities
BEUSEV2 No keyword with name 'Config Engine' found. 0.000 s Severities
BEUSEV3 No keyword with name 'Config Engine' found. 0.000 s Severities
BEUSEV4 No keyword with name 'Config Engine' found. 0.000 s Severities
BETUSEV1 No keyword with name 'Config Engine' found. 0.000 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 % ⏱️ Duration
15 311 0 326 4.60 0s

Failed Tests

Name Message ⏱️ Duration Suite
BAWORST No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BAWORST2 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BABEST_SERVICE_CRITICAL No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_IMPACT_2KPI_SERVICES No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_RATIO_PERCENT_BA_SERVICE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_RATIO_NUMBER_BA_SERVICE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_BOOL_KPI No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_BV_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_BA_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_BA_BV_RELATION_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_TIMEPERIOD No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_KPI_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_KPI_STATUS No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_BA_DURATION_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_BA_TIMEPERIOD_RELATION No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_TRUNCATE_TABLE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_RATIO_NUMBER_BA_4_SERVICE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_RATIO_PERCENT_BA_4_SERVICE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BABOO No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Boolean Rules
BABOOOR No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Boolean Rules
BABOOAND No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Boolean Rules
BABOOORREL No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Boolean Rules
BABOOCOMPL No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Boolean Rules
BEBAMIDT1 No keyword with name 'Config Engine' found. 0.000 s Inherited Downtime
BEBAMIDT2 No keyword with name 'Config Engine' found. 0.000 s Inherited Downtime
BEBAMIGNDT1 No keyword with name 'Config Engine' found. 0.000 s Inherited Downtime
BEBAMIGNDT2 No keyword with name 'Config Engine' found. 0.000 s Inherited Downtime
BEBAMIDTU1 No keyword with name 'Config Engine' found. 0.000 s Pb Inherited Downtime
BEBAMIDTU2 No keyword with name 'Config Engine' found. 0.000 s Pb Inherited Downtime
BEBAMIGNDTU1 No keyword with name 'Config Engine' found. 0.000 s Pb Inherited Downtime
BEBAMIGNDTU2 No keyword with name 'Config Engine' found. 0.000 s Pb Inherited Downtime
BEACK1 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK2 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK3 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK4 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK5 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK6 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
ANO_NOFILE No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_TOO_OLD_FILE No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_OUT_LOWER_THAN_LIMIT No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_OUT_UPPER_THAN_LIMIT No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_JSON_SENSITIVITY_NOT_SAVED No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_CFG_SENSITIVITY_SAVED No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_EXTCMD_SENSITIVITY_SAVED No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
AOUTLU1 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_DT1 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_DT2 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_DT3 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_DT4 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
BEPBBEE1 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBBEE2 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBBEE3 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBBEE4 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBBEE5 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBRI1 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBCVS No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPB_HOST_DEPENDENCY No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPB_SERVICE_DEPENDENCY No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BENCH_1000STATUS No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_10000STATUS No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_1000STATUS_TRACES No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_10000STATUS_TRACES No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_1000STATUS_100ENGINE No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_1000STATUS_100ENGINE_2 No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_1000STATUS_100ENGINE_3 No keyword with name 'Config Engine' found. 0.000 s Bench
BECC1 No keyword with name 'Config Engine' found. 0.000 s Compression
EBDP1 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP2 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP3 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP4 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP5 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP6 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP7 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP8 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
BEDTMASS1 No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEDTMASS2 No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEDTSVCREN1 No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEDTSVCFIXED No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEDTHOSTFIXED No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEEXTCMD1 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD2 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD3 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD4 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD5 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD6 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD7 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD8 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD9 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD10 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD11 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD12 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD13 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD14 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD15 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD16 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD17 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD18 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD19 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD20 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD21 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD22 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD23 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD24 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD25 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD26 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD27 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD28 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD29 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD30 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD31 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD32 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD33 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD34 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD35 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD36 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD37 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD38 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD39 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD40 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD41 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD42 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_GRPC1 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_GRPC2 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_GRPC3 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_GRPC4 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_REVERSE_GRPC1 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_REVERSE_GRPC2 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_REVERSE_GRPC3 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_REVERSE_GRPC4 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_COMPRESS_GRPC1 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI11 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI12 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI13 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI21 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI22 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI23 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BECUSTOMHOSTVAR No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BECUSTOMSVCVAR No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BESERVCHECK No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEHOSTCHECK No keyword with name 'Config Engine' found. 0.000 s External-Commands2
EBNHG1 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU1 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU2 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU3 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHG4 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU4_BBDO3 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU4_BBDO2 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBSNU1 No keyword with name 'Config Engine' found. 0.000 s Hosts-With-Notes-And-Actions
EBSAU2 No keyword with name 'Config Engine' found. 0.000 s Hosts-With-Notes-And-Actions
EBSN3 No keyword with name 'Config Engine' found. 0.000 s Hosts-With-Notes-And-Actions
LOGV2EB1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EBU1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2DB1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2DB2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EB2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EBU2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EF1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2DF1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2DF2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EF2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2FE2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
STUPID_FILTER No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
STORAGE_ON_LUA No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
FILTER_ON_LUA_EVENT No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
BAM_STREAM_FILTER No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
UNIFIED_SQL_FILTER No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
CBD_RELOAD_AND_FILTERS No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
CBD_RELOAD_AND_FILTERS_WITH_OPR No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
SEVERAL_FILTERS_ON_LUA_EVENT No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
BEOTEL1 No keyword with name 'Config Engine' found. 0.000 s Opentelemetry
BERES1 No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BEHS1 No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BEINSTANCESTATUS No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BEINSTANCE No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BE_NOTIF_OVERFLOW No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BE_TIME_NULL_SERVICE_RESOURCE No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BE_DEFAULT_NOTIFCATION_INTERVAL_IS_ZERO_SERVICE_RESOURCE No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BERD1 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERD2 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUC1 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUCU1 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUC2 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUCU2 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUC3U1 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUC3U2 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUCA300 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUCA301 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BRGC1 No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRCTS1 No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRCS1 No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRCTSMN No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRCTSMNS No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRRDDMDB1 No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDDIDDB1 No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDRBDB1 No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDRBUDB1 No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDUPLICATE No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDDM1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDWM1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDID1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDMID1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDMU1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDIDU1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDMIDU1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDRM1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDRMU1 No keyword with name 'Config Engine' found. 0.000 s Rrd
RRD1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDCDDMDB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached-From-Db
BRRDCDDIDDB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached-From-Db
BRRDCDRBDB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached-From-Db
BRRDCDRBUDB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached-From-Db
BRRDCDDM1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDID1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDMID1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDMU1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDIDU1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDMIDU1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDRB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDRBU1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
ENRSCHE1 No keyword with name 'Config Engine' found. 0.000 s Scheduler
EBNSG1 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBNSGU1 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBNSGU2 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBNSGU3_BBDO3 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBNSGU3_BBDO2 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBBPS1 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
EBBPS2 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
EBMSSM No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
EBPS2 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
RLCode No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
metric_mapping No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
Services_and_bulks_1 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
Services_and_bulks_2 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
EBNSVC1 No keyword with name 'Config Engine' found. 0.000 s Services-Increased
Service_increased_huge_check_interval No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-Increased
EBSNU1 No keyword with name 'Config Engine' found. 0.000 s Services-With-Notes-And-Actions
EBSAU2 No keyword with name 'Config Engine' found. 0.000 s Services-With-Notes-And-Actions
EBSN3 No keyword with name 'Config Engine' found. 0.000 s Services-With-Notes-And-Actions
SDER No keyword with name 'Config Engine' found. 0.000 s Services
BESS1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS3 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS4 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS5 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC3 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC4 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC5 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC_COMPRESS1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_GRPC1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_GRPC3 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC3 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_ENGINE_DELETE_HOST No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESSBQ1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
Start_Stop_Engine_Broker_1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
Start_Stop_Engine_Broker_2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
Start_Stop_Broker_Engine_1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
Start_Stop_Broker_Engine_2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BETAG1 No keyword with name 'Config Engine' found. 0.000 s Tags
BETAG2 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG1 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG2 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG3 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG4 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG5 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG6 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG8 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG9 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG10 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG11 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG12 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG_REMOVE_HOST_FROM_HOSTGROUP No keyword with name 'Config Engine' found. 0.000 s Tags
BECT1 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT2 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT3 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT4 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT_GRPC1 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT_GRPC3 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT_GRPC4 No keyword with name 'Config Engine' found. 0.000 s Tls
VICT_ONE_CHECK_METRIC No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Victoria
VICT_ONE_CHECK_STATUS No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Victoria
VICT_ONE_CHECK_METRIC_AFTER_FAILURE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Victoria
Whitelist_No_Whitelist_Directory No keyword with name 'Config Engine' found. 0.000 s Whitelist
Whitelist_Empty_Directory No keyword with name 'Config Engine' found. 0.000 s Whitelist
Whitelist_Directory_Rights No keyword with name 'Config Engine' found. 0.000 s Whitelist
Whitelist_Host No keyword with name 'Config Engine' found. 0.000 s Whitelist
Whitelist_Service No keyword with name 'Config Engine' found. 0.000 s Whitelist
Whitelist_Perl_Connector No keyword with name 'Config Engine' found. 0.000 s Whitelist
BEDB2 No keyword with name 'Config Engine' found. 0.000 s Sql
BEDB3 No keyword with name 'Config Engine' found. 0.000 s Sql
BEDB4 No keyword with name 'Config Engine' found. 0.000 s Sql
BDBM1 No keyword with name 'Config Engine' found. 0.000 s Sql
BDBMU1 No keyword with name 'Config Engine' found. 0.000 s Sql
TestBadUser No keyword with name 'Config Engine' found. Also teardown failed: Source file '/tmp/var/log/centreon-engine/config0/connector_ssh.log' does not exist. 0.000 s Connector Ssh
TestBadPwd No keyword with name 'Config Engine' found. Also teardown failed: Source file '/tmp/var/log/centreon-engine/config0/connector_ssh.log' does not exist. 0.000 s Connector Ssh
Test6Hosts No keyword with name 'Config Engine' found. Also teardown failed: Source file '/tmp/var/log/centreon-engine/config0/connector_ssh.log' does not exist. 0.000 s Connector Ssh
TestWhiteList No keyword with name 'Config Engine' found. Also teardown failed: Source file '/tmp/var/log/centreon-engine/config0/connector_ssh.log' does not exist. 0.000 s Connector Ssh
MIGRATION No keyword with name 'Config Engine' found. 0.000 s Migration
BESEV1 No keyword with name 'Config Engine' found. 0.000 s Severities
BESEV2 No keyword with name 'Config Engine' found. 0.000 s Severities
BEUSEV1 No keyword with name 'Config Engine' found. 0.000 s Severities
BEUSEV2 No keyword with name 'Config Engine' found. 0.000 s Severities
BEUSEV3 No keyword with name 'Config Engine' found. 0.000 s Severities
BEUSEV4 No keyword with name 'Config Engine' found. 0.000 s Severities
BETUSEV1 No keyword with name 'Config Engine' found. 0.000 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 % ⏱️ Duration
15 311 0 326 4.60 0s

Failed Tests

Name Message ⏱️ Duration Suite
BAWORST No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BAWORST2 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BABEST_SERVICE_CRITICAL No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_IMPACT_2KPI_SERVICES No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_RATIO_PERCENT_BA_SERVICE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_RATIO_NUMBER_BA_SERVICE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_BOOL_KPI No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_BV_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_BA_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_BA_BV_RELATION_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_TIMEPERIOD No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_KPI_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_KPI_STATUS No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_BA_DURATION_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_BA_TIMEPERIOD_RELATION No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_TRUNCATE_TABLE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_RATIO_NUMBER_BA_4_SERVICE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_RATIO_PERCENT_BA_4_SERVICE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BABOO No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Boolean Rules
BABOOOR No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Boolean Rules
BABOOAND No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Boolean Rules
BABOOORREL No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Boolean Rules
BABOOCOMPL No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Boolean Rules
BEBAMIDT1 No keyword with name 'Config Engine' found. 0.000 s Inherited Downtime
BEBAMIDT2 No keyword with name 'Config Engine' found. 0.000 s Inherited Downtime
BEBAMIGNDT1 No keyword with name 'Config Engine' found. 0.000 s Inherited Downtime
BEBAMIGNDT2 No keyword with name 'Config Engine' found. 0.000 s Inherited Downtime
BEBAMIDTU1 No keyword with name 'Config Engine' found. 0.000 s Pb Inherited Downtime
BEBAMIDTU2 No keyword with name 'Config Engine' found. 0.000 s Pb Inherited Downtime
BEBAMIGNDTU1 No keyword with name 'Config Engine' found. 0.000 s Pb Inherited Downtime
BEBAMIGNDTU2 No keyword with name 'Config Engine' found. 0.000 s Pb Inherited Downtime
BEACK1 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK2 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK3 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK4 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK5 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK6 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
ANO_NOFILE No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_TOO_OLD_FILE No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_OUT_LOWER_THAN_LIMIT No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_OUT_UPPER_THAN_LIMIT No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_JSON_SENSITIVITY_NOT_SAVED No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_CFG_SENSITIVITY_SAVED No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_EXTCMD_SENSITIVITY_SAVED No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
AOUTLU1 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_DT1 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_DT2 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_DT3 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_DT4 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
BEPBBEE1 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBBEE2 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBBEE3 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBBEE4 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBBEE5 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBRI1 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBCVS No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPB_HOST_DEPENDENCY No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPB_SERVICE_DEPENDENCY No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BENCH_1000STATUS No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_10000STATUS No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_1000STATUS_TRACES No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_10000STATUS_TRACES No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_1000STATUS_100ENGINE No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_1000STATUS_100ENGINE_2 No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_1000STATUS_100ENGINE_3 No keyword with name 'Config Engine' found. 0.000 s Bench
BECC1 No keyword with name 'Config Engine' found. 0.000 s Compression
EBDP1 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP2 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP3 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP4 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP5 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP6 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP7 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP8 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
BEDTMASS1 No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEDTMASS2 No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEDTSVCREN1 No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEDTSVCFIXED No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEDTHOSTFIXED No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEEXTCMD1 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD2 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD3 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD4 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD5 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD6 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD7 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD8 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD9 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD10 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD11 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD12 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD13 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD14 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD15 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD16 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD17 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD18 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD19 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD20 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD21 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD22 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD23 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD24 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD25 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD26 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD27 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD28 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD29 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD30 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD31 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD32 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD33 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD34 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD35 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD36 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD37 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD38 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD39 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD40 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD41 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD42 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_GRPC1 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_GRPC2 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_GRPC3 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_GRPC4 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_REVERSE_GRPC1 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_REVERSE_GRPC2 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_REVERSE_GRPC3 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_REVERSE_GRPC4 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_COMPRESS_GRPC1 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI11 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI12 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI13 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI21 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI22 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI23 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BECUSTOMHOSTVAR No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BECUSTOMSVCVAR No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BESERVCHECK No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEHOSTCHECK No keyword with name 'Config Engine' found. 0.000 s External-Commands2
EBNHG1 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU1 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU2 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU3 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHG4 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU4_BBDO3 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU4_BBDO2 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBSNU1 No keyword with name 'Config Engine' found. 0.000 s Hosts-With-Notes-And-Actions
EBSAU2 No keyword with name 'Config Engine' found. 0.000 s Hosts-With-Notes-And-Actions
EBSN3 No keyword with name 'Config Engine' found. 0.000 s Hosts-With-Notes-And-Actions
LOGV2EB1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EBU1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2DB1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2DB2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EB2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EBU2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EF1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2DF1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2DF2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EF2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2FE2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
STUPID_FILTER No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
STORAGE_ON_LUA No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
FILTER_ON_LUA_EVENT No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
BAM_STREAM_FILTER No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
UNIFIED_SQL_FILTER No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
CBD_RELOAD_AND_FILTERS No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
CBD_RELOAD_AND_FILTERS_WITH_OPR No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
SEVERAL_FILTERS_ON_LUA_EVENT No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
BEOTEL1 No keyword with name 'Config Engine' found. 0.000 s Opentelemetry
BERES1 No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BEHS1 No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BEINSTANCESTATUS No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BEINSTANCE No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BE_NOTIF_OVERFLOW No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BE_TIME_NULL_SERVICE_RESOURCE No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BE_DEFAULT_NOTIFCATION_INTERVAL_IS_ZERO_SERVICE_RESOURCE No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BERD1 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERD2 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUC1 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUCU1 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUC2 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUCU2 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUC3U1 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUC3U2 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUCA300 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUCA301 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BRGC1 No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRCTS1 No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRCS1 No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRCTSMN No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRCTSMNS No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRRDDMDB1 No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDDIDDB1 No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDRBDB1 No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDRBUDB1 No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDUPLICATE No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDDM1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDWM1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDID1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDMID1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDMU1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDIDU1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDMIDU1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDRM1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDRMU1 No keyword with name 'Config Engine' found. 0.000 s Rrd
RRD1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDCDDMDB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached-From-Db
BRRDCDDIDDB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached-From-Db
BRRDCDRBDB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached-From-Db
BRRDCDRBUDB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached-From-Db
BRRDCDDM1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDID1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDMID1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDMU1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDIDU1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDMIDU1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDRB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDRBU1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
ENRSCHE1 No keyword with name 'Config Engine' found. 0.000 s Scheduler
EBNSG1 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBNSGU1 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBNSGU2 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBNSGU3_BBDO3 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBNSGU3_BBDO2 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBBPS1 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
EBBPS2 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
EBMSSM No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
EBPS2 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
RLCode No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
metric_mapping No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
Services_and_bulks_1 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
Services_and_bulks_2 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
EBNSVC1 No keyword with name 'Config Engine' found. 0.000 s Services-Increased
Service_increased_huge_check_interval No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-Increased
EBSNU1 No keyword with name 'Config Engine' found. 0.000 s Services-With-Notes-And-Actions
EBSAU2 No keyword with name 'Config Engine' found. 0.000 s Services-With-Notes-And-Actions
EBSN3 No keyword with name 'Config Engine' found. 0.000 s Services-With-Notes-And-Actions
SDER No keyword with name 'Config Engine' found. 0.000 s Services
BESS1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS3 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS4 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS5 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC3 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC4 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC5 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC_COMPRESS1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_GRPC1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_GRPC3 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC3 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_ENGINE_DELETE_HOST No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESSBQ1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
Start_Stop_Engine_Broker_1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
Start_Stop_Engine_Broker_2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
Start_Stop_Broker_Engine_1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
Start_Stop_Broker_Engine_2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BETAG1 No keyword with name 'Config Engine' found. 0.000 s Tags
BETAG2 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG1 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG2 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG3 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG4 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG5 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG6 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG8 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG9 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG10 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG11 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG12 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG_REMOVE_HOST_FROM_HOSTGROUP No keyword with name 'Config Engine' found. 0.000 s Tags
BECT1 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT2 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT3 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT4 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT_GRPC1 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT_GRPC3 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT_GRPC4 No keyword with name 'Config Engine' found. 0.000 s Tls
VICT_ONE_CHECK_METRIC No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Victoria
VICT_ONE_CHECK_STATUS No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Victoria
VICT_ONE_CHECK_METRIC_AFTER_FAILURE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Victoria
Whitelist_No_Whitelist_Directory No keyword with name 'Config Engine' found. 0.000 s Whitelist
Whitelist_Empty_Directory No keyword with name 'Config Engine' found. 0.000 s Whitelist
Whitelist_Directory_Rights No keyword with name 'Config Engine' found. 0.000 s Whitelist
Whitelist_Host No keyword with name 'Config Engine' found. 0.000 s Whitelist
Whitelist_Service No keyword with name 'Config Engine' found. 0.000 s Whitelist
Whitelist_Perl_Connector No keyword with name 'Config Engine' found. 0.000 s Whitelist
BEDB2 No keyword with name 'Config Engine' found. 0.000 s Sql
BEDB3 No keyword with name 'Config Engine' found. 0.000 s Sql
BEDB4 No keyword with name 'Config Engine' found. 0.000 s Sql
BDBM1 No keyword with name 'Config Engine' found. 0.000 s Sql
BDBMU1 No keyword with name 'Config Engine' found. 0.000 s Sql
TestBadUser No keyword with name 'Config Engine' found. Also teardown failed: Source file '/tmp/var/log/centreon-engine/config0/connector_ssh.log' does not exist. 0.000 s Connector Ssh
TestBadPwd No keyword with name 'Config Engine' found. Also teardown failed: Source file '/tmp/var/log/centreon-engine/config0/connector_ssh.log' does not exist. 0.000 s Connector Ssh
Test6Hosts No keyword with name 'Config Engine' found. Also teardown failed: Source file '/tmp/var/log/centreon-engine/config0/connector_ssh.log' does not exist. 0.000 s Connector Ssh
TestWhiteList No keyword with name 'Config Engine' found. Also teardown failed: Source file '/tmp/var/log/centreon-engine/config0/connector_ssh.log' does not exist. 0.000 s Connector Ssh
MIGRATION No keyword with name 'Config Engine' found. 0.000 s Migration
BESEV1 No keyword with name 'Config Engine' found. 0.000 s Severities
BESEV2 No keyword with name 'Config Engine' found. 0.000 s Severities
BEUSEV1 No keyword with name 'Config Engine' found. 0.000 s Severities
BEUSEV2 No keyword with name 'Config Engine' found. 0.000 s Severities
BEUSEV3 No keyword with name 'Config Engine' found. 0.000 s Severities
BEUSEV4 No keyword with name 'Config Engine' found. 0.000 s Severities
BETUSEV1 No keyword with name 'Config Engine' found. 0.000 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 % ⏱️ Duration
30 622 0 652 4.60 0s

Failed Tests

Name Message ⏱️ Duration Suite
BAWORST No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BAWORST2 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BABEST_SERVICE_CRITICAL No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_IMPACT_2KPI_SERVICES No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_RATIO_PERCENT_BA_SERVICE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_RATIO_NUMBER_BA_SERVICE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_BOOL_KPI No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_BV_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_BA_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_BA_BV_RELATION_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_TIMEPERIOD No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_KPI_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_KPI_STATUS No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_BA_DURATION_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_BA_TIMEPERIOD_RELATION No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_TRUNCATE_TABLE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_RATIO_NUMBER_BA_4_SERVICE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_RATIO_PERCENT_BA_4_SERVICE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BAWORST No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BAWORST2 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BABEST_SERVICE_CRITICAL No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_IMPACT_2KPI_SERVICES No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_RATIO_PERCENT_BA_SERVICE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_RATIO_NUMBER_BA_SERVICE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_BOOL_KPI No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_BV_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_BA_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_BA_BV_RELATION_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_TIMEPERIOD No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_KPI_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_KPI_STATUS No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_BA_DURATION_EVENT No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_BA_TIMEPERIOD_RELATION No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BEPB_DIMENSION_TRUNCATE_TABLE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b1'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Central Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_RATIO_NUMBER_BA_4_SERVICE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BA_RATIO_PERCENT_BA_4_SERVICE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Bam Pb
BABOO No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Boolean Rules
BABOOOR No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Boolean Rules
BABOOAND No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Boolean Rules
BABOOORREL No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Boolean Rules
BABOOCOMPL No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Boolean Rules
BABOO No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Boolean Rules
BABOOOR No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Boolean Rules
BABOOAND No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Boolean Rules
BABOOORREL No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Boolean Rules
BABOOCOMPL No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Boolean Rules
BEBAMIDT1 No keyword with name 'Config Engine' found. 0.000 s Inherited Downtime
BEBAMIDT2 No keyword with name 'Config Engine' found. 0.000 s Inherited Downtime
BEBAMIGNDT1 No keyword with name 'Config Engine' found. 0.000 s Inherited Downtime
BEBAMIGNDT2 No keyword with name 'Config Engine' found. 0.000 s Inherited Downtime
BEBAMIDT1 No keyword with name 'Config Engine' found. 0.000 s Inherited Downtime
BEBAMIDT2 No keyword with name 'Config Engine' found. 0.000 s Inherited Downtime
BEBAMIGNDT1 No keyword with name 'Config Engine' found. 0.000 s Inherited Downtime
BEBAMIGNDT2 No keyword with name 'Config Engine' found. 0.000 s Inherited Downtime
BEBAMIDTU1 No keyword with name 'Config Engine' found. 0.000 s Pb Inherited Downtime
BEBAMIDTU2 No keyword with name 'Config Engine' found. 0.000 s Pb Inherited Downtime
BEBAMIGNDTU1 No keyword with name 'Config Engine' found. 0.000 s Pb Inherited Downtime
BEBAMIGNDTU2 No keyword with name 'Config Engine' found. 0.000 s Pb Inherited Downtime
BEBAMIDTU1 No keyword with name 'Config Engine' found. 0.000 s Pb Inherited Downtime
BEBAMIDTU2 No keyword with name 'Config Engine' found. 0.000 s Pb Inherited Downtime
BEBAMIGNDTU1 No keyword with name 'Config Engine' found. 0.000 s Pb Inherited Downtime
BEBAMIGNDTU2 No keyword with name 'Config Engine' found. 0.000 s Pb Inherited Downtime
BEACK1 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK2 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK3 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK4 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK5 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK6 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK1 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK2 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK3 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK4 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK5 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
BEACK6 No keyword with name 'Config Engine' found. 0.000 s Acknowledgement
ANO_NOFILE No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_TOO_OLD_FILE No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_OUT_LOWER_THAN_LIMIT No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_OUT_UPPER_THAN_LIMIT No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_JSON_SENSITIVITY_NOT_SAVED No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_CFG_SENSITIVITY_SAVED No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_EXTCMD_SENSITIVITY_SAVED No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
AOUTLU1 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_DT1 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_DT2 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_DT3 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_DT4 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_NOFILE No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_TOO_OLD_FILE No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_OUT_LOWER_THAN_LIMIT No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_OUT_UPPER_THAN_LIMIT No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_JSON_SENSITIVITY_NOT_SAVED No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_CFG_SENSITIVITY_SAVED No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_EXTCMD_SENSITIVITY_SAVED No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
AOUTLU1 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_DT1 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_DT2 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_DT3 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
ANO_DT4 No keyword with name 'Config Engine' found. 0.000 s Anomaly-Detection
BEPBBEE1 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBBEE2 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBBEE3 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBBEE4 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBBEE5 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBRI1 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBCVS No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPB_HOST_DEPENDENCY No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPB_SERVICE_DEPENDENCY No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBBEE1 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBBEE2 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBBEE3 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBBEE4 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBBEE5 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBRI1 No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPBCVS No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPB_HOST_DEPENDENCY No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BEPB_SERVICE_DEPENDENCY No keyword with name 'Config Engine' found. 0.000 s Bbdo-Protobuf
BENCH_1000STATUS No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_10000STATUS No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_1000STATUS_TRACES No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_10000STATUS_TRACES No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_1000STATUS_100ENGINE No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_1000STATUS_100ENGINE_2 No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_1000STATUS_100ENGINE_3 No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_1000STATUS No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_10000STATUS No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_1000STATUS_TRACES No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_10000STATUS_TRACES No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_1000STATUS_100ENGINE No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_1000STATUS_100ENGINE_2 No keyword with name 'Config Engine' found. 0.000 s Bench
BENCH_1000STATUS_100ENGINE_3 No keyword with name 'Config Engine' found. 0.000 s Bench
BECC1 No keyword with name 'Config Engine' found. 0.000 s Compression
BECC1 No keyword with name 'Config Engine' found. 0.000 s Compression
EBDP1 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP2 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP3 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP4 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP5 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP6 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP7 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP8 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP1 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP2 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP3 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP4 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP5 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP6 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP7 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
EBDP8 No keyword with name 'Config Engine' found. 0.000 s Delete-Poller
BEDTMASS1 No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEDTMASS2 No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEDTSVCREN1 No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEDTSVCFIXED No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEDTHOSTFIXED No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEDTMASS1 No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEDTMASS2 No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEDTSVCREN1 No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEDTSVCFIXED No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEDTHOSTFIXED No keyword with name 'Config Engine' found. 0.000 s Downtimes
BEEXTCMD1 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD2 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD3 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD4 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD5 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD6 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD7 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD8 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD9 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD10 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD11 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD12 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD13 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD14 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD15 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD16 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD17 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD18 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD19 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD20 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD21 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD22 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD23 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD24 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD25 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD26 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD27 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD28 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD29 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD1 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD2 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD3 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD4 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD5 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD6 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD7 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD8 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD9 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD10 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD11 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD12 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD13 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD14 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD15 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD16 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD17 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD18 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD19 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD20 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD21 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD22 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD23 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD24 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD25 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD26 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD27 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD28 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD29 No keyword with name 'Config Engine' found. 0.000 s External-Commands
BEEXTCMD30 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD31 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD32 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD33 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD34 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD35 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD36 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD37 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD38 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD39 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD40 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD41 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD42 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_GRPC1 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_GRPC2 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_GRPC3 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_GRPC4 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_REVERSE_GRPC1 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_REVERSE_GRPC2 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_REVERSE_GRPC3 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_REVERSE_GRPC4 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_COMPRESS_GRPC1 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI11 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI12 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI13 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI21 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI22 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI23 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BECUSTOMHOSTVAR No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BECUSTOMSVCVAR No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BESERVCHECK No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEHOSTCHECK No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD30 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD31 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD32 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD33 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD34 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD35 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD36 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD37 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD38 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD39 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD40 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD41 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD42 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_GRPC1 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_GRPC2 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_GRPC3 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_GRPC4 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_REVERSE_GRPC1 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_REVERSE_GRPC2 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_REVERSE_GRPC3 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_REVERSE_GRPC4 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEEXTCMD_COMPRESS_GRPC1 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI11 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI12 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI13 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI21 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI22 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEATOI23 No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BECUSTOMHOSTVAR No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BECUSTOMSVCVAR No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BESERVCHECK No keyword with name 'Config Engine' found. 0.000 s External-Commands2
BEHOSTCHECK No keyword with name 'Config Engine' found. 0.000 s External-Commands2
EBNHG1 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU1 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU2 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU3 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHG4 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU4_BBDO3 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU4_BBDO2 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHG1 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU1 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU2 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU3 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHG4 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU4_BBDO3 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBNHGU4_BBDO2 No keyword with name 'Config Engine' found. 0.000 s Hostgroups
EBSNU1 No keyword with name 'Config Engine' found. 0.000 s Hosts-With-Notes-And-Actions
EBSAU2 No keyword with name 'Config Engine' found. 0.000 s Hosts-With-Notes-And-Actions
EBSN3 No keyword with name 'Config Engine' found. 0.000 s Hosts-With-Notes-And-Actions
EBSNU1 No keyword with name 'Config Engine' found. 0.000 s Hosts-With-Notes-And-Actions
EBSAU2 No keyword with name 'Config Engine' found. 0.000 s Hosts-With-Notes-And-Actions
EBSN3 No keyword with name 'Config Engine' found. 0.000 s Hosts-With-Notes-And-Actions
LOGV2EB1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EBU1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2DB1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2DB2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EB2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EBU2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EF1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2DF1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2DF2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EF2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2FE2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EB1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EBU1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2DB1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2DB2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EB2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EBU2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EF1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2DF1 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2DF2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2EF2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
LOGV2FE2 No keyword with name 'Config Engine' found. 0.000 s Log-V2 Engine
STUPID_FILTER No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
STORAGE_ON_LUA No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
FILTER_ON_LUA_EVENT No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
BAM_STREAM_FILTER No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
UNIFIED_SQL_FILTER No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
CBD_RELOAD_AND_FILTERS No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
CBD_RELOAD_AND_FILTERS_WITH_OPR No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
SEVERAL_FILTERS_ON_LUA_EVENT No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
STUPID_FILTER No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
STORAGE_ON_LUA No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
FILTER_ON_LUA_EVENT No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
BAM_STREAM_FILTER No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
UNIFIED_SQL_FILTER No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
CBD_RELOAD_AND_FILTERS No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
CBD_RELOAD_AND_FILTERS_WITH_OPR No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
SEVERAL_FILTERS_ON_LUA_EVENT No keyword with name 'Config Engine' found. 0.000 s Muxer Filter
BEOTEL1 No keyword with name 'Config Engine' found. 0.000 s Opentelemetry
BEOTEL1 No keyword with name 'Config Engine' found. 0.000 s Opentelemetry
BERES1 No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BEHS1 No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BEINSTANCESTATUS No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BEINSTANCE No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BE_NOTIF_OVERFLOW No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BE_TIME_NULL_SERVICE_RESOURCE No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BE_DEFAULT_NOTIFCATION_INTERVAL_IS_ZERO_SERVICE_RESOURCE No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BERES1 No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BEHS1 No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BEINSTANCESTATUS No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BEINSTANCE No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BE_NOTIF_OVERFLOW No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BE_TIME_NULL_SERVICE_RESOURCE No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BE_DEFAULT_NOTIFCATION_INTERVAL_IS_ZERO_SERVICE_RESOURCE No keyword with name 'Config Engine' found. 0.000 s Output-Tables
BERD1 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERD2 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUC1 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUCU1 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUC2 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUCU2 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUC3U1 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUC3U2 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUCA300 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUCA301 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERD1 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERD2 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUC1 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUCU1 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUC2 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUCU2 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUC3U1 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUC3U2 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUCA300 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BERDUCA301 No keyword with name 'Config Engine' found. 0.000 s Retention-Duplicates
BRGC1 No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRCTS1 No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRCS1 No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRCTSMN No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRCTSMNS No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRGC1 No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRCTS1 No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRCS1 No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRCTSMN No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRCTSMNS No keyword with name 'Config Engine' found. 0.000 s Reverse-Connection
BRRDDMDB1 No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDDIDDB1 No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDRBDB1 No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDRBUDB1 No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDUPLICATE No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDDMDB1 No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDDIDDB1 No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDRBDB1 No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDRBUDB1 No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDUPLICATE No keyword with name 'Config Engine' found. 0.000 s Rrd-From-Db
BRRDDM1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDWM1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDID1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDMID1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDMU1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDIDU1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDMIDU1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDRM1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDRMU1 No keyword with name 'Config Engine' found. 0.000 s Rrd
RRD1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDM1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDWM1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDID1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDMID1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDMU1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDIDU1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDDMIDU1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDRM1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDRMU1 No keyword with name 'Config Engine' found. 0.000 s Rrd
RRD1 No keyword with name 'Config Engine' found. 0.000 s Rrd
BRRDCDDMDB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached-From-Db
BRRDCDDIDDB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached-From-Db
BRRDCDRBDB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached-From-Db
BRRDCDRBUDB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached-From-Db
BRRDCDDMDB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached-From-Db
BRRDCDDIDDB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached-From-Db
BRRDCDRBDB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached-From-Db
BRRDCDRBUDB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached-From-Db
BRRDCDDM1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDID1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDMID1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDMU1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDIDU1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDMIDU1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDRB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDRBU1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDM1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDID1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDMID1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDMU1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDIDU1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDDMIDU1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDRB1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
BRRDCDRBU1 No keyword with name 'Config Engine' found. 0.000 s Rrdcached
ENRSCHE1 No keyword with name 'Config Engine' found. 0.000 s Scheduler
ENRSCHE1 No keyword with name 'Config Engine' found. 0.000 s Scheduler
EBNSG1 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBNSGU1 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBNSGU2 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBNSGU3_BBDO3 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBNSGU3_BBDO2 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBNSG1 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBNSGU1 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBNSGU2 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBNSGU3_BBDO3 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBNSGU3_BBDO2 No keyword with name 'Config Engine' found. 0.000 s Servicegroups
EBBPS1 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
EBBPS2 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
EBMSSM No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
EBPS2 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
RLCode No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
metric_mapping No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
Services_and_bulks_1 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
Services_and_bulks_2 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
EBBPS1 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
EBBPS2 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
EBMSSM No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
EBPS2 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
RLCode No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
metric_mapping No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
Services_and_bulks_1 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
Services_and_bulks_2 No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-And-Bulk-Stmt
EBNSVC1 No keyword with name 'Config Engine' found. 0.000 s Services-Increased
Service_increased_huge_check_interval No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-Increased
EBNSVC1 No keyword with name 'Config Engine' found. 0.000 s Services-Increased
Service_increased_huge_check_interval No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Services-Increased
EBSNU1 No keyword with name 'Config Engine' found. 0.000 s Services-With-Notes-And-Actions
EBSAU2 No keyword with name 'Config Engine' found. 0.000 s Services-With-Notes-And-Actions
EBSN3 No keyword with name 'Config Engine' found. 0.000 s Services-With-Notes-And-Actions
EBSNU1 No keyword with name 'Config Engine' found. 0.000 s Services-With-Notes-And-Actions
EBSAU2 No keyword with name 'Config Engine' found. 0.000 s Services-With-Notes-And-Actions
EBSN3 No keyword with name 'Config Engine' found. 0.000 s Services-With-Notes-And-Actions
SDER No keyword with name 'Config Engine' found. 0.000 s Services
SDER No keyword with name 'Config Engine' found. 0.000 s Services
BESS1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS3 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS4 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS5 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC3 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC4 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC5 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC_COMPRESS1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_GRPC1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_GRPC3 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC3 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_ENGINE_DELETE_HOST No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESSBQ1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
Start_Stop_Engine_Broker_1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
Start_Stop_Engine_Broker_2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
Start_Stop_Broker_Engine_1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
Start_Stop_Broker_Engine_2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS3 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS4 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS5 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC3 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC4 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC5 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_GRPC_COMPRESS1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_GRPC1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_GRPC3 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC3 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESS_ENGINE_DELETE_HOST No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BESSBQ1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
Start_Stop_Engine_Broker_1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
Start_Stop_Engine_Broker_2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
Start_Stop_Broker_Engine_1 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
Start_Stop_Broker_Engine_2 No keyword with name 'Config Engine' found. 0.000 s Start-Stop
BETAG1 No keyword with name 'Config Engine' found. 0.000 s Tags
BETAG2 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG1 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG2 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG3 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG4 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG5 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG6 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG8 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG9 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG10 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG11 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG12 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG_REMOVE_HOST_FROM_HOSTGROUP No keyword with name 'Config Engine' found. 0.000 s Tags
BETAG1 No keyword with name 'Config Engine' found. 0.000 s Tags
BETAG2 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG1 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG2 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG3 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG4 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG5 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG6 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG8 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG9 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG10 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG11 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG12 No keyword with name 'Config Engine' found. 0.000 s Tags
BEUTAG_REMOVE_HOST_FROM_HOSTGROUP No keyword with name 'Config Engine' found. 0.000 s Tags
BECT1 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT2 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT3 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT4 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT_GRPC1 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT_GRPC3 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT_GRPC4 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT1 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT2 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT3 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT4 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT_GRPC1 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT_GRPC2 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT_GRPC3 No keyword with name 'Config Engine' found. 0.000 s Tls
BECT_GRPC4 No keyword with name 'Config Engine' found. 0.000 s Tls
VICT_ONE_CHECK_METRIC No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Victoria
VICT_ONE_CHECK_STATUS No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Victoria
VICT_ONE_CHECK_METRIC_AFTER_FAILURE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Victoria
VICT_ONE_CHECK_METRIC No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Victoria
VICT_ONE_CHECK_STATUS No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Victoria
VICT_ONE_CHECK_METRIC_AFTER_FAILURE No keyword with name 'Config Engine' found. Also teardown failed: Several failures occurred: 1) No keyword with name 'Get Engines Count' found. 2) Variable '${count}' not found. 3) Variable '${count}' not found. 4) Non-existing index or alias 'b1'. 5) Non-existing index or alias 'b2'. 6) Non-existing index or alias 'b1'. 7) Non-existing index or alias 'b1'. 8) Non-existing index or alias 'b1'. 9) Central Broker not correctly stopped (coredump generated) 10) Non-existing index or alias 'b2'. 11) Non-existing index or alias 'b2'. 12) Non-existing index or alias 'b2'. 13) RRD Broker not correctly stopped (coredump generated) 0.000 s Victoria
Whitelist_No_Whitelist_Directory No keyword with name 'Config Engine' found. 0.000 s Whitelist
Whitelist_Empty_Directory No keyword with name 'Config Engine' found. 0.000 s Whitelist
Whitelist_Directory_Rights No keyword with name 'Config Engine' found. 0.000 s Whitelist
Whitelist_Host No keyword with name 'Config Engine' found. 0.000 s Whitelist
Whitelist_Service No keyword with name 'Config Engine' found. 0.000 s Whitelist
Whitelist_Perl_Connector No keyword with name 'Config Engine' found. 0.000 s Whitelist
Whitelist_No_Whitelist_Directory No keyword with name 'Config Engine' found. 0.000 s Whitelist
Whitelist_Empty_Directory No keyword with name 'Config Engine' found. 0.000 s Whitelist
Whitelist_Directory_Rights No keyword with name 'Config Engine' found. 0.000 s Whitelist
Whitelist_Host No keyword with name 'Config Engine' found. 0.000 s Whitelist
Whitelist_Service No keyword with name 'Config Engine' found. 0.000 s Whitelist
Whitelist_Perl_Connector No keyword with name 'Config Engine' found. 0.000 s Whitelist
BEDB2 No keyword with name 'Config Engine' found. 0.000 s Sql
BEDB3 No keyword with name 'Config Engine' found. 0.000 s Sql
BEDB4 No keyword with name 'Config Engine' found. 0.000 s Sql
BDBM1 No keyword with name 'Config Engine' found. 0.000 s Sql
BDBMU1 No keyword with name 'Config Engine' found. 0.000 s Sql
BEDB2 No keyword with name 'Config Engine' found. 0.000 s Sql
BEDB3 No keyword with name 'Config Engine' found. 0.000 s Sql
BEDB4 No keyword with name 'Config Engine' found. 0.000 s Sql
BDBM1 No keyword with name 'Config Engine' found. 0.000 s Sql
BDBMU1 No keyword with name 'Config Engine' found. 0.000 s Sql
TestBadUser No keyword with name 'Config Engine' found. Also teardown failed: Source file '/tmp/var/log/centreon-engine/config0/connector_ssh.log' does not exist. 0.000 s Connector Ssh
TestBadPwd No keyword with name 'Config Engine' found. Also teardown failed: Source file '/tmp/var/log/centreon-engine/config0/connector_ssh.log' does not exist. 0.000 s Connector Ssh
Test6Hosts No keyword with name 'Config Engine' found. Also teardown failed: Source file '/tmp/var/log/centreon-engine/config0/connector_ssh.log' does not exist. 0.000 s Connector Ssh
TestWhiteList No keyword with name 'Config Engine' found. Also teardown failed: Source file '/tmp/var/log/centreon-engine/config0/connector_ssh.log' does not exist. 0.000 s Connector Ssh
TestBadUser No keyword with name 'Config Engine' found. Also teardown failed: Source file '/tmp/var/log/centreon-engine/config0/connector_ssh.log' does not exist. 0.000 s Connector Ssh
TestBadPwd No keyword with name 'Config Engine' found. Also teardown failed: Source file '/tmp/var/log/centreon-engine/config0/connector_ssh.log' does not exist. 0.000 s Connector Ssh
Test6Hosts No keyword with name 'Config Engine' found. Also teardown failed: Source file '/tmp/var/log/centreon-engine/config0/connector_ssh.log' does not exist. 0.000 s Connector Ssh
TestWhiteList No keyword with name 'Config Engine' found. Also teardown failed: Source file '/tmp/var/log/centreon-engine/config0/connector_ssh.log' does not exist. 0.000 s Connector Ssh
MIGRATION No keyword with name 'Config Engine' found. 0.000 s Migration
MIGRATION No keyword with name 'Config Engine' found. 0.000 s Migration
BESEV1 No keyword with name 'Config Engine' found. 0.000 s Severities
BESEV2 No keyword with name 'Config Engine' found. 0.000 s Severities
BEUSEV1 No keyword with name 'Config Engine' found. 0.000 s Severities
BEUSEV2 No keyword with name 'Config Engine' found. 0.000 s Severities
BEUSEV3 No keyword with name 'Config Engine' found. 0.000 s Severities
BEUSEV4 No keyword with name 'Config Engine' found. 0.000 s Severities
BETUSEV1 No keyword with name 'Config Engine' found. 0.000 s Severities
BESEV1 No keyword with name 'Config Engine' found. 0.000 s Severities
BESEV2 No keyword with name 'Config Engine' found. 0.000 s Severities
BEUSEV1 No keyword with name 'Config Engine' found. 0.000 s Severities
BEUSEV2 No keyword with name 'Config Engine' found. 0.000 s Severities
BEUSEV3 No keyword with name 'Config Engine' found. 0.000 s Severities
BEUSEV4 No keyword with name 'Config Engine' found. 0.000 s Severities
BETUSEV1 No keyword with name 'Config Engine' found. 0.000 s Severities

Please sign in to comment.