mirror of https://github.com/docker/compose.git
Add HEALTH column to compose ps
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
This commit is contained in:
parent
6215445b8a
commit
c4f6b1bd14
|
@ -106,6 +106,7 @@ type ContainerSummary struct {
|
||||||
Project string
|
Project string
|
||||||
Service string
|
Service string
|
||||||
State string
|
State string
|
||||||
|
Health string
|
||||||
Publishers []PortPublisher
|
Publishers []PortPublisher
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -88,8 +88,8 @@ func runPs(ctx context.Context, opts psOptions) error {
|
||||||
ports = append(ports, fmt.Sprintf("%s->%d/%s", p.URL, p.TargetPort, p.Protocol))
|
ports = append(ports, fmt.Sprintf("%s->%d/%s", p.URL, p.TargetPort, p.Protocol))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_, _ = fmt.Fprintf(w, "%s\t%s\t%s\t%s\n", container.Name, container.Service, container.State, strings.Join(ports, ", "))
|
_, _ = fmt.Fprintf(w, "%s\t%s\t%s\t%s\t%s\n", container.Name, container.Service, container.State, container.Health, strings.Join(ports, ", "))
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"NAME", "SERVICE", "STATE", "PORTS")
|
"NAME", "SERVICE", "STATE", "HEALTH", "PORTS")
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,6 +23,7 @@ import (
|
||||||
|
|
||||||
moby "github.com/docker/docker/api/types"
|
moby "github.com/docker/docker/api/types"
|
||||||
"github.com/docker/docker/api/types/filters"
|
"github.com/docker/docker/api/types/filters"
|
||||||
|
"golang.org/x/sync/errgroup"
|
||||||
|
|
||||||
"github.com/docker/compose-cli/api/compose"
|
"github.com/docker/compose-cli/api/compose"
|
||||||
)
|
)
|
||||||
|
@ -37,32 +38,49 @@ func (s *composeService) Ps(ctx context.Context, projectName string) ([]compose.
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
var summary []compose.ContainerSummary
|
summary := make([]compose.ContainerSummary, len(containers))
|
||||||
for _, c := range containers {
|
eg, ctx := errgroup.WithContext(ctx)
|
||||||
var publishers []compose.PortPublisher
|
for i, c := range containers {
|
||||||
for _, p := range c.Ports {
|
container := c
|
||||||
var url string
|
i := i
|
||||||
if p.PublicPort != 0 {
|
eg.Go(func() error {
|
||||||
url = fmt.Sprintf("%s:%d", p.IP, p.PublicPort)
|
var publishers []compose.PortPublisher
|
||||||
|
for _, p := range container.Ports {
|
||||||
|
var url string
|
||||||
|
if p.PublicPort != 0 {
|
||||||
|
url = fmt.Sprintf("%s:%d", p.IP, p.PublicPort)
|
||||||
|
}
|
||||||
|
publishers = append(publishers, compose.PortPublisher{
|
||||||
|
URL: url,
|
||||||
|
TargetPort: int(p.PrivatePort),
|
||||||
|
PublishedPort: int(p.PublicPort),
|
||||||
|
Protocol: p.Type,
|
||||||
|
})
|
||||||
}
|
}
|
||||||
publishers = append(publishers, compose.PortPublisher{
|
|
||||||
URL: url,
|
|
||||||
TargetPort: int(p.PrivatePort),
|
|
||||||
PublishedPort: int(p.PublicPort),
|
|
||||||
Protocol: p.Type,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
summary = append(summary, compose.ContainerSummary{
|
inspect, err := s.apiClient.ContainerInspect(ctx, container.ID)
|
||||||
ID: c.ID,
|
if err != nil {
|
||||||
Name: getCanonicalContainerName(c),
|
return err
|
||||||
Project: c.Labels[projectLabel],
|
}
|
||||||
Service: c.Labels[serviceLabel],
|
|
||||||
State: c.State,
|
var health string
|
||||||
Publishers: publishers,
|
if inspect.State != nil && inspect.State.Health != nil {
|
||||||
|
health = inspect.State.Health.Status
|
||||||
|
}
|
||||||
|
|
||||||
|
summary[i] = compose.ContainerSummary{
|
||||||
|
ID: container.ID,
|
||||||
|
Name: getCanonicalContainerName(container),
|
||||||
|
Project: container.Labels[projectLabel],
|
||||||
|
Service: container.Labels[serviceLabel],
|
||||||
|
State: container.State,
|
||||||
|
Health: health,
|
||||||
|
Publishers: publishers,
|
||||||
|
}
|
||||||
|
return nil
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
return summary, nil
|
return summary, eg.Wait()
|
||||||
}
|
}
|
||||||
|
|
||||||
func groupContainerByLabel(containers []moby.Container, labelName string) (map[string][]moby.Container, []string, error) {
|
func groupContainerByLabel(containers []moby.Container, labelName string) (map[string][]moby.Container, []string, error) {
|
||||||
|
|
Loading…
Reference in New Issue