public async Task <string> ConfigAlive(ConfigurationApi api, ActorSystem system)
        {
            var startResponse = await TryStart(null);

            if (!startResponse.IsRunning)
            {
                return(startResponse.Message);
            }
            var isAlive = await api.QueryIsAlive(system, TimeSpan.FromSeconds(10));

            return(isAlive.IsAlive ? string.Empty : "Der Api Service ist nicht Verfügbar");
        }