
Added the csmon monitor which supports both old and new ColumnStore servers. As older server versions aren't able to express their role, the master needs to be designated by the user. When a ColumnStore version is released that supports the mcsSystemPrimary() function, the master can be automatically found.
5 lines
163 B
CMake
5 lines
163 B
CMake
add_library(csmon SHARED csmon.cc)
|
|
target_link_libraries(csmon maxscale-common)
|
|
set_target_properties(csmon PROPERTIES VERSION "1.0.0")
|
|
install_module(csmon core)
|