
The MySQL monitor stores the server states in a backup file which can be used to restore the state of the servers even if MaxScale is stoppen in an uncontrolled fashion.
6 lines
230 B
CMake
6 lines
230 B
CMake
add_library(mysqlmon SHARED mysql_mon.c mysql_mon_backup.c)
|
|
target_link_libraries(mysqlmon maxscale-common)
|
|
add_dependencies(mysqlmon pcre2)
|
|
set_target_properties(mysqlmon PROPERTIES VERSION "1.4.0")
|
|
install_module(mysqlmon core)
|