Skip to content

Commit

Permalink
fix(collect): develop backport of 22.04 patches
Browse files Browse the repository at this point in the history
* Mon 16333 add periodic log flush  develop (#610)
* Mon 17390 scheduler test (#609)
* fix(engine/config): tag and severity had several issues
* enh(conan): grpc upgraded
* fix(cmake): we force conan version to avoid issues with version 2
* MON-17390 fix scheduler and connector_ssh tests
* MON-17390 fix perl-connectors test
* MON-17390 fix engine/stat-stop
* MON-17390 engine dont core if cbmod fail start, add sql traces
* MON-17390 add periodical commit
* MON-17390 review remarks
* MON-17390 less lock
* MON-16333 develop backport
* MON-16333 backport periodic flush
* MON-16333 an asio timer flushes logs
* MON-16333 tcp_async is now a sahred_from_this
* MON-16333 add somes modifications, a logger non configured can be activated with ccc
* MON-16333 develop add SetLogLevel
* MON-16333 issues after rebase
* MON-16333-add-SetLogFlushPeriod
* MON-16333-force push
* MON-16333 review remarks
* fix(broker/mysql): new tests added and a little fix in mysql on stats (#616)
* fix(broker/unified_sql): A bad query is fixed here (#617)
* fix(broker): compilation warnings and errors fixed for some compilers
* MON-17457-improve-test-coverage-develop (#619)
* MON-17458-develop-improve-monitoring-stream-ack (#620)
* enh(collect): log_v2 is removed from main static libraries
* fix(collect/log_v2): uniformization of log_v2 between engine and broker
* fix(broker): unit tests on rrd cached + deadlock in tcp_async
* MON-17461 develop update doc (#622)
* fix(broker/mysql): Bind for results was missing
* fix(broker/sql): issue in bulkd_queries fixed and new test
* cleanup(broker/mysql): unused functions removed
* fix(broker): little fixes due cherry-picks
* MON-17465 fix uncached exceptions (#624)
* fix(broker/splitter): splitter better protected during read/write
* MON-16986 splitter open files in binary mode and write bug fix
* wip(broker/splitter)
* fix(broker/splitter): splitter improved with new tests
* cleanup(broker/splitter): comments added.
* cleanup(broker/compression)
* fix(broker/tests): bad comment fixed
* enh(broker/compression): optimization
* fix(broker/mysql): An assert was there by mistake
* fix(broker/splitter): fwrite error management better
* cleanup(broker/splitter): log updated
* fix(broker/splitter): log fixed
* fix(broker/splitter): no exception when limit size reached
* fix(broker/unified_sql): bulk_bind row filling must be protected (#615)
* wip(broker/splitter)
* fix(broker/splitter): splitter improved with new tests
* cleanup(broker/config): logs uniformized
* fix(broker/muxer): reuse muxer in case of reload
* cleanup(broker/muxer): comments fixed
* cleanup(broker/muxer): comments updated
* enh(broker/engine): little optimization

REFS: MON-17453 MON-17454 MON-17455 MON-17456 MON-17457 MON-17458 MON-17459 MON-17460 MON-17461 MON-17462 MON-17463 MON-17464 MON-17465 MON-17466 MON-17467 MON-17468 MON-17897

Co-authored-by: Jean Christophe Roques <jcroques@centreon.com>
Co-authored-by: David Boucher <dboucher@centreon.com>
  • Loading branch information
bouda1 and jean-christophe81 authored Mar 22, 2023
1 parent cd8b1ef commit 5d53489
Show file tree
Hide file tree
Showing 135 changed files with 3,811 additions and 2,087 deletions.
54 changes: 41 additions & 13 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2009-2021 Centreon
# Copyright 2009-2023 Centreon
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
Expand All @@ -26,15 +26,21 @@ set(CMAKE_COLOR_DIAGNOSTICS ON)
cmake_minimum_required(VERSION 3.16)
project("Centreon Collect" C CXX)

option(WITH_ASAN
"Add the libasan to check memory leaks and other memory issues." OFF)

option(WITH_TSAN
"Add the libtsan to check threads and other multithreading issues." OFF)
if(NOT CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND NOT CMAKE_CXX_COMPILER_ID
STREQUAL "Clang")
STREQUAL "Clang")
message(
FATAL_ERROR "You can build broker with g++ or clang++. CMake will exit.")
endif()

# set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14 -stdlib=libc++")
# set(CMAKE_CXX_COMPILER "clang++")
add_definitions("-D_GLIBCXX_USE_CXX11_ABI=1")

option(NG "C++17 build." OFF)

if(NG)
Expand All @@ -46,6 +52,28 @@ endif()
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)

if(WITH_TSAN)
set(CMAKE_CXX_FLAGS_DEBUG
"${CMAKE_CXX_FLAGS_DEBUG} -fno-omit-frame-pointer -fsanitize=thread")
set(CMAKE_LINKER_FLAGS_DEBUG
"${CMAKE_LINKER_FLAGS_DEBUG} -fno-omit-frame-pointer -fsanitize=thread")
endif()

if(WITH_ASAN)
set(CMAKE_BUILD_TYPE Debug)
if(WITH_CLANG)
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -fsanitize=address")
set(CMAKE_LINKER_FLAGS_DEBUG
"${CMAKE_LINKER_FLAGS_DEBUG} -fsanitize=address")
else()
set(CMAKE_CXX_FLAGS_DEBUG
"${CMAKE_CXX_FLAGS_DEBUG} -fno-omit-frame-pointer -fsanitize=address")
set(CMAKE_LINKER_FLAGS_DEBUG
"${CMAKE_LINKER_FLAGS_DEBUG} -fno-omit-frame-pointer -fsanitize=address"
)
endif()
endif()

set(ALLOW_DUPLICATE_EXECUTABLE TRUE)

set(BUILD_ARGS "-w" "dupbuild=warn")
Expand All @@ -70,11 +98,11 @@ if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
string(TOLOWER "${id}" id)

if(("${id}" MATCHES "debian")
OR("${like}" MATCHES "debian")
OR("${id}" MATCHES "ubuntu")
OR("${like}" MATCHES "ubuntu"))
OR ("${like}" MATCHES "debian")
OR ("${id}" MATCHES "ubuntu")
OR ("${like}" MATCHES "ubuntu"))
set(OS_DISTRIBUTOR "Debian")
elseif(("${id}" MATCHES "centos") OR("${like}" MATCHES "centos"))
elseif(("${id}" MATCHES "centos") OR ("${like}" MATCHES "centos"))
set(OS_DISTRIBUTOR "CentOS")
else()
message(WARNING "lsb_release in not installed")
Expand Down Expand Up @@ -116,15 +144,15 @@ include(GNUInstallDirs)

# var directories.
set(BROKER_VAR_LOG_DIR
"${CMAKE_INSTALL_FULL_LOCALSTATEDIR}/log/centreon-broker")
"${CMAKE_INSTALL_FULL_LOCALSTATEDIR}/log/centreon-broker")
set(BROKER_VAR_LIB_DIR
"${CMAKE_INSTALL_FULL_LOCALSTATEDIR}/lib/centreon-broker")
"${CMAKE_INSTALL_FULL_LOCALSTATEDIR}/lib/centreon-broker")
set(ENGINE_VAR_LOG_DIR
"${CMAKE_INSTALL_FULL_LOCALSTATEDIR}/log/centreon-engine")
"${CMAKE_INSTALL_FULL_LOCALSTATEDIR}/log/centreon-engine")
set(ENGINE_VAR_LOG_ARCHIVE_DIR
"${CMAKE_INSTALL_FULL_LOCALSTATEDIR}/log/centreon-engine/archives")
"${CMAKE_INSTALL_FULL_LOCALSTATEDIR}/log/centreon-engine/archives")
set(ENGINE_VAR_LIB_DIR
"${CMAKE_INSTALL_FULL_LOCALSTATEDIR}/lib/centreon-engine")
"${CMAKE_INSTALL_FULL_LOCALSTATEDIR}/lib/centreon-engine")

set(CMAKE_INSTALL_PREFIX "/usr")
option(WITH_TESTING "Build unit tests." OFF)
Expand All @@ -145,7 +173,7 @@ set(protobuf_MODULE_COMPATIBLE True)
add_definitions(${CONAN_DEFINES_SPDLOG})

include_directories(${CMAKE_SOURCE_DIR} ${CONAN_INCLUDE_DIRS}
${CMAKE_SOURCE_DIR}/clib/inc)
${CMAKE_SOURCE_DIR}/clib/inc)

