Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var JobStatusTpl = template.Must(template.New("job").Parse(`<!DOCTYPE html>
<html>
<head>
<title>Job {{ .Status.Id }}</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="page-header">
<h1>
<a href="https://github.com/chrislusf/gleam">Gleam</a> <small>{{ .Version }}</small>
</h1>
</div>
<div class="row">
<div class="col-sm-6">
{{ with .Status.Driver }}
<h2>Driver Program</h2>
<table class="table">
<tbody>
<tr>
<th>User</th>
<td>{{ .Username }}</td>
</tr>
<tr>
<th>Host</th>
<td>{{ .Hostname }}</td>
</tr>
<tr>
<th>Executable</th>
<td style="max-width:150px;word-wrap:break-word;">{{ .Executable }}</td>
</tr>
<tr>
<th>Start</th>
<td>{{ .StartTime }}</td>
</tr>
<tr>
<th>Stop</th>
<td>{{ .StopTime }}</td>
</tr>
</tbody>
</table>
{{ end }}
</div>
<div class="col-sm-6">
<h2>System Stats</h2>
<table class="table table-condensed table-striped">
<tr>
<th>Jobs Completed</th>
<td>100</td>
</tr>
</table>
</div>
</div>
{{ with .Status.TaskGroups }}
<div class="row">
<h2>Task Group</h2>
<table class="table table-striped">
<thead>
<tr>
<th>Steps</th>
<th>Name</th>
<th>IO</th>
<th>Allocation</th>
<th>CPU</th>
<th>Memory</th>
</tr>
</thead>
<tbody>
{{ range $tg_index, $tg := . }}
<tr>
<td>{{ $tg.StepIds }}</td>
<td>{{with $tg.Request}}{{.Name}}{{end}}</td>
<td>
{{with $tg.Request}}{{with .Instructions}}
{{ range $inst_index, $inst := .Instructions }}
{{with .InputShardLocations}}Input: <ul>{{ range . }}<li>{{.Name}}@{{.Host}}:{{.Port}}</li>{{end}}</ul>{{end}}
{{with .OutputShardLocations}}Output:<ul>{{ range . }}<li>{{.Name}}@{{.Host}}:{{.Port}}</li>{{end}}{{end}}
{{end}}
{{ end }}{{ end }}
</td>
<td>{{with $tg.Allocation}}
{{.Location.DataCenter}}-{{.Location.Rack}}-{{.Location.Server}}:{{.Location.Port}}
<br/>
CPU:{{.Allocated.CpuCount}} Memory:{{.Allocated.MemoryMb}}MB
{{end}}</td>
<td><ul>{{range .Executions}}
<li>
Start: {{.StartTime}}<br/>
Stop: {{.StopTime}}<br/>
System:{{.SystemTime}} Seconds<br/>
User:{{.UserTime}} Seconds
</li>
{{end}}</ul></td>
<td>{{with $tg.Request}}{{.Resource.MemoryMb}}{{end}}</td>
</tr>
{{ end }}
</tbody>
</table>
</div>
{{ end }}
</div>
</body>
</html>
`))
View Source
var MasterStatusTpl = template.Must(template.New("master").Parse(`<!DOCTYPE html>
<html>
<head>
<title>Gleam {{ .Version }}</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="page-header">
<h1>
<a href="https://github.com/chrislusf/gleam">Gleam</a> <small>{{ .Version }}</small>
</h1>
</div>
<div class="row">
<div class="col-sm-6">
<h2>Cluster status</h2>
<table class="table">
<tbody>
<tr>
<th>Resource</th>
<td>{{ .Topology.Resource }}</td>
</tr>
<tr>
<th>Allocated</th>
<td>{{ .Topology.Allocated }}</td>
</tr>
</tbody>
</table>
</div>
<div class="col-sm-6">
<h2>System Stats</h2>
<table class="table table-condensed table-striped">
<tr>
<th>Jobs Completed</th>
<td>100</td>
</tr>
</table>
</div>
</div>
<div class="row">
<h2>Topology</h2>
<table class="table table-striped">
<thead>
<tr>
<th>Data Center</th>
<th>Rack</th>
<th>Server</th>
<th>Port</th>
<th>Last Heartbeat</th>
<th>Resource</th>
<th>Allocated</th>
</tr>
</thead>
<tbody>
{{ range $dc_index, $dc := .Topology.DataCenters }}
{{ range $rack_index, $rack := $dc.Racks }}
{{ range $agent_index, $agent := $rack.Agents }}
<tr>
<td><code>{{ $dc.Name }}</code></td>
<td>{{ $rack.Name }}</td>
<td>{{ $agent.Location.Server }}</td>
<td>{{ $agent.Location.Port }}</td>
<td>{{ $agent.LastHeartBeat }}</td>
<td>{{ $agent.Resource }}</td>
<td>{{ $agent.Allocated }}</td>
</tr>
{{ end }}
{{ end }}
{{ end }}
</tbody>
</table>
</div>
</div>
</body>
</html>
`))
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.