Skip to content

Commit

Permalink
MON-17452 multiplexing sources are compiled in multiplexing static li…
Browse files Browse the repository at this point in the history
…brary (#632)

REFS:MON-17452
  • Loading branch information
jean-christophe81 authored Mar 22, 2023
1 parent 5d53489 commit 403f8ec
Show file tree
Hide file tree
Showing 18 changed files with 363 additions and 290 deletions.
345 changes: 173 additions & 172 deletions broker/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ endif()

include_directories(
"${PROJECT_SOURCE_DIR}/core/inc" "${PROJECT_SOURCE_DIR}/neb/inc"
"${CMAKE_SOURCE_DIR}/engine/inc")
"${CMAKE_SOURCE_DIR}/engine/inc" "${PROJECT_SOURCE_DIR}/core/multiplexing/inc")
set(INC_DIR "${PROJECT_SOURCE_DIR}/core/inc/com/centreon/broker")
set(SRC_DIR "${PROJECT_SOURCE_DIR}/core/src")
set(TEST_DIR "${PROJECT_SOURCE_DIR}/core/test")
Expand Down Expand Up @@ -305,177 +305,173 @@ configure_file("${INC_DIR}/vars.hh.in" "${INC_DIR}/vars.hh" "@ONLY")

# Core library.
set(LIBROKER_SOURCES
# Sources.
${SRC_DIR}/bbdo/acceptor.cc
${SRC_DIR}/bbdo/connector.cc
${SRC_DIR}/bbdo/factory.cc
${SRC_DIR}/bbdo/internal.cc
${SRC_DIR}/bbdo/stream.cc
${SRC_DIR}/broker_impl.cc
${SRC_DIR}/brokerrpc.cc
${SRC_DIR}/compression/factory.cc
${SRC_DIR}/compression/opener.cc
${SRC_DIR}/compression/stack_array.cc
${SRC_DIR}/compression/stream.cc
${SRC_DIR}/compression/zlib.cc
${SRC_DIR}/config/applier/endpoint.cc
${SRC_DIR}/config/applier/modules.cc
${SRC_DIR}/config/applier/state.cc
${SRC_DIR}/config/endpoint.cc
${SRC_DIR}/config/parser.cc
${SRC_DIR}/config/state.cc
${SRC_DIR}/database_config.cc
${SRC_DIR}/file/cfile.cc
${SRC_DIR}/file/disk_accessor.cc
${SRC_DIR}/file/directory_event.cc
${SRC_DIR}/file/directory_watcher.cc
${SRC_DIR}/file/factory.cc
${SRC_DIR}/file/fifo.cc
${SRC_DIR}/file/opener.cc
${SRC_DIR}/file/splitter.cc
${SRC_DIR}/file/stream.cc
${SRC_DIR}/instance_broadcast.cc
${SRC_DIR}/io/data.cc
${SRC_DIR}/io/endpoint.cc
${SRC_DIR}/io/limit_endpoint.cc
${SRC_DIR}/io/events.cc
${SRC_DIR}/io/factory.cc
${SRC_DIR}/io/protocols.cc
${SRC_DIR}/io/raw.cc
${SRC_DIR}/io/stream.cc
${SRC_DIR}/mapping/entry.cc
${SRC_DIR}/misc/diagnostic.cc
${SRC_DIR}/misc/filesystem.cc
${SRC_DIR}/misc/misc.cc
${SRC_DIR}/misc/parse_perfdata.cc
${SRC_DIR}/misc/perfdata.cc
${SRC_DIR}/misc/processing_speed_computer.cc
${SRC_DIR}/misc/string.cc
${SRC_DIR}/misc/time.cc
${SRC_DIR}/misc/uuid.cc
${SRC_DIR}/misc/variant.cc
${SRC_DIR}/modules/handle.cc
${SRC_DIR}/multiplexing/engine.cc
${SRC_DIR}/multiplexing/muxer.cc
${SRC_DIR}/multiplexing/publisher.cc
${SRC_DIR}/mysql.cc
${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
${SRC_DIR}/database/mysql_result.cc
${SRC_DIR}/database/mysql_stmt_base.cc
${SRC_DIR}/database/mysql_stmt.cc
${SRC_DIR}/database/mysql_bulk_stmt.cc
${SRC_DIR}/mysql_connection.cc
${SRC_DIR}/query_preparator.cc
${SRC_DIR}/persistent_cache.cc
${SRC_DIR}/persistent_file.cc
${SRC_DIR}/processing/acceptor.cc
${SRC_DIR}/processing/failover.cc
${SRC_DIR}/processing/feeder.cc
${SRC_DIR}/processing/stat_visitable.cc
${SRC_DIR}/stats/center.cc
${SRC_DIR}/stats/helper.cc
${SRC_DIR}/time/daterange.cc
${SRC_DIR}/time/timeperiod.cc
${SRC_DIR}/time/timerange.cc
${SRC_DIR}/time/timezone_locker.cc
${SRC_DIR}/time/timezone_manager.cc
# Headers.
${INC_DIR}/bbdo/acceptor.hh
${INC_DIR}/bbdo/connector.hh
${INC_DIR}/bbdo/factory.hh
${INC_DIR}/bbdo/internal.hh
${INC_DIR}/bbdo/stream.hh
${INC_DIR}/broker_impl.hh
${INC_DIR}/brokerrpc.hh
${INC_DIR}/compression/factory.hh
${INC_DIR}/compression/opener.hh
${INC_DIR}/compression/stack_array.hh
${INC_DIR}/compression/stream.hh
${INC_DIR}/config/applier/endpoint.hh
${INC_DIR}/config/applier/init.hh
${INC_DIR}/config/applier/modules.hh
${INC_DIR}/config/applier/state.hh
${INC_DIR}/config/endpoint.hh
${INC_DIR}/config/parser.hh
${INC_DIR}/config/state.hh
${INC_DIR}/database_config.hh
${INC_DIR}/exceptions/config.hh
${INC_DIR}/exceptions/interrupt.hh
${INC_DIR}/exceptions/shutdown.hh
${INC_DIR}/exceptions/timeout.hh
${INC_DIR}/file/cfile.hh
${INC_DIR}/file/directory_event.hh
${INC_DIR}/file/directory_watcher.hh
${INC_DIR}/file/factory.hh
${INC_DIR}/file/fifo.hh
${INC_DIR}/file/fs_file.hh
${INC_DIR}/file/opener.hh
${INC_DIR}/file/splitter.hh
${INC_DIR}/file/stream.hh
${INC_DIR}/instance_broadcast.hh
${INC_DIR}/io/data.hh
${INC_DIR}/io/endpoint.hh
${INC_DIR}/io/limit_endpoint.hh
${INC_DIR}/io/event_info.hh
${INC_DIR}/io/events.hh
${INC_DIR}/io/factory.hh
${INC_DIR}/io/protocols.hh
${INC_DIR}/io/raw.hh
${INC_DIR}/io/stream.hh
${INC_DIR}/mapping/entry.hh
${INC_DIR}/mapping/property.hh
${INC_DIR}/mapping/source.hh
${INC_DIR}/misc/diagnostic.hh
${INC_DIR}/misc/filesystem.hh
${INC_DIR}/misc/misc.hh
${INC_DIR}/misc/perfdata.hh
${INC_DIR}/misc/processing_speed_computer.hh
${INC_DIR}/misc/shared_mutex.hh
${INC_DIR}/misc/string.hh
${INC_DIR}/misc/time.hh
${INC_DIR}/misc/trash.hh
${INC_DIR}/misc/variant.hh
${INC_DIR}/modules/handle.hh
${INC_DIR}/multiplexing/engine.hh
${INC_DIR}/multiplexing/muxer.hh
${INC_DIR}/multiplexing/publisher.hh
${INC_DIR}/mysql.hh
${INC_DIR}/pool.hh
${INC_DIR}/database/mysql_bulk_bind.hh
${INC_DIR}/database/mysql_column.hh
${INC_DIR}/database/mysql_error.hh
${INC_DIR}/mysql_manager.hh
${INC_DIR}/database/mysql_result.hh
${INC_DIR}/database/mysql_stmt_base.hh
${INC_DIR}/database/mysql_stmt.hh
${INC_DIR}/database/mysql_bulk_stmt.hh
${INC_DIR}/database/mysql_task.hh
${INC_DIR}/database/table_max_size.hh
${INC_DIR}/mysql_connection.hh
${INC_DIR}/query_preparator.hh
${INC_DIR}/persistent_cache.hh
${INC_DIR}/persistent_file.hh
${INC_DIR}/processing/acceptor.hh
${INC_DIR}/processing/failover.hh
${INC_DIR}/processing/feeder.hh
${INC_DIR}/processing/stat_visitable.hh
${INC_DIR}/stats/helper.hh
${INC_DIR}/time/daterange.hh
${INC_DIR}/time/ptr_typedef.hh
${INC_DIR}/time/time_info.hh
${INC_DIR}/time/timeperiod.hh
${INC_DIR}/time/timerange.hh
${INC_DIR}/time/timezone_locker.hh
${INC_DIR}/time/timezone_manager.hh
${INC_DIR}/timestamp.hh
${INC_DIR}/vars.hh
${INC_DIR}/version.hh)

# Sources.
${SRC_DIR}/bbdo/acceptor.cc
${SRC_DIR}/bbdo/connector.cc
${SRC_DIR}/bbdo/factory.cc
${SRC_DIR}/bbdo/internal.cc
${SRC_DIR}/bbdo/stream.cc
${SRC_DIR}/broker_impl.cc
${SRC_DIR}/brokerrpc.cc
${SRC_DIR}/compression/factory.cc
${SRC_DIR}/compression/opener.cc
${SRC_DIR}/compression/stack_array.cc
${SRC_DIR}/compression/stream.cc
${SRC_DIR}/compression/zlib.cc
${SRC_DIR}/config/applier/endpoint.cc
${SRC_DIR}/config/applier/modules.cc
${SRC_DIR}/config/applier/state.cc
${SRC_DIR}/config/endpoint.cc
${SRC_DIR}/config/parser.cc
${SRC_DIR}/config/state.cc
${SRC_DIR}/database_config.cc
${SRC_DIR}/file/cfile.cc
${SRC_DIR}/file/disk_accessor.cc
${SRC_DIR}/file/directory_event.cc
${SRC_DIR}/file/directory_watcher.cc
${SRC_DIR}/file/factory.cc
${SRC_DIR}/file/fifo.cc
${SRC_DIR}/file/opener.cc
${SRC_DIR}/file/splitter.cc
${SRC_DIR}/file/stream.cc
${SRC_DIR}/instance_broadcast.cc
${SRC_DIR}/io/data.cc
${SRC_DIR}/io/endpoint.cc
${SRC_DIR}/io/limit_endpoint.cc
${SRC_DIR}/io/events.cc
${SRC_DIR}/io/factory.cc
${SRC_DIR}/io/protocols.cc
${SRC_DIR}/io/raw.cc
${SRC_DIR}/io/stream.cc
${SRC_DIR}/mapping/entry.cc
${SRC_DIR}/misc/diagnostic.cc
${SRC_DIR}/misc/filesystem.cc
${SRC_DIR}/misc/misc.cc
${SRC_DIR}/misc/parse_perfdata.cc
${SRC_DIR}/misc/perfdata.cc
${SRC_DIR}/misc/processing_speed_computer.cc
${SRC_DIR}/misc/string.cc
${SRC_DIR}/misc/time.cc
${SRC_DIR}/misc/uuid.cc
${SRC_DIR}/misc/variant.cc
${SRC_DIR}/modules/handle.cc
${SRC_DIR}/mysql.cc
${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
${SRC_DIR}/database/mysql_result.cc
${SRC_DIR}/database/mysql_stmt_base.cc
${SRC_DIR}/database/mysql_stmt.cc
${SRC_DIR}/database/mysql_bulk_stmt.cc
${SRC_DIR}/mysql_connection.cc
${SRC_DIR}/query_preparator.cc
${SRC_DIR}/persistent_cache.cc
${SRC_DIR}/persistent_file.cc
${SRC_DIR}/processing/acceptor.cc
${SRC_DIR}/processing/failover.cc
${SRC_DIR}/processing/feeder.cc
${SRC_DIR}/processing/stat_visitable.cc
${SRC_DIR}/stats/center.cc
${SRC_DIR}/stats/helper.cc
${SRC_DIR}/time/daterange.cc
${SRC_DIR}/time/timeperiod.cc
${SRC_DIR}/time/timerange.cc
${SRC_DIR}/time/timezone_locker.cc
${SRC_DIR}/time/timezone_manager.cc

# Headers.
${INC_DIR}/bbdo/acceptor.hh
${INC_DIR}/bbdo/connector.hh
${INC_DIR}/bbdo/factory.hh
${INC_DIR}/bbdo/internal.hh
${INC_DIR}/bbdo/stream.hh
${INC_DIR}/broker_impl.hh
${INC_DIR}/brokerrpc.hh
${INC_DIR}/compression/factory.hh
${INC_DIR}/compression/opener.hh
${INC_DIR}/compression/stack_array.hh
${INC_DIR}/compression/stream.hh
${INC_DIR}/config/applier/endpoint.hh
${INC_DIR}/config/applier/init.hh
${INC_DIR}/config/applier/modules.hh
${INC_DIR}/config/applier/state.hh
${INC_DIR}/config/endpoint.hh
${INC_DIR}/config/parser.hh
${INC_DIR}/config/state.hh
${INC_DIR}/database_config.hh
${INC_DIR}/exceptions/config.hh
${INC_DIR}/exceptions/interrupt.hh
${INC_DIR}/exceptions/shutdown.hh
${INC_DIR}/exceptions/timeout.hh
${INC_DIR}/file/cfile.hh
${INC_DIR}/file/directory_event.hh
${INC_DIR}/file/directory_watcher.hh
${INC_DIR}/file/factory.hh
${INC_DIR}/file/fifo.hh
${INC_DIR}/file/fs_file.hh
${INC_DIR}/file/opener.hh
${INC_DIR}/file/splitter.hh
${INC_DIR}/file/stream.hh
${INC_DIR}/instance_broadcast.hh
${INC_DIR}/io/data.hh
${INC_DIR}/io/endpoint.hh
${INC_DIR}/io/limit_endpoint.hh
${INC_DIR}/io/event_info.hh
${INC_DIR}/io/events.hh
${INC_DIR}/io/factory.hh
${INC_DIR}/io/protocols.hh
${INC_DIR}/io/raw.hh
${INC_DIR}/io/stream.hh
${INC_DIR}/mapping/entry.hh
${INC_DIR}/mapping/property.hh
${INC_DIR}/mapping/source.hh
${INC_DIR}/misc/diagnostic.hh
${INC_DIR}/misc/filesystem.hh
${INC_DIR}/misc/misc.hh
${INC_DIR}/misc/perfdata.hh
${INC_DIR}/misc/processing_speed_computer.hh
${INC_DIR}/misc/shared_mutex.hh
${INC_DIR}/misc/string.hh
${INC_DIR}/misc/time.hh
${INC_DIR}/misc/trash.hh
${INC_DIR}/misc/variant.hh
${INC_DIR}/modules/handle.hh
${INC_DIR}/mysql.hh
${INC_DIR}/pool.hh
${INC_DIR}/database/mysql_bulk_bind.hh
${INC_DIR}/database/mysql_column.hh
${INC_DIR}/database/mysql_error.hh
${INC_DIR}/mysql_manager.hh
${INC_DIR}/database/mysql_result.hh
${INC_DIR}/database/mysql_stmt_base.hh
${INC_DIR}/database/mysql_stmt.hh
${INC_DIR}/database/mysql_bulk_stmt.hh
${INC_DIR}/database/mysql_task.hh
${INC_DIR}/database/table_max_size.hh
${INC_DIR}/mysql_connection.hh
${INC_DIR}/query_preparator.hh
${INC_DIR}/persistent_cache.hh
${INC_DIR}/persistent_file.hh
${INC_DIR}/processing/acceptor.hh
${INC_DIR}/processing/failover.hh
${INC_DIR}/processing/feeder.hh
${INC_DIR}/processing/stat_visitable.hh
${INC_DIR}/stats/helper.hh
${INC_DIR}/time/daterange.hh
${INC_DIR}/time/ptr_typedef.hh
${INC_DIR}/time/time_info.hh
${INC_DIR}/time/timeperiod.hh
${INC_DIR}/time/timerange.hh
${INC_DIR}/time/timezone_locker.hh
${INC_DIR}/time/timezone_manager.hh
${INC_DIR}/timestamp.hh
${INC_DIR}/vars.hh
${INC_DIR}/version.hh)

# Static libraries.
add_library(rokerlog STATIC ${SRC_DIR}/log_v2.cc)
Expand Down Expand Up @@ -505,6 +501,7 @@ target_link_libraries(roker rokerbase dl CONAN_PKG::openssl CONAN_PKG::grpc

# Standalone binary.
add_executable(cbd ${SRC_DIR}/main.cc)
add_dependencies(cbd multiplexing)

# Flags needed to include all symbols in binary.
target_link_libraries(
Expand All @@ -514,6 +511,7 @@ target_link_libraries(
"-Wl,--whole-archive"
rokerbase
roker
multiplexing
"-Wl,--no-whole-archive"
CONAN_PKG::nlohmann_json
CONAN_PKG::fmt
Expand Down Expand Up @@ -552,6 +550,9 @@ add_broker_module(TLS2 OFF)
add_broker_module(DUMP OFF)
add_broker_module(GRPC ON)

# multiplexing library linked in final executable such as cbd or cbmod
add_subdirectory(core/multiplexing)

# Lua module.
option(WITH_MODULE_LUA "Build lua module." ON)

Expand Down
Loading

2 comments on commit 403f8ec

@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 %
319 39 0 358 89.11

Passed Tests

Name ⏱️ Duration Suite
BAPBSTATUS 25.485 s Bam Pb
BABEST_SERVICE_CRITICAL 35.784 s Bam Pb
BA_IMPACT_2KPI_SERVICES 40.696 s Bam Pb
BA_RATIO_PERCENT_BA_SERVICE 35.7 s Bam Pb
BA_RATIO_NUMBER_BA_SERVICE 35.636 s Bam Pb
BA_BOOL_KPI 20.759 s Bam Pb
BEPB_DIMENSION_BV_EVENT 15.77 s Bam Pb
BEPB_DIMENSION_BA_EVENT 15.772 s Bam Pb
BEPB_DIMENSION_BA_BV_RELATION_EVENT 15.781 s Bam Pb
BEPB_DIMENSION_TIMEPERIOD 15.677 s Bam Pb
BEPB_DIMENSION_KPI_EVENT 10.755 s Bam Pb
BEPB_KPI_STATUS 25.703 s Bam Pb
BEPB_BA_DURATION_EVENT 25.706 s Bam Pb
BEPB_DIMENSION_BA_TIMEPERIOD_RELATION 10.758 s Bam Pb
BEPB_DIMENSION_TRUNCATE_TABLE 15.681000000000001 s Bam Pb
BEBAMIDT1 22.743 s Inherited Downtime
BEBAMIDTU1 35.589 s Pb Inherited Downtime
NetworkDBFail6 70.013 s networkFailure
NetworkDBFailU6 70.273 s networkFailure
NetworkDBFail7 50.298 s networkFailure
NetworkDBFailU7 50.225 s networkFailure
BEACK1 21.128 s Acknowledgement
BEACK2 16.423 s Acknowledgement
BEACK3 20.435 s Acknowledgement
BEACK4 13.443 s Acknowledgement
BEACK5 33.502 s Acknowledgement
BEACK6 27.383 s Acknowledgement
ANO_NOFILE 36.621 s Anomaly-Detection
ANO_TOO_OLD_FILE 36.835 s Anomaly-Detection
ANO_OUT_LOWER_THAN_LIMIT 36.627 s Anomaly-Detection
ANO_OUT_UPPER_THAN_LIMIT 36.641 s Anomaly-Detection
ANO_JSON_SENSITIVITY_NOT_SAVED 6.515 s Anomaly-Detection
ANO_CFG_SENSITIVITY_SAVED 6.542 s Anomaly-Detection
ANO_EXTCMD_SENSITIVITY_SAVED 7.578 s Anomaly-Detection
AOUTLU1 25.307 s Anomaly-Detection
ANO_DT1 25.41 s Anomaly-Detection
ANO_DT2 25.325 s Anomaly-Detection
ANO_DT3 30.342 s Anomaly-Detection
ANO_DT4 30.385 s Anomaly-Detection
BEPBBEE1 9.245 s Bbdo-Protobuf
BEPBBEE2 0.115 s Bbdo-Protobuf
BEPBBEE3 35.228 s Bbdo-Protobuf
BEPBBEE4 10.373 s Bbdo-Protobuf
BEPBBEE5 10.345 s Bbdo-Protobuf
BEPBRI1 15.491 s Bbdo-Protobuf
BECC1 107.552 s Compression
EBDP1 46.498 s Delete-Poller
EBDP2 36.799 s Delete-Poller
EBDP3 31.337 s Delete-Poller
EBDP4 42.443 s Delete-Poller
EBDP5 46.626 s Delete-Poller
EBDP6 32.027 s Delete-Poller
EBDP7 26.333 s Delete-Poller
EBDP8 47.232 s Delete-Poller
BEDTMASS1 30.411 s Downtimes
BEDTMASS2 16.713 s Downtimes
BEDTSVCREN1 18.476 s Downtimes
BEEXTCMD1 40.36 s External-Commands
BEEXTCMD2 25.346 s External-Commands
BEEXTCMD3 40.485 s External-Commands
BEEXTCMD4 25.753 s External-Commands
BEEXTCMD5 40.409 s External-Commands
BEEXTCMD6 27.326 s External-Commands
BEEXTCMD7 40.467 s External-Commands
BEEXTCMD8 25.823 s External-Commands
BEEXTCMD9 40.473 s External-Commands
BEEXTCMD10 25.876 s External-Commands
BEEXTCMD11 40.535 s External-Commands
BEEXTCMD12 25.36 s External-Commands
BEEXTCMD13 40.527 s External-Commands
BEEXTCMD14 24.948 s External-Commands
BEEXTCMD15 40.487 s External-Commands
BEEXTCMD16 25.802 s External-Commands
BEEXTCMD17 40.49 s External-Commands
BEEXTCMD18 22.453 s External-Commands
BEEXTCMD19 40.492 s External-Commands
BEEXTCMD20 25.837 s External-Commands
BEEXTCMD21 50.559 s External-Commands
BEEXTCMD22 28.508 s External-Commands
BEEXTCMD23 25.223 s External-Commands
BEEXTCMD24 15.921 s External-Commands
BEEXTCMD25 20.229 s External-Commands
BEEXTCMD26 14.316 s External-Commands
BEEXTCMD27 25.226 s External-Commands
BEEXTCMD28 15.433 s External-Commands
BEEXTCMD29 50.498 s External-Commands
BEEXTCMD30 26.149 s External-Commands2
BEEXTCMD31 25.353 s External-Commands2
BEEXTCMD32 17.242 s External-Commands2
BEEXTCMD33 20.345 s External-Commands2
BEEXTCMD34 12.711 s External-Commands2
BEEXTCMD35 25.261 s External-Commands2
BEEXTCMD36 16.106 s External-Commands2
BEEXTCMD37 25.307 s External-Commands2
BEEXTCMD38 14.275 s External-Commands2
BEEXTCMD39 20.331 s External-Commands2
BEEXTCMD40 14.315 s External-Commands2
BEEXTCMD41 20.337 s External-Commands2
BEEXTCMD42 14.326 s External-Commands2
BEEXTCMD_GRPC1 40.766 s External-Commands2
BEEXTCMD_GRPC2 26.356 s External-Commands2
BEEXTCMD_GRPC3 40.544 s External-Commands2
BEEXTCMD_GRPC4 26.217 s External-Commands2
BEEXTCMD_REVERSE_GRPC1 42.681 s External-Commands2
BEEXTCMD_REVERSE_GRPC2 28.786 s External-Commands2
BEEXTCMD_REVERSE_GRPC3 40.555 s External-Commands2
BEEXTCMD_REVERSE_GRPC4 33.739 s External-Commands2
BEEXTCMD_COMPRESS_GRPC1 40.786 s External-Commands2
BEATOI11 15.625 s External-Commands2
BEATOI12 15.588 s External-Commands2
BEATOI13 16.023 s External-Commands2
BEATOI21 12.945 s External-Commands2
BEATOI22 17.612 s External-Commands2
BEATOI23 11.035 s External-Commands2
BECUSTOMHOSTVAR 25.463 s External-Commands2
BECUSTOMSVCVAR 25.804 s External-Commands2
BESERVCHECK 6.567 s External-Commands2
BEHOSTCHECK 6.79 s External-Commands2
EBNHG1 12.478 s Hostgroups
EBNHGU1 15.188 s Hostgroups
EBNHGU2 20.27 s Hostgroups
EBNHGU3 20.318 s Hostgroups
EBNHG4 25.042 s Hostgroups
EBNHGU4 30.37 s Hostgroups
EBSNU1 15.154 s Hosts-With-Notes-And-Actions
EBSAU2 15.243 s Hosts-With-Notes-And-Actions
EBSN3 15.238 s Hosts-With-Notes-And-Actions
LOGV2EB1 14.349 s Log-V2 Engine
LOGV2EBU1 26.158 s Log-V2 Engine
LOGV2DB1 27.132 s Log-V2 Engine
LOGV2DB2 72.269 s Log-V2 Engine
LOGV2EB2 12.222 s Log-V2 Engine
LOGV2EBU2 26.307 s Log-V2 Engine
LOGV2EF1 9.906 s Log-V2 Engine
LOGV2DF1 36.494 s Log-V2 Engine
LOGV2DF2 36.483 s Log-V2 Engine
LOGV2EF2 9.96 s Log-V2 Engine
LOGV2BE2 189.577 s Log-V2 Engine
LOGV2BEU2 195.316 s Log-V2 Engine
LOGV2FE2 130.043 s Log-V2 Engine
BERES1 16.301 s Output-Tables
BEHS1 10.262 s Output-Tables
BEINSTANCESTATUS 15.393 s Output-Tables
BE_NOTIF_OVERFLOW 20.457 s Output-Tables
BERD1 47.835 s Retention-Duplicates
BERD2 50.267 s Retention-Duplicates
BERDUC1 48.447 s Retention-Duplicates
BERDUC2 44.315 s Retention-Duplicates
BERDUCU2 45.359 s Retention-Duplicates
BRGC1 57.692 s Reverse-Connection
BRCTS1 163.535 s Reverse-Connection
BRCS1 54.103 s Reverse-Connection
BRRDDMDB1 10.243 s Rrd-From-Db
BRRDDIDDB1 7.446 s Rrd-From-Db
BRRDRBDB1 32.808 s Rrd-From-Db
BRRDRBUDB1 29.591 s Rrd-From-Db
BRRDDM1 7.211 s Rrd
BRRDWM1 20.461 s Rrd
BRRDDID1 12.538 s Rrd
BRRDDMID1 11.57 s Rrd
BRRDDMU1 11.607 s Rrd
BRRDDIDU1 6.644 s Rrd
BRRDDMIDU1 6.57 s Rrd
BRRDRM1 34.219 s Rrd
BRRDRMU1 16.252 s Rrd
BRRDCDDMDB1 10.239 s Rrdcached-From-Db
BRRDCDDIDDB1 11.519 s Rrdcached-From-Db
BRRDCDRBDB1 34.529 s Rrdcached-From-Db
BRRDCDRBUDB1 25.729 s Rrdcached-From-Db
BRRDCDDM1 7.299 s Rrdcached
BRRDCDDID1 12.369 s Rrdcached
BRRDCDDMID1 11.542 s Rrdcached
BRRDCDDMU1 6.757 s Rrdcached
BRRDCDDIDU1 11.615 s Rrdcached
BRRDCDDMIDU1 11.583 s Rrdcached
BRRDCDRB1 43.187 s Rrdcached
BRRDCDRBU1 24.68 s Rrdcached
ENRSCHE1 174.639 s Scheduler
EBNSG1 12.474 s Servicegroups
EBNSGU1 15.185 s Servicegroups
EBNSGU2 20.213 s Servicegroups
EBNSVC1 45.264 s Services-Increased
EBSNU1 15.269 s Services-With-Notes-And-Actions
EBSAU2 15.234 s Services-With-Notes-And-Actions
EBSN3 15.238 s Services-With-Notes-And-Actions
BESS1 5.559 s Start-Stop
BESS2 10.926 s Start-Stop
BESS3 9.853 s Start-Stop
BESS4 6.519 s Start-Stop
BESS5 12.561 s Start-Stop
BESS_GRPC1 5.716 s Start-Stop
BESS_GRPC2 6.516 s Start-Stop
BESS_GRPC3 6.945 s Start-Stop
BESS_GRPC4 7.517 s Start-Stop
BESS_GRPC5 9.438 s Start-Stop
BESS_GRPC_COMPRESS1 3.93 s Start-Stop
BESS_CRYPTED_GRPC1 38.978 s Start-Stop
BESS_CRYPTED_GRPC2 44.983 s Start-Stop
BESS_CRYPTED_GRPC3 43.494 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC1 45.245 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC2 58.281 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC3 61.297 s Start-Stop
BESS_ENGINE_DELETE_HOST 17.984 s Start-Stop
BETAG1 3.651 s Tags
BETAG2 6.252 s Tags
BEUTAG1 10.256 s Tags
BEUTAG2 20.222 s Tags
BEUTAG3 11.367 s Tags
BEUTAG4 16.289 s Tags
BEUTAG5 16.29 s Tags
BEUTAG6 11.284 s Tags
BEUTAG7 60.574 s Tags
BEUTAG8 35.497 s Tags
BEUTAG9 11.544 s Tags
BEUTAG10 35.458 s Tags
BEUTAG11 45.494 s Tags
BEUTAG12 16.331 s Tags
BECT1 90.584 s Tls
BECT2 13.154 s Tls
BECT3 10.309 s Tls
BECT4 6.3469999999999995 s Tls
BECT_GRPC1 95.981 s Tls
BECT_GRPC2 12.913 s Tls
BECT_GRPC3 6.082 s Tls
BECT_GRPC4 12.977 s Tls
BSCSSK1 7.776 s Bbdo-Server-Client-Ko
BSCSSK2 7.665 s Bbdo-Server-Client-Ko
BSCSSR1 25.546 s Bbdo-Server-Client-Reversed
BSCSSRR1 30.831 s Bbdo-Server-Client-Reversed
BSCSSPRR1 31.734 s Bbdo-Server-Client-Reversed
BSCSSRR2 37.237 s Bbdo-Server-Client-Reversed
BSCSSGRR1 29.627 s Bbdo-Server-Client-Reversed
BSCSSTRR1 28.228 s Bbdo-Server-Client-Reversed
BSCSSTGRR2 10.702 s Bbdo-Server-Client-Reversed
BSCSSCRR1 10.177 s Bbdo-Server-Client-Reversed
BSCSSCRR2 12.681000000000001 s Bbdo-Server-Client-Reversed
BSCSSCGRR1 9.678 s Bbdo-Server-Client-Reversed
BSCSSCGRR2 18.69 s Bbdo-Server-Client-Reversed
BSCSS1 45.947 s Bbdo-Server-Client
BSCSSP1 45.905 s Bbdo-Server-Client
BSCSS2 37.227 s Bbdo-Server-Client
BSCSS3 0.069 s Bbdo-Server-Client
BSCSS4 37.201 s Bbdo-Server-Client
BSCSSG1 30.494 s Bbdo-Server-Client
BSCSSG2 51.268 s Bbdo-Server-Client
BSCSSG3 0.069 s Bbdo-Server-Client
BSCSSG4 50.232 s Bbdo-Server-Client
BSCSST1 46.417 s Bbdo-Server-Client
BSCSSTG1 5.069 s Bbdo-Server-Client
BSCSSTG2 11.129 s Bbdo-Server-Client
BSCSSTG3 5.611 s Bbdo-Server-Client
BSCSSC1 9.683 s Bbdo-Server-Client
BSCSSC2 9.59 s Bbdo-Server-Client
BSCSSCG1 12.092 s Bbdo-Server-Client
BSCSSGA1 11.181 s Bbdo-Server-Client
BSCSSGA2 10.781 s Bbdo-Server-Client
BCL1 0.031 s Command-Line
BCL2 7.744 s Command-Line
BCL3 1.34 s Command-Line
BCL4 0.335 s Command-Line
BGRPCSS2 50.341 s Grpc-Stream
BGRPCSS4 50.325 s Grpc-Stream
BGRPCSS5 17.677 s Grpc-Stream
BGRPCSSU2 102.462 s Grpc-Stream
BGRPCSSU4 102.483 s Grpc-Stream
BGRPCSSU5 51.253 s Grpc-Stream
BDB1 42.1 s Sql
BDB2 41.185 s Sql
BDB3 44.006 s Sql
BDB4 44.903 s Sql
BDB5 106.493 s Sql
BDB6 82.766 s Sql
BDB7 11.168 s Sql
BDB8 11.068 s Sql
BDB9 11.068 s Sql
BDB10 9.669 s Sql
BEDB3 8.859 s Sql
BEDB4 5.704 s Sql
BDBU3 16.933 s Sql
BDBU5 69.087 s Sql
BDBU7 3.186 s Sql
BSS1 31.179 s Start-Stop
BSS2 37.185 s Start-Stop
BSS3 4.277 s Start-Stop
BSS4 37.171 s Start-Stop
BSS5 18.6 s Start-Stop
BSSU1 31.167 s Start-Stop
BSSU2 102.209 s Start-Stop
BSSU3 0.375 s Start-Stop
BSSU4 102.297 s Start-Stop
BSSU5 51.166 s Start-Stop
BECCC1 7.545 s Ccc
BECCC4 16.48 s Ccc
BECCC5 16.281 s Ccc
BECCC7 16.284 s Ccc
BECCC8 16.364 s Ccc
test use connector perl exist script 5.055 s Connector Perl
test use connector perl unknown script 5.054 s Connector Perl
test use connector perl multiple script 10.541 s Connector Perl
TestBadUser 5.055 s Connector Ssh
TestBadPwd 5.054 s Connector Ssh
EFHC1 24.572 s Forced Checks
EFHC2 30.504 s Forced Checks
EFHCU1 35.218 s Forced Checks
EFHCU2 35.33 s Forced Checks
EPC1 16.412 s Perl-Connectors
ESS1 0.154 s Start-Stop
ESS2 6.781 s Start-Stop
ESS3 8.037 s Start-Stop
ESS4 8.998 s Start-Stop
MIGRATION 92.488 s Migration
BEUHSEV1 15.258 s Hosts
BEUHSEV2 20.391 s Hosts
BETUHSEV1 15.373 s Hosts
BESEV1 3.834 s Severities
BESEV2 4.717 s Severities
BEUSEV1 10.242 s Severities
BEUSEV2 11.145 s Severities
BEUSEV3 15.287 s Severities

Failed Tests

Name Message ⏱️ Duration Suite
BEBAMIDT2 Central Broker not correctly stopped (coredump generated) 91.825 s Inherited Downtime
BEBAMIGNDT1 RRD Broker not correctly stopped: -11 != 0 19.876 s Inherited Downtime
BEBAMIGNDT2 RRD Broker not correctly stopped: -11 != 0 74.037 s Inherited Downtime
BEBAMIDTU2 Central Broker not correctly stopped (coredump generated) 97.536 s Pb Inherited Downtime
BEBAMIGNDTU1 The BA ba_1 is not CRITICAL as expected 71.76 s Pb Inherited Downtime
BEBAMIGNDTU2 The BA ba_1 is not CRITICAL as expected 71.961 s Pb Inherited Downtime
NetworkDbFail1 We should have a call to mysql_ping every 30s on inactive connections. 50.377 s networkFailure
NetworkDbFail2 We should have a call to mysql_ping every 30s on inactive connections. 50.911 s networkFailure
NetworkDbFail3 We should have a call to mysql_ping every 30s on inactive connections. 51.158 s networkFailure
NetworkDbFail4 We should have a call to mysql_ping every 30s on inactive connections. 51.349 s networkFailure
NetworkDbFail5 We should have a call to mysql_ping every 30s on inactive connections. 51.608 s networkFailure
BEINSTANCE sg=no correct start_time in instances table. 1.316 s Output-Tables
BERDUCU1 There are events sent several times, see /tmp/lua-engine.log and /tmp/lua.log 55.517 s Retention-Duplicates
BERDUC3U1 There are events sent several times, see /tmp/lua-engine.log and /tmp/lua.log 60.693 s Retention-Duplicates
BERDUC3U2 There are events sent several times, see /tmp/lua-engine.log and /tmp/lua.log 55.573 s Retention-Duplicates
BESSBQ1 Services should be updated after the ingestion of the queue file 124.094 s Start-Stop
BSCSSTRR2 No information about TLS activation. 70.763 s Bbdo-Server-Client-Reversed
BSCSST2 No information about TLS activation. 74.094 s Bbdo-Server-Client
BFC1 RRD Broker not correctly stopped: 1 != 0 6.753 s Filters
BFC2 RRD Broker not correctly stopped: 1 != 0 6.761 s Filters
BGRPCSS1 RRD Broker not correctly stopped: -15 != 0 6.208 s Grpc-Stream
BGRPCSS3 Central Broker not correctly stopped: -15 != 0 0.058 s Grpc-Stream
BGRPCSSU1 RRD Broker not correctly stopped: -15 != 0 5.2780000000000005 s Grpc-Stream
BGRPCSSU3 Central Broker not correctly stopped: -15 != 0 0.076 s Grpc-Stream
BLDIS1 RRD Broker not correctly stopped: 1 != 0 6.248 s Log
BLEC1 AttributeError: Protocol message LogLevel has no "logger" field. 2.049 s Log
BLEC2 AttributeError: Protocol message LogLevel has no "logger" field. 2.146 s Log
BLEC3 AttributeError: Protocol message LogLevel has no "logger" field. 1.141 s Log
BEDB2 Message about the disconnection between cbd and the database is missing 40.193 s Sql
BDBM1 Message about the disconnection between cbd and the database is missing 20.229 s Sql
BDBU1 'False' should be true. 30.456 s Sql
BDBU10 Log concerning a commit (connection ok) is missing. 40.346 s Sql
BDBMU1 Broker does not see any issue with the db while it is switched off 20.456 s Sql
BECCC2 Connected to a Centreon Broker 23.04.0 gRPC server != Connected to a Centreon Broker 22.10.0 gRPC server 5.129 s Ccc
BECCC3 Connected to a Centreon Engine 23.04.0 gRPC server != Connected to a Centreon Engine 22.10.0 gRPC server 5.433 s Ccc
BECCC6 A version as json string should be returned: '{ "major": 23, "minor": 4 } ' does not contain '{ "major": 22, "minor": 10 }' 14.177 s Ccc
Test6Hosts check not found for output='toto=127.0.0.1: 'start_time=1679506612014, end_time=1679506612016, 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.282 s Connector Ssh
BEUSEV4 First step: Service (26, 501) should have severity_id=19 65.31 s Severities
BETUSEV1 First step: Service (26, 502) should have severity_id=3 65.705 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 %
320 38 0 358 89.39

Passed Tests

Name ⏱️ Duration Suite
BAPBSTATUS 25.781 s Bam Pb
BABEST_SERVICE_CRITICAL 36.04 s Bam Pb
BA_IMPACT_2KPI_SERVICES 35.943 s Bam Pb
BA_RATIO_PERCENT_BA_SERVICE 35.938 s Bam Pb
BA_RATIO_NUMBER_BA_SERVICE 46.008 s Bam Pb
BA_BOOL_KPI 26.097 s Bam Pb
BEPB_DIMENSION_BV_EVENT 16.013 s Bam Pb
BEPB_DIMENSION_BA_EVENT 16.02 s Bam Pb
BEPB_DIMENSION_BA_BV_RELATION_EVENT 16.218 s Bam Pb
BEPB_DIMENSION_TIMEPERIOD 16.102 s Bam Pb
BEPB_DIMENSION_KPI_EVENT 11.15 s Bam Pb
BEPB_KPI_STATUS 26.124 s Bam Pb
BEPB_BA_DURATION_EVENT 26.013 s Bam Pb
BEPB_DIMENSION_BA_TIMEPERIOD_RELATION 11.172 s Bam Pb
BEPB_DIMENSION_TRUNCATE_TABLE 10.992 s Bam Pb
BEBAMIDT1 20.265 s Inherited Downtime
BEBAMIDT2 36.127 s Inherited Downtime
BEBAMIDTU1 35.585 s Pb Inherited Downtime
NetworkDBFail6 71.365 s networkFailure
NetworkDBFailU6 70.304 s networkFailure
NetworkDBFail7 46.043 s networkFailure
NetworkDBFailU7 50.278 s networkFailure
BEACK1 16.139 s Acknowledgement
BEACK2 16.346 s Acknowledgement
BEACK3 17.446 s Acknowledgement
BEACK4 13.455 s Acknowledgement
BEACK5 31.545 s Acknowledgement
BEACK6 27.52 s Acknowledgement
ANO_NOFILE 36.781 s Anomaly-Detection
ANO_TOO_OLD_FILE 36.798 s Anomaly-Detection
ANO_OUT_LOWER_THAN_LIMIT 36.804 s Anomaly-Detection
ANO_OUT_UPPER_THAN_LIMIT 36.806 s Anomaly-Detection
ANO_JSON_SENSITIVITY_NOT_SAVED 6.521 s Anomaly-Detection
ANO_CFG_SENSITIVITY_SAVED 6.496 s Anomaly-Detection
ANO_EXTCMD_SENSITIVITY_SAVED 7.527 s Anomaly-Detection
AOUTLU1 25.262 s Anomaly-Detection
ANO_DT1 25.354 s Anomaly-Detection
ANO_DT2 25.291 s Anomaly-Detection
ANO_DT3 30.368 s Anomaly-Detection
ANO_DT4 30.294 s Anomaly-Detection
BEPBBEE1 9.34 s Bbdo-Protobuf
BEPBBEE2 0.095 s Bbdo-Protobuf
BEPBBEE3 30.264 s Bbdo-Protobuf
BEPBBEE4 10.331 s Bbdo-Protobuf
BEPBBEE5 15.224 s Bbdo-Protobuf
BEPBRI1 15.341 s Bbdo-Protobuf
BECC1 101.536 s Compression
EBDP1 46.566 s Delete-Poller
EBDP2 36.558 s Delete-Poller
EBDP3 26.204 s Delete-Poller
EBDP4 42.367 s Delete-Poller
EBDP5 46.552 s Delete-Poller
EBDP6 36.512 s Delete-Poller
EBDP7 26.31 s Delete-Poller
EBDP8 42.329 s Delete-Poller
BEDTMASS1 25.505 s Downtimes
BEDTMASS2 16.549 s Downtimes
BEDTSVCREN1 18.983 s Downtimes
BEEXTCMD1 40.408 s External-Commands
BEEXTCMD2 26.904 s External-Commands
BEEXTCMD3 40.55 s External-Commands
BEEXTCMD4 25.906 s External-Commands
BEEXTCMD5 40.565 s External-Commands
BEEXTCMD6 27.387 s External-Commands
BEEXTCMD7 40.481 s External-Commands
BEEXTCMD8 25.87 s External-Commands
BEEXTCMD9 40.546 s External-Commands
BEEXTCMD10 25.423 s External-Commands
BEEXTCMD11 40.422 s External-Commands
BEEXTCMD12 25.955 s External-Commands
BEEXTCMD13 40.568 s External-Commands
BEEXTCMD14 25.386 s External-Commands
BEEXTCMD15 40.493 s External-Commands
BEEXTCMD16 25.836 s External-Commands
BEEXTCMD17 40.509 s External-Commands
BEEXTCMD18 22.287 s External-Commands
BEEXTCMD19 40.582 s External-Commands
BEEXTCMD20 25.431 s External-Commands
BEEXTCMD21 50.446 s External-Commands
BEEXTCMD22 28.401 s External-Commands
BEEXTCMD23 25.302 s External-Commands
BEEXTCMD24 16.033 s External-Commands
BEEXTCMD25 20.263 s External-Commands
BEEXTCMD26 14.332 s External-Commands
BEEXTCMD27 20.291 s External-Commands
BEEXTCMD28 14.266 s External-Commands
BEEXTCMD29 50.623 s External-Commands
BEEXTCMD30 25.346 s External-Commands2
BEEXTCMD31 25.345 s External-Commands2
BEEXTCMD32 17.237 s External-Commands2
BEEXTCMD33 20.251 s External-Commands2
BEEXTCMD34 14.346 s External-Commands2
BEEXTCMD35 25.295 s External-Commands2
BEEXTCMD36 14.339 s External-Commands2
BEEXTCMD37 25.295 s External-Commands2
BEEXTCMD38 16.596 s External-Commands2
BEEXTCMD39 20.27 s External-Commands2
BEEXTCMD40 16.684 s External-Commands2
BEEXTCMD41 20.334 s External-Commands2
BEEXTCMD42 16.652 s External-Commands2
BEEXTCMD_GRPC1 40.584 s External-Commands2
BEEXTCMD_GRPC2 26.35 s External-Commands2
BEEXTCMD_GRPC3 40.453 s External-Commands2
BEEXTCMD_GRPC4 27.169 s External-Commands2
BEEXTCMD_REVERSE_GRPC1 42.767 s External-Commands2
BEEXTCMD_REVERSE_GRPC2 34.64 s External-Commands2
BEEXTCMD_REVERSE_GRPC3 40.63 s External-Commands2
BEEXTCMD_REVERSE_GRPC4 35.445 s External-Commands2
BEEXTCMD_COMPRESS_GRPC1 40.733 s External-Commands2
BEATOI11 16.568 s External-Commands2
BEATOI12 14.296 s External-Commands2
BEATOI13 16.557 s External-Commands2
BEATOI21 12.591 s External-Commands2
BEATOI22 17.514 s External-Commands2
BEATOI23 9.949 s External-Commands2
BECUSTOMHOSTVAR 20.492 s External-Commands2
BECUSTOMSVCVAR 25.688 s External-Commands2
BESERVCHECK 6.607 s External-Commands2
BEHOSTCHECK 6.814 s External-Commands2
EBNHG1 12.969 s Hostgroups
EBNHGU1 15.274000000000001 s Hostgroups
EBNHGU2 20.248 s Hostgroups
EBNHGU3 20.326 s Hostgroups
EBNHG4 24.645 s Hostgroups
EBNHGU4 30.285 s Hostgroups
EBSNU1 15.3 s Hosts-With-Notes-And-Actions
EBSAU2 15.279 s Hosts-With-Notes-And-Actions
EBSN3 15.277 s Hosts-With-Notes-And-Actions
LOGV2EB1 12.249 s Log-V2 Engine
LOGV2EBU1 26.198 s Log-V2 Engine
LOGV2DB1 27.27 s Log-V2 Engine
LOGV2DB2 72.263 s Log-V2 Engine
LOGV2EB2 12.266 s Log-V2 Engine
LOGV2EBU2 26.245 s Log-V2 Engine
LOGV2EF1 9.517 s Log-V2 Engine
LOGV2DF1 39.575 s Log-V2 Engine
LOGV2DF2 40.56 s Log-V2 Engine
LOGV2EF2 9.587 s Log-V2 Engine
LOGV2BE2 189.817 s Log-V2 Engine
LOGV2BEU2 195.228 s Log-V2 Engine
LOGV2FE2 129.692 s Log-V2 Engine
BERES1 21.244 s Output-Tables
BEHS1 15.325 s Output-Tables
BEINSTANCESTATUS 15.268 s Output-Tables
BEINSTANCE 1.106 s Output-Tables
BE_NOTIF_OVERFLOW 20.612 s Output-Tables
BERD1 48.608 s Retention-Duplicates
BERD2 50.317 s Retention-Duplicates
BERDUC1 48.55 s Retention-Duplicates
BERDUC2 44.349 s Retention-Duplicates
BERDUCU2 45.341 s Retention-Duplicates
BRGC1 57.574 s Reverse-Connection
BRCTS1 163.575 s Reverse-Connection
BRCS1 55.069 s Reverse-Connection
BRRDDMDB1 10.294 s Rrd-From-Db
BRRDDIDDB1 11.54 s Rrd-From-Db
BRRDRBDB1 48.466 s Rrd-From-Db
BRRDRBUDB1 39.931 s Rrd-From-Db
BRRDDM1 7.24 s Rrd
BRRDWM1 25.471 s Rrd
BRRDDID1 12.456 s Rrd
BRRDDMID1 11.587 s Rrd
BRRDDIDU1 6.671 s Rrd
BRRDDMIDU1 11.715 s Rrd
BRRDRM1 30.858 s Rrd
BRRDRMU1 21.087 s Rrd
BRRDCDDMDB1 10.289 s Rrdcached-From-Db
BRRDCDDIDDB1 11.522 s Rrdcached-From-Db
BRRDCDRBDB1 34.276 s Rrdcached-From-Db
BRRDCDRBUDB1 25.497 s Rrdcached-From-Db
BRRDCDDM1 11.323 s Rrdcached
BRRDCDDID1 12.551 s Rrdcached
BRRDCDDMID1 11.551 s Rrdcached
BRRDCDDMU1 11.599 s Rrdcached
BRRDCDDIDU1 11.523 s Rrdcached
BRRDCDDMIDU1 11.603 s Rrdcached
BRRDCDRB1 51.726 s Rrdcached
BRRDCDRBU1 32.15 s Rrdcached
ENRSCHE1 159.927 s Scheduler
EBNSG1 13.491 s Servicegroups
EBNSGU1 15.187 s Servicegroups
EBNSGU2 20.228 s Servicegroups
EBNSVC1 50.363 s Services-Increased
EBSNU1 15.307 s Services-With-Notes-And-Actions
EBSAU2 15.281 s Services-With-Notes-And-Actions
EBSN3 15.282 s Services-With-Notes-And-Actions
BESS1 12.627 s Start-Stop
BESS2 9.892 s Start-Stop
BESS3 6.545 s Start-Stop
BESS4 11.598 s Start-Stop
BESS5 12.603 s Start-Stop
BESS_GRPC1 5.729 s Start-Stop
BESS_GRPC2 9.68 s Start-Stop
BESS_GRPC3 6.666 s Start-Stop
BESS_GRPC4 5.663 s Start-Stop
BESS_GRPC5 6.362 s Start-Stop
BESS_GRPC_COMPRESS1 8.672 s Start-Stop
BESS_CRYPTED_GRPC1 48.271 s Start-Stop
BESS_CRYPTED_GRPC2 45.057 s Start-Stop
BESS_CRYPTED_GRPC3 48.43 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC1 45.206 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC2 55.358 s Start-Stop
BESS_CRYPTED_REVERSED_GRPC3 61.363 s Start-Stop
BESS_ENGINE_DELETE_HOST 17.669 s Start-Stop
BETAG1 7.03 s Tags
BETAG2 4.814 s Tags
BEUTAG1 10.259 s Tags
BEUTAG2 20.173 s Tags
BEUTAG3 11.229 s Tags
BEUTAG4 16.258 s Tags
BEUTAG5 11.242 s Tags
BEUTAG6 11.266 s Tags
BEUTAG7 25.421 s Tags
BEUTAG8 20.395 s Tags
BEUTAG9 11.38 s Tags
BEUTAG10 30.488 s Tags
BEUTAG11 15.467 s Tags
BEUTAG12 16.278 s Tags
BECT1 94.915 s Tls
BECT2 13.592 s Tls
BECT3 10.362 s Tls
BECT4 10.256 s Tls
BECT_GRPC1 104.304 s Tls
BECT_GRPC2 12.961 s Tls
BECT_GRPC3 12.003 s Tls
BECT_GRPC4 13.047 s Tls
BSCSSK1 7.777 s Bbdo-Server-Client-Ko
BSCSSK2 8.165 s Bbdo-Server-Client-Ko
BSCSSR1 33.712 s Bbdo-Server-Client-Reversed
BSCSSRR1 41.907 s Bbdo-Server-Client-Reversed
BSCSSPRR1 24.049 s Bbdo-Server-Client-Reversed
BSCSSRR2 36.782 s Bbdo-Server-Client-Reversed
BSCSSGRR1 30.408 s Bbdo-Server-Client-Reversed
BSCSSTRR1 22.359 s Bbdo-Server-Client-Reversed
BSCSSTGRR2 9.957 s Bbdo-Server-Client-Reversed
BSCSSCRR1 10.197 s Bbdo-Server-Client-Reversed
BSCSSCRR2 10.092 s Bbdo-Server-Client-Reversed
BSCSSCGRR1 10.196 s Bbdo-Server-Client-Reversed
BSCSSCGRR2 18.705 s Bbdo-Server-Client-Reversed
BSCSS1 45.915 s Bbdo-Server-Client
BSCSSP1 50.884 s Bbdo-Server-Client
BSCSS2 37.178 s Bbdo-Server-Client
BSCSS3 0.064 s Bbdo-Server-Client
BSCSS4 37.166 s Bbdo-Server-Client
BSCSSG1 30.259 s Bbdo-Server-Client
BSCSSG2 50.716 s Bbdo-Server-Client
BSCSSG3 0.064 s Bbdo-Server-Client
BSCSSG4 50.692 s Bbdo-Server-Client
BSCSST1 51.589 s Bbdo-Server-Client
BSCSSTG1 5.059 s Bbdo-Server-Client
BSCSSTG2 12.153 s Bbdo-Server-Client
BSCSSTG3 5.7940000000000005 s Bbdo-Server-Client
BSCSSC1 9.776 s Bbdo-Server-Client
BSCSSC2 9.673 s Bbdo-Server-Client
BSCSSCG1 9.571 s Bbdo-Server-Client
BSCSSGA1 11.171 s Bbdo-Server-Client
BSCSSGA2 9.165 s Bbdo-Server-Client
BCL1 0.034 s Command-Line
BCL2 7.75 s Command-Line
BCL3 1.307 s Command-Line
BCL4 0.299 s Command-Line
BGRPCSS2 49.798 s Grpc-Stream
BGRPCSS4 49.776 s Grpc-Stream
BGRPCSS5 18.641 s Grpc-Stream
BGRPCSSU2 101.434 s Grpc-Stream
BGRPCSSU4 101.509 s Grpc-Stream
BGRPCSSU5 50.728 s Grpc-Stream
BDB1 41.196 s Sql
BDB2 41.192 s Sql
BDB3 41.203 s Sql
BDB4 50.513 s Sql
BDB5 94.471 s Sql
BDB6 70.849 s Sql
BDB7 11.069 s Sql
BDB8 10.167 s Sql
BDB9 11.069 s Sql
BDB10 9.667 s Sql
BEDB3 8.979 s Sql
BEDB4 5.507 s Sql
BDBU3 17.03 s Sql
BDBU5 71.205 s Sql
BDBU7 3.191 s Sql
BSS1 31.25 s Start-Stop
BSS2 37.253 s Start-Stop
BSS3 0.097 s Start-Stop
BSS4 37.24 s Start-Stop
BSS5 18.649 s Start-Stop
BSSU1 31.232 s Start-Stop
BSSU2 102.417 s Start-Stop
BSSU3 3.312 s Start-Stop
BSSU4 102.394 s Start-Stop
BSSU5 51.219 s Start-Stop
BECCC1 7.8309999999999995 s Ccc
BECCC4 16.54 s Ccc
BECCC5 16.241 s Ccc
BECCC7 16.545 s Ccc
BECCC8 16.239 s Ccc
test use connector perl exist script 5.055 s Connector Perl
test use connector perl unknown script 5.054 s Connector Perl
test use connector perl multiple script 10.534 s Connector Perl
TestBadUser 5.057 s Connector Ssh
TestBadPwd 5.055 s Connector Ssh
EFHC1 26.257 s Forced Checks
EFHC2 30.862 s Forced Checks
EFHCU1 35.187 s Forced Checks
EFHCU2 35.291 s Forced Checks
EPC1 16.684 s Perl-Connectors
ESS1 0.107 s Start-Stop
ESS2 8.026 s Start-Stop
ESS3 9.422 s Start-Stop
ESS4 8.69 s Start-Stop
MIGRATION 97.721 s Migration
BEUHSEV1 15.279 s Hosts
BEUHSEV2 20.435 s Hosts
BETUHSEV1 20.342 s Hosts
BESEV1 7.927 s Severities
BESEV2 4.7 s Severities
BEUSEV1 10.217 s Severities
BEUSEV2 11.113 s Severities
BEUSEV3 15.258 s Severities

Failed Tests

Name Message ⏱️ Duration Suite
BEBAMIGNDT1 Central Broker not correctly stopped (coredump generated) 81.322 s Inherited Downtime
BEBAMIGNDT2 RRD Broker not correctly stopped: -11 != 0 74.426 s Inherited Downtime
BEBAMIDTU2 Central Broker not correctly stopped (coredump generated) 92.348 s Pb Inherited Downtime
BEBAMIGNDTU1 The BA ba_1 is not CRITICAL as expected 71.912 s Pb Inherited Downtime
BEBAMIGNDTU2 The BA ba_1 is not CRITICAL as expected 72.09 s Pb Inherited Downtime
NetworkDbFail1 We should have a call to mysql_ping every 30s on inactive connections. 50.508 s networkFailure
NetworkDbFail2 We should have a call to mysql_ping every 30s on inactive connections. 51.134 s networkFailure
NetworkDbFail3 We should have a call to mysql_ping every 30s on inactive connections. 51.532 s networkFailure
NetworkDbFail4 We should have a call to mysql_ping every 30s on inactive connections. 51.84 s networkFailure
NetworkDbFail5 We should have a call to mysql_ping every 30s on inactive connections. 52.173 s networkFailure
BERDUCU1 There are events sent several times, see /tmp/lua-engine.log and /tmp/lua.log 55.582 s Retention-Duplicates
BERDUC3U1 There are events sent several times, see /tmp/lua-engine.log and /tmp/lua.log 55.726 s Retention-Duplicates
BERDUC3U2 There are events sent several times, see /tmp/lua-engine.log and /tmp/lua.log 55.738 s Retention-Duplicates
BRRDDMU1 No log message telling about metrics 5432,5434,5429 deletion. 57.268 s Rrd
BESSBQ1 Services should be updated after the ingestion of the queue file 125.397 s Start-Stop
BSCSSTRR2 No information about TLS activation. 72.803 s Bbdo-Server-Client-Reversed
BSCSST2 No information about TLS activation. 83.103 s Bbdo-Server-Client
BFC1 RRD Broker not correctly stopped: 1 != 0 6.761 s Filters
BFC2 RRD Broker not correctly stopped: 1 != 0 6.7620000000000005 s Filters
BGRPCSS1 RRD Broker not correctly stopped: -15 != 0 6.18 s Grpc-Stream
BGRPCSS3 Central Broker not correctly stopped: -15 != 0 0.045 s Grpc-Stream
BGRPCSSU1 RRD Broker not correctly stopped: -15 != 0 5.268 s Grpc-Stream
BGRPCSSU3 Central Broker not correctly stopped: -15 != 0 0.06 s Grpc-Stream
BLDIS1 RRD Broker not correctly stopped: 1 != 0 6.249 s Log
BLEC1 AttributeError: Protocol message LogLevel has no "logger" field. 2.049 s Log
BLEC2 AttributeError: Protocol message LogLevel has no "logger" field. 2.147 s Log
BLEC3 AttributeError: Protocol message LogLevel has no "logger" field. 1.1400000000000001 s Log
BEDB2 Message about the disconnection between cbd and the database is missing 40.192 s Sql
BDBM1 Message about the disconnection between cbd and the database is missing 20.233 s Sql
BDBU1 'False' should be true. 30.366 s Sql
BDBU10 Log concerning a commit (connection ok) is missing. 40.355 s Sql
BDBMU1 Broker does not see any issue with the db while it is switched off 20.455 s Sql
BECCC2 Connected to a Centreon Broker 23.04.0 gRPC server != Connected to a Centreon Broker 22.10.0 gRPC server 5.102 s Ccc
BECCC3 Connected to a Centreon Engine 23.04.0 gRPC server != Connected to a Centreon Engine 22.10.0 gRPC server 5.411 s Ccc
BECCC6 A version as json string should be returned: '{ "major": 23, "minor": 4 } ' does not contain '{ "major": 22, "minor": 10 }' 14.149 s Ccc
Test6Hosts check not found for output='toto=127.0.0.1: 'start_time=1679531256068, end_time=1679531256069, 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.287 s Connector Ssh
BEUSEV4 First step: Service (26, 501) should have severity_id=19 65.259 s Severities
BETUSEV1 First step: Service (26, 502) should have severity_id=3 65.671 s Severities

Please sign in to comment.