forked from yandex-praktikum/go-musthave-devops-tpl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
22 lines (22 loc) · 784 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>All metrics</title>
</head>
<body>
{{ range $metricType, $metricList := . }}
<div class="metrics-list">
<h3 class="metrics-list__header">{{ $metricType }} values:</h3>
<div class="metrics-list__values" style="margin-left: 20px;">
{{ range $metricID, $metricValue := $metricList }}
<div class="metrics-list__value"><b>{{ $metricID }}</b>: {{ $metricValue.GetStringValue }}</div>
{{ end }}
</div>
</div>
{{ end }}
</body>
</html>