func getClusterProtocol() string {
cfg, _:= config.GetConfig()
cfgHost := cfg.Host
cfgHost = strings.Replace(cfgHost, ", "", 2)
host := strings.Split(cfgHost, ":")
return host[0]
}
func getHostIP() string {
cfg, _:= config.GetConfig()
cfgHost := cfg.Host
cfgHost = strings.Replace(cfgHost, ", "", 2)
host := strings.Split(cfgHost, ":")
return host[1]
}