func RegisterAll(serviceRuntime *runtime.ServiceRuntime, configStore *config.Store, env, pool, hostIP, shuttleAddr string, loggedOnce bool) { columns := []string{"CONTAINER ID | IMAGE | EXTERNAL | INTERNAL | CREATED | EXPIRES"} registrations, err := serviceRuntime.RegisterAll(env, pool, hostIP) if err != nil { log.Errorf("ERROR: Unable to register containers: %s", err) return } fn := log.Debugf if !loggedOnce { fn = log.Printf } for _, registration := range registrations { if !loggedOnce || time.Now().Unix()%60 < 10 { fn("Registered %s running as %s for %s%s", strings.TrimPrefix(registration.ContainerName, "/"), registration.ContainerID[0:12], registration.Name, locationAt(registration)) } columns = append(columns, strings.Join([]string{ registration.ContainerID[0:12], registration.Image, registration.ExternalAddr(), registration.InternalAddr(), utils.HumanDuration(time.Now().Sub(registration.StartedAt)) + " ago", "In " + utils.HumanDuration(registration.Expires.Sub(time.Now().UTC())), }, " | ")) } registerShuttle(configStore, env, shuttleAddr) }
func Status(serviceRuntime *runtime.ServiceRuntime, configStore *config.Store, env, pool, hostIP string) error { containers, err := serviceRuntime.ManagedContainers() if err != nil { panic(err) } //FIXME: addresses, port, and expires missing in output columns := []string{ "APP | CONTAINER ID | IMAGE | EXTERNAL | INTERNAL | PORT | CREATED | EXPIRES"} for _, container := range containers { name := serviceRuntime.EnvFor(container)["GALAXY_APP"] registered, err := configStore.GetServiceRegistration( env, pool, hostIP, container) if err != nil { return err } if registered != nil { columns = append(columns, strings.Join([]string{ registered.Name, registered.ContainerID[0:12], registered.Image, registered.ExternalAddr(), registered.InternalAddr(), registered.Port, utils.HumanDuration(time.Now().UTC().Sub(registered.StartedAt)) + " ago", "In " + utils.HumanDuration(registered.Expires.Sub(time.Now().UTC())), }, " | ")) } else { columns = append(columns, strings.Join([]string{ name, container.ID[0:12], container.Image, "", "", "", utils.HumanDuration(time.Now().Sub(container.Created)) + " ago", "", }, " | ")) } } result, _ := columnize.SimpleFormat(columns) log.Println(result) return nil }