.set_long_description("If enabled, collect and expose internal health metrics"),
Option("ms_type", Option::TYPE_STR, Option::LEVEL_ADVANCED)
+ .set_flag(Option::FLAG_STARTUP)
.set_default("async+posix")
.set_description("Messenger implementation to use for network communication"),
Option("ms_public_type", Option::TYPE_STR, Option::LEVEL_ADVANCED)
.set_default("")
+ .set_flag(Option::FLAG_STARTUP)
.set_description("Messenger implementation to use for the public network")
.set_long_description("If not specified, use ms_type")
.add_see_also("ms_type"),
Option("ms_cluster_type", Option::TYPE_STR, Option::LEVEL_ADVANCED)
.set_default("")
+ .set_flag(Option::FLAG_STARTUP)
.set_description("Messenger implementation to use for the internal cluster network")
.set_long_description("If not specified, use ms_type")
.add_see_also("ms_type"),
Option("ms_mon_cluster_mode", Option::TYPE_STR, Option::LEVEL_BASIC)
.set_default("secure crc")
+ .set_flag(Option::FLAG_STARTUP)
.set_description("Connection modes (crc, secure) for intra-mon connections in order of preference")
.add_see_also("ms_mon_service_mode")
.add_see_also("ms_mon_client_mode")
Option("ms_mon_service_mode", Option::TYPE_STR, Option::LEVEL_BASIC)
.set_default("secure crc")
+ .set_flag(Option::FLAG_STARTUP)
.set_description("Allowed connection modes (crc, secure) for connections to mons")
.add_see_also("ms_service_mode")
.add_see_also("ms_mon_cluster_mode")
Option("ms_mon_client_mode", Option::TYPE_STR, Option::LEVEL_BASIC)
.set_default("secure crc")
+ .set_flag(Option::FLAG_STARTUP)
.set_description("Connection modes (crc, secure) for connections from clients to monitors in order of preference")
.add_see_also("ms_mon_service_mode")
.add_see_also("ms_mon_cluster_mode")
Option("ms_cluster_mode", Option::TYPE_STR, Option::LEVEL_BASIC)
.set_default("crc secure")
+ .set_flag(Option::FLAG_STARTUP)
.set_description("Connection modes (crc, secure) for intra-cluster connections in order of preference")
.add_see_also("ms_service_mode")
.add_see_also("ms_client_mode"),
Option("ms_service_mode", Option::TYPE_STR, Option::LEVEL_BASIC)
.set_default("crc secure")
+ .set_flag(Option::FLAG_STARTUP)
.set_description("Allowed connection modes (crc, secure) for connections to daemons")
.add_see_also("ms_cluster_mode")
.add_see_also("ms_client_mode"),
Option("ms_client_mode", Option::TYPE_STR, Option::LEVEL_BASIC)
.set_default("crc secure")
+ .set_flag(Option::FLAG_STARTUP)
.set_description("Connection modes (crc, secure) for connections from clients in order of preference")
.add_see_also("ms_cluster_mode")
.add_see_also("ms_service_mode"),