diff --git a/assets.go b/assets.go index 6ee5713..d271b29 100644 --- a/assets.go +++ b/assets.go @@ -15,7 +15,7 @@ const httpAssetPrefix = "/__llassets/" type SplashModel struct { *service.ContainerState - Name string + Hostname string } var splashTemplate = template.Must(template.ParseFS(httpAssets, path.Join("assets", config.Model.Splash))) @@ -23,6 +23,7 @@ var splashTemplate = template.Must(template.ParseFS(httpAssets, path.Join("asset type StatusPageModel struct { Active []*service.ContainerState Qualifying []service.ContainerWrapper + Providers []service.ContainerWrapper RuntimeMetrics string } diff --git a/assets/splash.html b/assets/splash.html index 69d6d5d..a725e18 100644 --- a/assets/splash.html +++ b/assets/splash.html @@ -22,7 +22,7 @@
diff --git a/assets/status.html b/assets/status.html index ea66458..649a261 100644 --- a/assets/status.html +++ b/assets/status.html @@ -55,6 +55,29 @@ {{end}} +These are all containers that act as dependencies for other containers
+| Name | +State | +Status | +Config | +
|---|---|---|---|
| {{$val.NameID}} | +{{$val.State}} | +{{$val.Status}} | ++ {{range $label, $lval := $val.ConfigLabels}} + {{$label}}={{$lval}} + {{end}} + | +
{{.RuntimeMetrics}}