add_subdirectory(bbdo)
add_subdirectory(broker)
Expand All @@ -162,4 +190,4 @@ add_custom_target(test-connector COMMAND tests/ut_connector)
add_custom_target(test DEPENDS test-broker test-engine test-clib test-connector)

add_custom_target(test-coverage DEPENDS broker-test-coverage
engine-test-coverage clib-test-coverage)
engine-test-coverage clib-test-coverage)
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,33 @@ test/ut

You're done!

### inside a docker, ubuntu for example
In my case I have the home directory of the centreon project in /data/dev/centreon-collect

First create the ubuntu container and jump into
```shell
docker container run --name ubuntu22.04 -ti -v /data/dev/centreon-collect:/root/centreon-collect ubuntu:22.04 /bin/bash
```
Now you are in your ubuntu container
```shell
cd /root/centreon-collect/
apt update
apt install python3
apt install python3-pip
pip3 install conan
apt install libgnutls28-dev
apt install liblua5.4-dev
apt install librrd-dev
apt install cmake

./cmake.sh
cd build
make
```
Then you have all binaries compiled in the ubuntu distribution.
You can access it outside the container in the /data/dev/centreon-collect/build directory


## Bug reports / Feature requests

The best way to report a bug or to request a feature is to open an issue
Expand Down
12 changes: 8 additions & 4 deletions broker/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,6 @@ set(LIBROKER_SOURCES
${SRC_DIR}/io/protocols.cc
${SRC_DIR}/io/raw.cc
${SRC_DIR}/io/stream.cc
${SRC_DIR}/log_v2.cc
${SRC_DIR}/mapping/entry.cc
${SRC_DIR}/misc/diagnostic.cc
${SRC_DIR}/misc/filesystem.cc
Expand All @@ -363,6 +362,7 @@ set(LIBROKER_SOURCES
${SRC_DIR}/pool.cc
${SRC_DIR}/database/mysql_bind_base.cc
${SRC_DIR}/database/mysql_bind.cc
${SRC_DIR}/database/mysql_bind_result.cc
${SRC_DIR}/database/mysql_bulk_bind.cc
${SRC_DIR}/database/mysql_column.cc
${SRC_DIR}/mysql_manager.cc
Expand Down Expand Up @@ -447,8 +447,6 @@ set(LIBROKER_SOURCES
${INC_DIR}/multiplexing/publisher.hh
${INC_DIR}/mysql.hh
${INC_DIR}/pool.hh
${INC_DIR}/database/mysql_bind_base.hh
${INC_DIR}/database/mysql_bind.hh
${INC_DIR}/database/mysql_bulk_bind.hh
${INC_DIR}/database/mysql_column.hh
${INC_DIR}/database/mysql_error.hh
Expand Down Expand Up @@ -480,6 +478,11 @@ set(LIBROKER_SOURCES
${INC_DIR}/version.hh)

# Static libraries.
add_library(rokerlog STATIC ${SRC_DIR}/log_v2.cc)
set_target_properties(rokerlog PROPERTIES COMPILE_FLAGS "-fPIC")
target_precompile_headers(rokerlog PRIVATE core/precomp_inc/precomp.hpp)
target_link_libraries(rokerlog CONAN_PKG::spdlog)

add_library(rokerbase STATIC ${LIBROKER_SOURCES})
set_target_properties(rokerbase PROPERTIES COMPILE_FLAGS "-fPIC")
target_precompile_headers(rokerbase PRIVATE core/precomp_inc/precomp.hpp)
Expand All @@ -506,7 +509,8 @@ add_executable(cbd ${SRC_DIR}/main.cc)
# Flags needed to include all symbols in binary.
target_link_libraries(
cbd
"-export-dynamic"
"-rdynamic"
rokerlog
"-Wl,--whole-archive"
rokerbase
roker
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ namespace bam {
* @brief Availability thread
*
*/
class availability_thread {
class availability_thread final {
public:
availability_thread(database_config const& db_cfg,
timeperiod_map& shared_map);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ class monitoring_stream : public io::stream {
database::mysql_stmt _ba_update;
database::mysql_stmt _kpi_update;
int32_t _pending_events;
unsigned _pending_request;
database_config _storage_db_cfg;
std::shared_ptr<persistent_cache> _cache;

Expand All @@ -85,7 +86,6 @@ class monitoring_stream : public io::stream {
absl::Hash<std::pair<std::string, std::string>>>
_timer_forced_svc_checks;

void _check_replication();
void _prepare();
void _rebuild();
void _write_external_command(const std::string& cmd);
Expand Down
51 changes: 47 additions & 4 deletions broker/bam/src/monitoring_stream.cc
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ monitoring_stream::monitoring_stream(const std::string& ext_cmd_file,
_ext_cmd_file(ext_cmd_file),
_mysql(db_cfg),
_pending_events(0),
_pending_request(0),
_storage_db_cfg(storage_db_cfg),
_cache(std::move(cache)),
_forced_svc_checks_timer{pool::io_context()} {
Expand Down Expand Up @@ -99,6 +100,7 @@ monitoring_stream::~monitoring_stream() {
*/
int32_t monitoring_stream::flush() {
_mysql.commit();
_pending_request = 0;
int retval = _pending_events;
SPDLOG_LOGGER_TRACE(log_v2::bam(), "BAM: monitoring_stream flush: {} events",
retval);
Expand Down Expand Up @@ -195,8 +197,21 @@ int monitoring_stream::write(std::shared_ptr<io::data> const& data) {
SPDLOG_LOGGER_TRACE(log_v2::bam(), "BAM: monitoring_stream write {}", *data);
// Take this event into account.
++_pending_events;
if (!validate(data, get_name()))
return 0;

// this lambda ask mysql to do a commit if we have get_queries_per_transaction
// waiting requests
auto commit_if_needed = [this]() {
if (_mysql.get_config().get_queries_per_transaction() > 0) {
if (_pending_request >=
_mysql.get_config().get_queries_per_transaction()) {
_mysql.commit();
_pending_request = 0;
}
} else { // auto commit => nothing to do
_pending_request = 0;
}
};

SPDLOG_LOGGER_TRACE(log_v2::bam(), "BAM: {} pending events", _pending_events);

// Process service status events.
Expand Down Expand Up @@ -313,6 +328,8 @@ int monitoring_stream::write(std::shared_ptr<io::data> const& data) {
_ba_update.bind_value_as_i32(5, status->state);

_mysql.run_statement(_ba_update, database::mysql_error::update_ba, true);
++_pending_request;
commit_if_needed();

if (status->state_changed) {
std::pair<std::string, std::string> ba_svc_name(
Expand Down Expand Up @@ -354,6 +371,8 @@ int monitoring_stream::write(std::shared_ptr<io::data> const& data) {
_ba_update.bind_value_as_i32(5, status.state());

_mysql.run_statement(_ba_update, database::mysql_error::update_ba, true);
++_pending_request;
commit_if_needed();

if (status.state_changed()) {
std::pair<std::string, std::string> ba_svc_name(
Expand Down Expand Up @@ -398,6 +417,9 @@ int monitoring_stream::write(std::shared_ptr<io::data> const& data) {

_mysql.run_statement(_kpi_update, database::mysql_error::update_kpi,
true);
++_pending_request;
commit_if_needed();

} break;
case bam::pb_kpi_status::static_type(): {
const KpiStatus& status(
Expand Down Expand Up @@ -425,6 +447,9 @@ int monitoring_stream::write(std::shared_ptr<io::data> const& data) {

_mysql.run_statement(_kpi_update, database::mysql_error::update_kpi,
true);
++_pending_request;
commit_if_needed();

} break;
case inherited_downtime::static_type(): {
std::string cmd;
Expand Down Expand Up @@ -480,8 +505,26 @@ int monitoring_stream::write(std::shared_ptr<io::data> const& data) {
break;
}

// Event acknowledgement.
return 0;
// if uncommited request, we can't yet acknowledge
if (_pending_request) {
if (_pending_events >=
10 * _mysql.get_config().get_queries_per_transaction()) {
log_v2::bam()->trace(
"BAM: monitoring_stream write: too many pending events =>flush and "
"acknowledge {} events",
_pending_events);
return flush();
}
log_v2::bam()->trace(
"BAM: monitoring_stream write: 0 events (request pending) {} to "
"acknowledge",
_pending_events);
return 0;
}
int retval = _pending_events;
_pending_events = 0;
log_v2::bam()->trace("BAM: monitoring_stream write: {} events", retval);
return retval;
}

/**
Expand Down
3 changes: 3 additions & 0 deletions broker/bam/test/ba/kpi_ba.cc
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@

using namespace com::centreon::broker;

extern std::shared_ptr<asio::io_context> g_io_context;

class KpiBA : public ::testing::Test {
protected:
std::unique_ptr<bam::configuration::applier::state> _aply_state;
Expand All @@ -40,6 +42,7 @@ class KpiBA : public ::testing::Test {
public:
void SetUp() override {
// Initialization.
g_io_context->restart();
config::applier::init(0, "test_broker", 0);

_aply_state = std::make_unique<bam::configuration::applier::state>();
Expand Down
3 changes: 3 additions & 0 deletions broker/bam/test/ba/kpi_service.cc
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@

using namespace com::centreon::broker;

extern std::shared_ptr<asio::io_context> g_io_context;

class BamBA : public ::testing::Test {
protected:
std::unique_ptr<bam::configuration::applier::state> _aply_state;
Expand All @@ -45,6 +47,7 @@ class BamBA : public ::testing::Test {
public:
void SetUp() override {
// Initialization.
g_io_context->restart();
config::applier::init(0, "test_broker", 0);

_aply_state = std::make_unique<bam::configuration::applier::state>();
Expand Down
3 changes: 3 additions & 0 deletions broker/bam/test/configuration/applier-boolexp.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,12 @@

using namespace com::centreon::broker;

extern std::shared_ptr<asio::io_context> g_io_context;

class ApplierBoolexp : public ::testing::Test {
public:
void SetUp() override {
g_io_context->restart();
// Initialization.
config::applier::init(0, "test_broker", 0);

Expand Down
Loading

1 comment on commit 5d53489

@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 %
58 300 0 358 16.20

Passed Tests

Name ⏱️ Duration Suite
BEACK1 16.121 s Acknowledgement
BEACK2 16.326 s Acknowledgement
BEACK3 17.331 s Acknowledgement
BEACK4 20.45 s Acknowledgement
BEACK5 32.393 s Acknowledgement
BEACK6 27.474 s Acknowledgement
ANO_JSON_SENSITIVITY_NOT_SAVED 6.591 s Anomaly-Detection
ANO_CFG_SENSITIVITY_SAVED 6.515 s Anomaly-Detection
ANO_EXTCMD_SENSITIVITY_SAVED 7.542 s Anomaly-Detection
BEPBBEE2 0.1 s Bbdo-Protobuf
BESERVCHECK 6.659 s External-Commands2
BEHOSTCHECK 7.051 s External-Commands2
BEINSTANCE 1.116 s Output-Tables
BERD1 47.928 s Retention-Duplicates
BERD2 50.485 s Retention-Duplicates
BRRDDMDB1 6.247 s Rrd-From-Db
BRRDDIDDB1 11.548 s Rrd-From-Db
BRRDRBDB1 42.619 s Rrd-From-Db
BRRDRBUDB1 44.592 s Rrd-From-Db
BRRDDM1 11.245 s Rrd
BRRDWM1 20.349 s Rrd
BRRDDID1 12.543 s Rrd
BRRDDMID1 11.558 s Rrd
BRRDDMU1 6.525 s Rrd
BRRDDIDU1 6.644 s Rrd
BRRDDMIDU1 6.567 s Rrd
BRRDRM1 25.252 s Rrd
BRRDRMU1 19.148 s Rrd
BRRDCDDMDB1 6.232 s Rrdcached-From-Db
BRRDCDDIDDB1 11.482 s Rrdcached-From-Db
BRRDCDRBDB1 33.15 s Rrdcached-From-Db
BRRDCDRBUDB1 24.56 s Rrdcached-From-Db
BRRDCDDM1 7.305 s Rrdcached
BRRDCDDID1 12.582 s Rrdcached
BRRDCDDMID1 11.553 s Rrdcached
BRRDCDDMU1 6.865 s Rrdcached
BRRDCDDIDU1 6.772 s Rrdcached
BRRDCDDMIDU1 6.429 s Rrdcached
BRRDCDRB1 44.006 s Rrdcached
BRRDCDRBU1 24.243 s Rrdcached
BSCSS3 0.065 s Bbdo-Server-Client
BSCSSG3 0.065 s Bbdo-Server-Client
BSCSSTG1 5.158 s Bbdo-Server-Client
BSCSSTG3 5.719 s Bbdo-Server-Client
BCL1 0.033 s Command-Line
BCL3 1.347 s Command-Line
BCL4 0.342 s Command-Line
BSSU3 0.093 s Start-Stop
test use connector perl exist script 5.054 s Connector Perl
test use connector perl unknown script 5.053 s Connector Perl
test use connector perl multiple script 10.529 s Connector Perl
TestBadUser 5.056 s Connector Ssh
TestBadPwd 5.056 s Connector Ssh
EPC1 21.693 s Perl-Connectors
ESS1 0.137 s Start-Stop
ESS2 6.963 s Start-Stop
ESS3 7.567 s Start-Stop
ESS4 9.282 s Start-Stop

Failed Tests

Name Message ⏱️ Duration Suite
BAPBSTATUS Central Broker not correctly stopped: -6 != 0 20.925 s Bam Pb
BABEST_SERVICE_CRITICAL Central Broker not correctly stopped: -11 != 0 36.07 s Bam Pb
BA_IMPACT_2KPI_SERVICES Central Broker not correctly stopped: -6 != 0 41.049 s Bam Pb
BA_RATIO_PERCENT_BA_SERVICE Central Broker not correctly stopped: -11 != 0 36.168 s Bam Pb
BA_RATIO_NUMBER_BA_SERVICE Central Broker not correctly stopped: -6 != 0 36.222 s Bam Pb
BA_BOOL_KPI Central Broker not correctly stopped: -6 != 0 26.109 s Bam Pb
BEPB_DIMENSION_BV_EVENT Central Broker not correctly stopped: -6 != 0 16.301 s Bam Pb
BEPB_DIMENSION_BA_EVENT Central Broker not correctly stopped: -6 != 0 16.269 s Bam Pb
BEPB_DIMENSION_BA_BV_RELATION_EVENT Central Broker not correctly stopped: -6 != 0 11.354 s Bam Pb
BEPB_DIMENSION_TIMEPERIOD Central Broker not correctly stopped: -6 != 0 17.039 s Bam Pb
BEPB_DIMENSION_KPI_EVENT Central Broker not correctly stopped: -11 != 0 16.326 s Bam Pb
BEPB_KPI_STATUS Central Broker not correctly stopped: -6 != 0 27.024 s Bam Pb
BEPB_BA_DURATION_EVENT Central Broker not correctly stopped: -11 != 0 26.891 s Bam Pb
BEPB_DIMENSION_BA_TIMEPERIOD_RELATION Central Broker not correctly stopped: -6 != 0 11.883 s Bam Pb
BEPB_DIMENSION_TRUNCATE_TABLE Central Broker not correctly stopped: -6 != 0 17.329 s Bam Pb
BEBAMIDT1 Central Broker not correctly stopped: -6 != 0 25.387 s Inherited Downtime
BEBAMIDT2 Central Broker not correctly stopped: -6 != 0 17.12 s Inherited Downtime
BEBAMIGNDT1 The BA ba_1 is not CRITICAL as expected 70.673 s Inherited Downtime
BEBAMIGNDT2 The BA ba_1 is not CRITICAL as expected 71.791 s Inherited Downtime
BEBAMIDTU1 Central Broker not correctly stopped: -6 != 0 40.59 s Pb Inherited Downtime
BEBAMIDTU2 Central Broker not correctly stopped: -11 != 0 25.752 s Pb Inherited Downtime
BEBAMIGNDTU1 The BA ba_1 is not CRITICAL as expected 71.683 s Pb Inherited Downtime
BEBAMIGNDTU2 The BA ba_1 is not CRITICAL as expected 71.89 s Pb Inherited Downtime
NetworkDbFail1 We should have a call to mysql_ping every 30s on inactive connections. 50.309 s networkFailure
NetworkDbFail2 We should have a call to mysql_ping every 30s on inactive connections. 50.82 s networkFailure
NetworkDbFail3 We should have a call to mysql_ping every 30s on inactive connections. 50.987 s networkFailure
NetworkDbFail4 We should have a call to mysql_ping every 30s on inactive connections. 51.118 s networkFailure
NetworkDbFail5 We should have a call to mysql_ping every 30s on inactive connections. 51.367 s networkFailure
NetworkDBFail6 Central Broker not correctly stopped: -6 != 0 69.993 s networkFailure
NetworkDBFailU6 Central Broker not correctly stopped: -11 != 0 70.366 s networkFailure
NetworkDBFail7 Central Broker not correctly stopped: -6 != 0 45.638 s networkFailure
NetworkDBFailU7 Central Broker not correctly stopped: -6 != 0 50.304 s networkFailure
ANO_NOFILE -6 != 0 35.468 s Anomaly-Detection
ANO_TOO_OLD_FILE -6 != 0 35.489 s Anomaly-Detection
ANO_OUT_LOWER_THAN_LIMIT -6 != 0 35.495 s Anomaly-Detection
ANO_OUT_UPPER_THAN_LIMIT -6 != 0 35.499 s Anomaly-Detection
AOUTLU1 Central Broker not correctly stopped: -6 != 0 25.493 s Anomaly-Detection
ANO_DT1 Central Broker not correctly stopped: -6 != 0 25.506 s Anomaly-Detection
ANO_DT2 Central Broker not correctly stopped: -6 != 0 30.52 s Anomaly-Detection
ANO_DT3 Central Broker not correctly stopped: -6 != 0 30.541 s Anomaly-Detection
ANO_DT4 Central Broker not correctly stopped: -6 != 0 25.541 s Anomaly-Detection
BEPBBEE1 Central Broker not correctly stopped: -6 != 0 8.951 s Bbdo-Protobuf
BEPBBEE3 Central Broker not correctly stopped: -6 != 0 30.427 s Bbdo-Protobuf
BEPBBEE4 Central Broker not correctly stopped: -6 != 0 15.415 s Bbdo-Protobuf
BEPBBEE5 Central Broker not correctly stopped: -6 != 0 10.4 s Bbdo-Protobuf
BEPBRI1 Central Broker not correctly stopped: -6 != 0 15.671 s Bbdo-Protobuf
BECC1 Central Broker not correctly stopped: -6 != 0 11.293 s Compression
EBDP1 Central Broker not correctly stopped: -6 != 0 20.515 s Delete-Poller
EBDP2 Central Broker not correctly stopped: -6 != 0 10.585 s Delete-Poller
EBDP3 Central Broker not correctly stopped: -6 != 0 25.376 s Delete-Poller
EBDP4 Central Broker not correctly stopped: -6 != 0 15.448 s Delete-Poller
EBDP5 Central Broker not correctly stopped: -6 != 0 20.817 s Delete-Poller
EBDP6 Central Broker not correctly stopped: -11 != 0 10.587 s Delete-Poller
EBDP7 Central Broker not correctly stopped: -6 != 0 27.284 s Delete-Poller
EBDP8 Central Broker not correctly stopped: -6 != 0 15.487 s Delete-Poller
BEDTMASS1 Central Broker not correctly stopped: -6 != 0 25.646 s Downtimes
BEDTMASS2 Central Broker not correctly stopped: -6 != 0 17.222 s Downtimes
BEDTSVCREN1 Central Broker not correctly stopped: -6 != 0 19.932 s Downtimes
BEEXTCMD1 Central Broker not correctly stopped: -6 != 0 20.438 s External-Commands
BEEXTCMD2 Central Broker not correctly stopped: -6 != 0 12.715 s External-Commands
BEEXTCMD3 Central Broker not correctly stopped: -6 != 0 20.464 s External-Commands
BEEXTCMD4 Central Broker not correctly stopped: -6 != 0 13.265 s External-Commands
BEEXTCMD5 Central Broker not correctly stopped: -6 != 0 20.506 s External-Commands
BEEXTCMD6 Central Broker not correctly stopped: -6 != 0 12.805 s External-Commands
BEEXTCMD7 Central Broker not correctly stopped: -6 != 0 20.522 s External-Commands
BEEXTCMD8 Central Broker not correctly stopped: -6 != 0 13.324 s External-Commands
BEEXTCMD9 Central Broker not correctly stopped: -6 != 0 20.567 s External-Commands
BEEXTCMD10 Central Broker not correctly stopped: -6 != 0 12.797 s External-Commands
BEEXTCMD11 Central Broker not correctly stopped: -6 != 0 20.587 s External-Commands
BEEXTCMD12 Central Broker not correctly stopped: -6 != 0 12.783 s External-Commands
BEEXTCMD13 Central Broker not correctly stopped: -6 != 0 20.536 s External-Commands
BEEXTCMD14 Central Broker not correctly stopped: -6 != 0 12.993 s External-Commands
BEEXTCMD15 Central Broker not correctly stopped: -6 != 0 20.609 s External-Commands
BEEXTCMD16 Central Broker not correctly stopped: -6 != 0 13.404 s External-Commands
BEEXTCMD17 Central Broker not correctly stopped: -6 != 0 20.837 s External-Commands
BEEXTCMD18 Central Broker not correctly stopped: -6 != 0 10.626 s External-Commands
BEEXTCMD19 Central Broker not correctly stopped: -6 != 0 21.017 s External-Commands
BEEXTCMD20 Central Broker not correctly stopped: -6 != 0 13.972 s External-Commands
BEEXTCMD21 Central Broker not correctly stopped: -6 != 0 25.759 s External-Commands
BEEXTCMD22 Central Broker not correctly stopped: -6 != 0 16.522 s External-Commands
BEEXTCMD23 Central Broker not correctly stopped: -6 != 0 25.742 s External-Commands
BEEXTCMD24 Central Broker not correctly stopped: -6 != 0 16.306 s External-Commands
BEEXTCMD25 Central Broker not correctly stopped: -6 != 0 25.753 s External-Commands
BEEXTCMD26 Central Broker not correctly stopped: -6 != 0 13.335 s External-Commands
BEEXTCMD27 Central Broker not correctly stopped: -6 != 0 20.826 s External-Commands
BEEXTCMD28 Central Broker not correctly stopped: -6 != 0 15.793 s External-Commands
BEEXTCMD29 Central Broker not correctly stopped: -6 != 0 25.835 s External-Commands
BEEXTCMD30 Central Broker not correctly stopped: -6 != 0 16.235 s External-Commands2
BEEXTCMD31 Central Broker not correctly stopped: -6 != 0 25.365 s External-Commands2
BEEXTCMD32 Central Broker not correctly stopped: -6 != 0 16.256 s External-Commands2
BEEXTCMD33 Central Broker not correctly stopped: -6 != 0 20.497 s External-Commands2
BEEXTCMD34 Central Broker not correctly stopped: -6 != 0 13.275 s External-Commands2
BEEXTCMD35 Central Broker not correctly stopped: -6 != 0 25.637 s External-Commands2
BEEXTCMD36 Central Broker not correctly stopped: -6 != 0 13.286 s External-Commands2
BEEXTCMD37 Central Broker not correctly stopped: -6 != 0 25.657 s External-Commands2
BEEXTCMD38 Central Broker not correctly stopped: -6 != 0 16.285 s External-Commands2
BEEXTCMD39 Central Broker not correctly stopped: -6 != 0 20.583 s External-Commands2
BEEXTCMD40 Central Broker not correctly stopped: -6 != 0 16.366 s External-Commands2
BEEXTCMD41 Central Broker not correctly stopped: -6 != 0 20.517 s External-Commands2
BEEXTCMD42 Central Broker not correctly stopped: -6 != 0 16.235 s External-Commands2
BEEXTCMD_GRPC1 Central Broker not correctly stopped: -6 != 0 20.569 s External-Commands2
BEEXTCMD_GRPC2 Central Broker not correctly stopped: -11 != 0 13.768 s External-Commands2
BEEXTCMD_GRPC3 Central Broker not correctly stopped: -6 != 0 20.573 s External-Commands2
BEEXTCMD_GRPC4 Central Broker not correctly stopped: -11 != 0 13.36 s External-Commands2
BEEXTCMD_REVERSE_GRPC1 Central Broker not correctly stopped: -6 != 0 21.681 s External-Commands2
BEEXTCMD_REVERSE_GRPC2 Central Broker not correctly stopped: -6 != 0 15.409 s External-Commands2
BEEXTCMD_REVERSE_GRPC3 Central Broker not correctly stopped: -11 != 0 20.621 s External-Commands2
BEEXTCMD_REVERSE_GRPC4 Central Broker not correctly stopped: -6 != 0 17.442 s External-Commands2
BEEXTCMD_COMPRESS_GRPC1 Central Broker not correctly stopped: -6 != 0 20.612 s External-Commands2
BEATOI11 Central Broker not correctly stopped: -6 != 0 17.404 s External-Commands2
BEATOI12 Central Broker not correctly stopped: -6 != 0 17.468 s External-Commands2
BEATOI13 Central Broker not correctly stopped: -6 != 0 17.119 s External-Commands2
BEATOI21 Central Broker not correctly stopped: -6 != 0 13.224 s External-Commands2
BEATOI22 Central Broker not correctly stopped: -6 != 0 17.422 s External-Commands2
BEATOI23 Central Broker not correctly stopped: -6 != 0 11.23 s External-Commands2
BECUSTOMHOSTVAR Central Broker not correctly stopped: -6 != 0 26.403 s External-Commands2
BECUSTOMSVCVAR Central Broker not correctly stopped: -6 != 0 26.032 s External-Commands2
EBNHG1 Central Broker not correctly stopped: -6 != 0 13.152 s Hostgroups
EBNHGU1 Central Broker not correctly stopped: -6 != 0 15.361 s Hostgroups
EBNHGU2 Central Broker not correctly stopped: -11 != 0 20.464 s Hostgroups
EBNHGU3 Central Broker not correctly stopped: -6 != 0 20.533 s Hostgroups
EBNHG4 Central Broker not correctly stopped: -6 != 0 25.802 s Hostgroups
EBNHGU4 Central Broker not correctly stopped: -11 != 0 25.598 s Hostgroups
EBSNU1 Central Broker not correctly stopped: -6 != 0 15.463 s Hosts-With-Notes-And-Actions
EBSAU2 Central Broker not correctly stopped: -6 != 0 15.358 s Hosts-With-Notes-And-Actions
EBSN3 Central Broker not correctly stopped: -6 != 0 15.367 s Hosts-With-Notes-And-Actions
LOGV2EB1 Central Broker not correctly stopped: -6 != 0 11.708 s Log-V2 Engine
LOGV2EBU1 Central Broker not correctly stopped: -11 != 0 26.332 s Log-V2 Engine
LOGV2DB1 Central Broker not correctly stopped: -6 != 0 25.834 s Log-V2 Engine
LOGV2DB2 Central Broker not correctly stopped: -6 != 0 71.071 s Log-V2 Engine
LOGV2EB2 Central Broker not correctly stopped: -6 != 0 10.78 s Log-V2 Engine
LOGV2EBU2 Central Broker not correctly stopped: -11 != 0 26.673000000000002 s Log-V2 Engine
LOGV2EF1 Central Broker not correctly stopped: -6 != 0 4.283 s Log-V2 Engine
LOGV2DF1 Central Broker not correctly stopped: -6 != 0 36.873 s Log-V2 Engine
LOGV2DF2 Central Broker not correctly stopped: -6 != 0 40.882 s Log-V2 Engine
LOGV2EF2 Central Broker not correctly stopped: -6 != 0 10.313 s Log-V2 Engine
LOGV2BE2 Central Broker not correctly stopped: -6 != 0 191.001 s Log-V2 Engine
LOGV2BEU2 Central Broker not correctly stopped: -11 != 0 195.632 s Log-V2 Engine
LOGV2FE2 Central Broker not correctly stopped: -6 != 0 131.117 s Log-V2 Engine
BERES1 Central Broker not correctly stopped: -6 != 0 21.398 s Output-Tables
BEHS1 Central Broker not correctly stopped: -6 != 0 20.444 s Output-Tables
BEINSTANCESTATUS Central Broker not correctly stopped: -6 != 0 20.451 s Output-Tables
BE_NOTIF_OVERFLOW Central Broker not correctly stopped: -6 != 0 20.741 s Output-Tables
BERDUC1 Central Broker not correctly stopped: -6 != 0 13.233 s Retention-Duplicates
BERDUCU1 Central Broker not correctly stopped: -6 != 0 15.744 s Retention-Duplicates
BERDUC2 Central Broker not correctly stopped: -6 != 0 44.716 s Retention-Duplicates
BERDUCU2 Central Broker not correctly stopped: -6 != 0 45.536 s Retention-Duplicates
BERDUC3U1 Central Broker not correctly stopped: -6 != 0 15.651 s Retention-Duplicates
BERDUC3U2 Central Broker not correctly stopped: -6 != 0 60.946 s Retention-Duplicates
BRGC1 Central Broker not correctly stopped: -6 != 0 57.126 s Reverse-Connection
BRCTS1 Central Broker not correctly stopped: -6 != 0 163.005 s Reverse-Connection
BRCS1 Central Broker not correctly stopped: -6 != 0 13.153 s Reverse-Connection
ENRSCHE1 Central Broker not correctly stopped: -6 != 0 160.735 s Scheduler
EBNSG1 Central Broker not correctly stopped: -6 != 0 13.123 s Servicegroups
EBNSGU1 Central Broker not correctly stopped: -11 != 0 15.418 s Servicegroups
EBNSGU2 Central Broker not correctly stopped: -6 != 0 20.402 s Servicegroups
EBNSVC1 Central Broker not correctly stopped: -11 != 0 50.557 s Services-Increased
EBSNU1 Central Broker not correctly stopped: -6 != 0 15.639 s Services-With-Notes-And-Actions
EBSAU2 Central Broker not correctly stopped: -6 != 0 15.428 s Services-With-Notes-And-Actions
EBSN3 Central Broker not correctly stopped: -6 != 0 15.438 s Services-With-Notes-And-Actions
BESS1 Central Broker not correctly stopped: -6 != 0 5.105 s Start-Stop
BESS2 Central Broker not correctly stopped: -6 != 0 9.594 s Start-Stop
BESS3 Central Broker not correctly stopped: -6 != 0 7.057 s Start-Stop
BESS4 Central Broker not correctly stopped: -6 != 0 10.505 s Start-Stop
BESS5 Central Broker not correctly stopped: -6 != 0 11.108 s Start-Stop
BESS_GRPC1 Central Broker not correctly stopped: -6 != 0 4.662 s Start-Stop
BESS_GRPC2 Central Broker not correctly stopped: -11 != 0 9.798 s Start-Stop
BESS_GRPC3 Central Broker not correctly stopped: -6 != 0 6.095 s Start-Stop
BESS_GRPC4 Central Broker not correctly stopped: -6 != 0 5.692 s Start-Stop
BESS_GRPC5 Central Broker not correctly stopped: -6 != 0 6.92 s Start-Stop
BESS_GRPC_COMPRESS1 Central Broker not correctly stopped: -6 != 0 9.625 s Start-Stop
BESS_CRYPTED_GRPC1 Central Broker not correctly stopped: -6 != 0 9.753 s Start-Stop
BESS_CRYPTED_GRPC2 Central Broker not correctly stopped: -6 != 0 3.877 s Start-Stop
BESS_CRYPTED_GRPC3 Central Broker not correctly stopped: -6 != 0 4.086 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC1 Central Broker not correctly stopped: -6 != 0 5.074 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC2 Central Broker not correctly stopped: -6 != 0 11.208 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC3 Central Broker not correctly stopped: -6 != 0 8 s Start-Stop
BESS_ENGINE_DELETE_HOST Central Broker not correctly stopped: -6 != 0 10.836 s Start-Stop
BESSBQ1 Services should be updated after the ingestion of the queue file 123.232 s Start-Stop
BETAG1 Central Broker not correctly stopped: -6 != 0 4.148 s Tags
BETAG2 Central Broker not correctly stopped: -6 != 0 4.858 s Tags
BEUTAG1 Central Broker not correctly stopped: -6 != 0 10.356 s Tags
BEUTAG2 Central Broker not correctly stopped: -11 != 0 20.333 s Tags
BEUTAG3 Central Broker not correctly stopped: -6 != 0 4.477 s Tags
BEUTAG4 Central Broker not correctly stopped: -6 != 0 16.429 s Tags
BEUTAG5 Central Broker not correctly stopped: -6 != 0 16.451 s Tags
BEUTAG6 Central Broker not correctly stopped: -6 != 0 16.46 s Tags
BEUTAG7 Central Broker not correctly stopped: -11 != 0 25.645 s Tags
BEUTAG8 Central Broker not correctly stopped: -6 != 0 30.669 s Tags
BEUTAG9 Central Broker not correctly stopped: -11 != 0 16.655 s Tags
BEUTAG10 Central Broker not correctly stopped: -11 != 0 15.61 s Tags
BEUTAG11 Central Broker not correctly stopped: -6 != 0 32.89 s Tags
BEUTAG12 Central Broker not correctly stopped: -6 != 0 11.568 s Tags
BECT1 Central Broker not correctly stopped: -6 != 0 6.998 s Tls
BECT2 Central Broker not correctly stopped: -6 != 0 5.461 s Tls
BECT3 Central Broker not correctly stopped: -6 != 0 7.991 s Tls
BECT4 Central Broker not correctly stopped: -6 != 0 5.782 s Tls
BECT_GRPC1 Central Broker not correctly stopped: -11 != 0 9.582 s Tls
BECT_GRPC2 Central Broker not correctly stopped: -6 != 0 11.617 s Tls
BECT_GRPC3 Central Broker not correctly stopped: -6 != 0 11.217 s Tls
BECT_GRPC4 Central Broker not correctly stopped: -6 != 0 4.833 s Tls
BSCSSK1 Central Broker not correctly stopped: -6 != 0 7.878 s Bbdo-Server-Client-Ko
BSCSSK2 Central Broker not correctly stopped: -6 != 0 8.963 s Bbdo-Server-Client-Ko
BSCSSR1 Broker service badly stopped 3.847 s Bbdo-Server-Client-Reversed
BSCSSRR1 Broker service badly stopped 3.787 s Bbdo-Server-Client-Reversed
BSCSSPRR1 Broker service badly stopped 3.887 s Bbdo-Server-Client-Reversed
BSCSSRR2 Broker instance badly stopped 3.86 s Bbdo-Server-Client-Reversed
BSCSSGRR1 Broker service badly stopped 3.785 s Bbdo-Server-Client-Reversed
BSCSSTRR1 Broker service badly stopped 3.891 s Bbdo-Server-Client-Reversed
BSCSSTRR2 Broker service badly stopped 9.729 s Bbdo-Server-Client-Reversed
BSCSSTGRR2 Central Broker not correctly stopped: -6 != 0 8.332 s Bbdo-Server-Client-Reversed
BSCSSCRR1 Central Broker not correctly stopped: -11 != 0 7.375 s Bbdo-Server-Client-Reversed
BSCSSCRR2 Central Broker not correctly stopped: -6 != 0 7.288 s Bbdo-Server-Client-Reversed
BSCSSCGRR1 Central Broker not correctly stopped: -6 != 0 7.377 s Bbdo-Server-Client-Reversed
BSCSSCGRR2 Central Broker not correctly stopped: -11 != 0 18.789 s Bbdo-Server-Client-Reversed
BSCSS1 Broker service badly stopped 10 s Bbdo-Server-Client
BSCSSP1 Broker service badly stopped 3.874 s Bbdo-Server-Client
BSCSS2 Broker instance badly stopped 3.949 s Bbdo-Server-Client
BSCSS4 Broker instance badly stopped 3.843 s Bbdo-Server-Client
BSCSSG1 Broker service badly stopped 3.773 s Bbdo-Server-Client
BSCSSG2 Broker instance badly stopped 5.452 s Bbdo-Server-Client
BSCSSG4 Broker instance badly stopped 5.345 s Bbdo-Server-Client
BSCSST1 Broker service badly stopped 9.816 s Bbdo-Server-Client
BSCSST2 Broker service badly stopped 9.927 s Bbdo-Server-Client
BSCSSTG2 Central Broker not correctly stopped: -11 != 0 11.751 s Bbdo-Server-Client
BSCSSC1 Central Broker not correctly stopped: -6 != 0 12.773 s Bbdo-Server-Client
BSCSSC2 Central Broker not correctly stopped: -6 != 0 12.772 s Bbdo-Server-Client
BSCSSCG1 Central Broker not correctly stopped: -6 != 0 10.674 s Bbdo-Server-Client
BSCSSGA1 Central Broker not correctly stopped: -6 != 0 11.275 s Bbdo-Server-Client
BSCSSGA2 Central Broker not correctly stopped: -6 != 0 6.867 s Bbdo-Server-Client
BCL2 -6 != 0 7.846 s Command-Line
BFC1 Central Broker not correctly stopped: -6 != 0 6.854 s Filters
BFC2 Central Broker not correctly stopped: -6 != 0 6.856 s Filters
BGRPCSS1 Central Broker not correctly stopped: -6 != 0 6.289 s Grpc-Stream
BGRPCSS2 Central Broker not correctly stopped: -6 != 0 5.869 s Grpc-Stream
BGRPCSS3 Central Broker not correctly stopped: -15 != 0 0.052 s Grpc-Stream
BGRPCSS4 Central Broker not correctly stopped: -6 != 0 4.865 s Grpc-Stream
BGRPCSS5 Central Broker not correctly stopped: -6 != 0 3.863 s Grpc-Stream
BGRPCSSU1 Central Broker not correctly stopped: -11 != 0 5.373 s Grpc-Stream
BGRPCSSU2 Central Broker not correctly stopped: -6 != 0 10.378 s Grpc-Stream
BGRPCSSU3 Central Broker not correctly stopped: -15 != 0 0.056 s Grpc-Stream
BGRPCSSU4 Central Broker not correctly stopped: -6 != 0 10.276 s Grpc-Stream
BGRPCSSU5 Central Broker not correctly stopped: -11 != 0 10.381 s Grpc-Stream
BLDIS1 Central Broker not correctly stopped: -6 != 0 6.96 s Log
BLEC1 AttributeError: Protocol message LogLevel has no "logger" field. 2.06 s Log
BLEC2 AttributeError: Protocol message LogLevel has no "logger" field. 2.155 s Log
BLEC3 AttributeError: Protocol message LogLevel has no "logger" field. 1.147 s Log
BDB1 Central Broker not correctly stopped: -6 != 0 7.282 s Sql
BDB2 Central Broker not correctly stopped: -11 != 0 7.373 s Sql
BDB3 Central Broker not correctly stopped: -11 != 0 8.376 s Sql
BDB4 Central Broker not correctly stopped: -11 != 0 8.275 s Sql
BDB5 Central Broker not correctly stopped: -11 != 0 26.305 s Sql
BDB6 Central Broker not correctly stopped: -6 != 0 26.307 s Sql
BDB7 Central Broker not correctly stopped: -11 != 0 8.275 s Sql
BDB8 Central Broker not correctly stopped: -6 != 0 8.275 s Sql
BDB9 Central Broker not correctly stopped: -6 != 0 11.293 s Sql
BDB10 Central Broker not correctly stopped: -6 != 0 6.875 s Sql
BEDB2 Message about the disconnection between cbd and the database is missing 40.33 s Sql
BEDB3 Central Broker not correctly stopped: -6 != 0 7.989 s Sql
BEDB4 Central Broker not correctly stopped: -6 != 0 7.734 s Sql
BDBM1 Message about the disconnection between cbd and the database is missing 20.361 s Sql
BDBU1 'False' should be true. 30.6 s Sql
BDBU3 Central Broker not correctly stopped: -11 != 0 3.414 s Sql
BDBU5 Central Broker not correctly stopped: -11 != 0 13.29 s Sql
BDBU7 Central Broker not correctly stopped: -6 != 0 4.416 s Sql
BDBU10 Log concerning a commit (connection ok) is missing. 40.409 s Sql
BDBMU1 Broker does not see any issue with the db while it is switched off 20.403 s Sql
BSS1 Broker service badly stopped with code -6 4.484 s Start-Stop
BSS2 Broker instance badly stopped with code -6 3.963 s Start-Stop
BSS3 Broker instance badly stopped with code -6 4.373 s Start-Stop
BSS4 Broker instance badly stopped with code -6 3.858 s Start-Stop
BSS5 Broker instance badly stopped with code -6 3.859 s Start-Stop
BSSU1 Broker service badly stopped with code -6 3.3609999999999998 s Start-Stop
BSSU2 Broker instance badly stopped with code -6 10.39 s Start-Stop
BSSU4 Broker instance badly stopped with code -11 10.274000000000001 s Start-Stop
BSSU5 Broker instance badly stopped with code -6 10.277 s Start-Stop
BECCC1 Central Broker not correctly stopped: -6 != 0 8.15 s Ccc
BECCC2 Connected to a Centreon Broker 23.04.0 gRPC server != Connected to a Centreon Broker 22.10.0 gRPC server 5.122 s Ccc
BECCC3 Connected to a Centreon Engine 23.04.0 gRPC server != Connected to a Centreon Engine 22.10.0 gRPC server 5.431 s Ccc
BECCC4 Central Broker not correctly stopped: -6 != 0 16.683 s Ccc
BECCC5 Central Broker not correctly stopped: -6 != 0 16.373 s Ccc
BECCC6 A version as json string should be returned: '{ "major": 23, "minor": 4 } ' does not contain '{ "major": 22, "minor": 10 }' 14.182 s Ccc
BECCC7 Central Broker not correctly stopped: -6 != 0 16.705 s Ccc
BECCC8 Central Broker not correctly stopped: -6 != 0 16.373 s Ccc
Test6Hosts check not found for output='toto=127.0.0.1: 'start_time=1679479571120, end_time=1679479571121, exit_code=3, exit_status=0, output=' fail to connect to testconnssh@127.0.0.1:22' ' does not contain 'output='toto=127.0.0.1' 15.288 s Connector Ssh
EFHC1 Central Broker not correctly stopped: -6 != 0 25.195 s Forced Checks
EFHC2 Central Broker not correctly stopped: -6 != 0 30.804 s Forced Checks
EFHCU1 Central Broker not correctly stopped: -6 != 0 35.343 s Forced Checks
EFHCU2 Central Broker not correctly stopped: -6 != 0 35.448 s Forced Checks
MIGRATION Central Broker not correctly stopped: -6 != 0 26.225 s Migration
BEUHSEV1 Central Broker not correctly stopped: -6 != 0 15.457 s Hosts
BEUHSEV2 Central Broker not correctly stopped: -11 != 0 20.401 s Hosts
BETUHSEV1 Central Broker not correctly stopped: -11 != 0 15.56 s Hosts
BESEV1 Central Broker not correctly stopped: -6 != 0 3.625 s Severities
BESEV2 Central Broker not correctly stopped: -6 != 0 4.8100000000000005 s Severities
BEUSEV1 Central Broker not correctly stopped: -6 != 0 10.226 s Severities
BEUSEV2 Central Broker not correctly stopped: -6 != 0 11.226 s Severities
BEUSEV3 Central Broker not correctly stopped: -6 != 0 15.298 s Severities
BEUSEV4 First step: Service (26, 501) should have severity_id=19 65.267 s Severities
BETUSEV1 First step: Service (26, 502) should have severity_id=3 65.499 s Severities

Please sign in to comment.