forked from vmware/vic
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdashboard.html
More file actions
126 lines (116 loc) · 5.11 KB
/
dashboard.html
File metadata and controls
126 lines (116 loc) · 5.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<!--
Copyright IBM Corp. 2016, 2025
-->
<!-- saved from url=(0030)http://10.20.232.35/community/ -->
<html itemscope="" itemtype="http://schema.org/Organization" lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>VIC: {{.Hostname}}</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<!-- Styles -->
<link rel="stylesheet" href="css/clarity-ui.min.css">
<link rel="stylesheet" href="css/fontello.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body id="body" class="page-community layout-community">
<div class="main-nav">
<header class="header">
<div class="branding">
<a href="http://www.vmware.com"><img src="images/vmw-logo.svg" class="logo"></a>
<span class="title">vSphere Integrated Containers</span>
</div>
<a role="button" class="github btn btn-primary" href="http://www.github.com/vmware/vic">
<i class="icon-github-circled" style="vertical-align: middle;"></i>
View on Github
</a>
<a role="button" class="logout btn btn-primary" href="/logout">
Log Out
</a>
</header>
</div>
<div class="main-container">
<main class="content-area">
<section class="community-top-section">
<h1 id="community">Admin Portal for {{.Hostname}} </h1>
<h4 id="community">{{.Version}}</h4>
</section>
<section>
<div class="row">
<div class="col-md-6">
<div class="card card-block">
<h3 class="card-title">Status</h3>
<div class="row">
<div class="sixty">Virtual Container Host (VCH){{.VCHIssues}}</div>
<div class="forty">{{.VCHStatus}}</div>
</div>
<div class="row">
<div class="sixty">Registry and Internet Connectivity{{.NetworkIssues}}</div>
<div class="forty">{{.NetworkStatus}}</div>
</div>
{{if .VCHReachable}}
<div class="row">
<div class="sixty">Firewall{{.FirewallIssues}}</div>
<div class="forty">{{.FirewallStatus}}</div>
</div>
<div class="row">
<div class="sixty">License{{.LicenseIssues}}</div>
<div class="forty">{{.LicenseStatus}}</div>
</div>
{{end}}
</div>
<div class="card card-block">
<h3 class="card-title">Virtual Container Host Info</h3>
<p class="card-text">Docker Endpoint: {{.HostIP}}:{{.DockerPort}}</p>
<p class="card-text">System Time: {{.SystemTime}}</p>
{{.StorageRemaining}}
</div>
</div>
<div class="col-md-6">
<div class="card card-block">
<h3 class="card-title">Logs</h3>
<div class="row">
<div class="sixty"><a href="/logs.zip">Log Bundle</a></div>
</div>
{{if .VCHReachable}}
<div class="row">
<div class="sixty"><a href="/container-logs.zip">Log Bundle with container logs</a></div>
</div>
<div class="row">
<div class="sixty"><a href="/logs/docker-personality.log">Docker Personality</a></div>
<div class="forty"><a href="/logs/tail/docker-personality.log">Live Log</a></div>
</div>
<div class="row">
<div class="sixty"><a href="/logs/port-layer.log">Port Layer Service</a></div>
<div class="forty"><a href="/logs/tail/port-layer.log">Live Log</a></div>
</div>
<div class="row">
<div class="sixty"><a href="/logs/init.log">Initialization & watchdog</a></div>
<div class="forty"><a href="/logs/tail/init.log">Live Log</a></div>
</div>
<div class="row">
<div class="sixty"><a href="/logs/vicadmin.log">Admin Server</a></div>
<div class="forty"><a href="/logs/tail/vicadmin.log">Live Log</a></div>
</div>
{{else}}
<div class="row">
<div class="sixty">
<span class="error-message">Other logs are unavailable due to vSphere connection issues.
Please see the log bundle and
<a href="https://vmware.github.io/vic/assets/files/html/vic_admin/vicadmin_status_ref.html">documentation</a>
to troubleshoot the issue.
</span>
</div>
</div>
{{end}}
</div>
</div>
</div>
</section>
</main>
</div>
</body>
</html>