2014-12-31 12:01:10 -06:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
2017-12-07 07:07:16 -06:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
|
|
<meta name="viewport" content="width=device-width">
|
|
|
|
<meta name="theme-color" content="#000">
|
2014-12-31 12:01:10 -06:00
|
|
|
|
2017-12-07 07:07:16 -06:00
|
|
|
<title>Grafana</title>
|
2016-02-14 06:41:42 -06:00
|
|
|
|
2017-12-07 07:07:16 -06:00
|
|
|
<base href="[[.AppSubUrl]]/" />
|
2015-11-19 11:44:07 -06:00
|
|
|
|
2018-08-13 08:40:52 -05:00
|
|
|
<link rel="stylesheet" href="public/build/grafana.[[ .Theme ]].css?v[[ .BuildVersion ]]+[[ .BuildCommit ]]">
|
2017-10-11 14:36:03 -05:00
|
|
|
|
2017-12-07 07:07:16 -06:00
|
|
|
<link rel="icon" type="image/png" href="public/img/fav32.png">
|
|
|
|
<link rel="mask-icon" href="public/img/grafana_mask_icon.svg" color="#F05A28">
|
2018-08-02 05:37:50 -05:00
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="public/img/apple-touch-icon.png">
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
|
|
|
<meta name="msapplication-TileColor" content="#2b5797">
|
|
|
|
<meta name="msapplication-config" content="public/img/browserconfig.xml">
|
2018-08-27 06:54:26 -05:00
|
|
|
<style>
|
|
|
|
@keyframes rotate-icon {from {transform: rotateZ(0deg);}to {transform: rotateZ(360deg);}}
|
|
|
|
.rotating-logo {
|
|
|
|
animation-name: rotate-icon;
|
|
|
|
animation-duration: 1.1s;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
animation-timing-function: cubic-bezier(0.4, 0.35, 0.5, 0.55)
|
|
|
|
}
|
|
|
|
</style>
|
2017-12-07 07:07:16 -06:00
|
|
|
</head>
|
2016-01-18 05:19:46 -06:00
|
|
|
|
2018-08-27 06:54:26 -05:00
|
|
|
<body class="theme-[[ .Theme ]]">
|
|
|
|
<div class="page-loader" style="display: flex; align-items: center; justify-content: center; height: 100%; flex-direction: column">
|
|
|
|
<div class="rotating-logo">
|
|
|
|
<img src="public/img/grafana_icon.svg" style="width: 60px">
|
|
|
|
</div>
|
|
|
|
<div style="margin-top: 14px">LOADING GRAFANA</div>
|
|
|
|
</div>
|
|
|
|
<grafana-app class="grafana-app" ng-cloak>
|
2014-12-31 12:01:10 -06:00
|
|
|
|
2017-12-07 07:07:16 -06:00
|
|
|
<sidemenu class="sidemenu"></sidemenu>
|
2014-12-31 12:01:10 -06:00
|
|
|
|
2017-12-07 07:07:16 -06:00
|
|
|
<div class="page-alert-list">
|
|
|
|
<div ng-repeat='alert in dashAlerts.list' class="alert-{{alert.severity}} alert">
|
|
|
|
<div class="alert-icon">
|
|
|
|
<i class="{{alert.icon}}"></i>
|
|
|
|
</div>
|
|
|
|
<div class="alert-body">
|
|
|
|
<div class="alert-title">{{alert.title}}</div>
|
|
|
|
<div class="alert-text" ng-bind='alert.text'></div>
|
|
|
|
</div>
|
|
|
|
<button type="button" class="alert-close" ng-click="dashAlerts.clear(alert)">
|
|
|
|
<i class="fa fa fa-remove"></i>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="main-view">
|
2018-04-11 10:49:40 -05:00
|
|
|
<div class="scroll-canvas" page-scrollbar>
|
2017-12-07 07:07:16 -06:00
|
|
|
<div ng-view></div>
|
2017-08-14 05:26:24 -05:00
|
|
|
|
2017-12-07 07:07:16 -06:00
|
|
|
<footer class="footer">
|
|
|
|
<div class="text-center">
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<a href="http://docs.grafana.org" target="_blank">
|
|
|
|
<i class="fa fa-file-code-o"></i>
|
|
|
|
Docs
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="https://grafana.com/services/support" target="_blank">
|
|
|
|
<i class="fa fa-support"></i>
|
|
|
|
Support Plans
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="https://community.grafana.com/" target="_blank">
|
|
|
|
<i class="fa fa-comments-o"></i>
|
|
|
|
Community
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
2018-07-02 06:33:39 -05:00
|
|
|
<a href="https://grafana.com" target="_blank">[[.AppName]]</a>
|
2017-12-07 07:07:16 -06:00
|
|
|
<span>v[[.BuildVersion]] (commit: [[.BuildCommit]])</span>
|
|
|
|
</li>
|
|
|
|
[[if .NewGrafanaVersionExists]]
|
|
|
|
<li>
|
|
|
|
<a href="https://grafana.com/get" target="_blank" bs-tooltip="'[[.NewGrafanaVersion]]'">
|
|
|
|
New version available!
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
[[end]]
|
|
|
|
</ul>
|
2017-11-28 07:16:29 -06:00
|
|
|
</div>
|
2017-12-07 07:07:16 -06:00
|
|
|
</footer>
|
2017-08-14 05:26:24 -05:00
|
|
|
</div>
|
2017-12-07 07:07:16 -06:00
|
|
|
</div>
|
|
|
|
</grafana-app>
|
2014-12-31 12:01:10 -06:00
|
|
|
|
2017-12-07 07:07:16 -06:00
|
|
|
<script>
|
2017-08-14 05:26:24 -05:00
|
|
|
window.grafanaBootData = {
|
2017-12-07 07:07:16 -06:00
|
|
|
user: [[.User]],
|
2017-08-14 05:26:24 -05:00
|
|
|
settings: [[.Settings]],
|
2017-08-15 10:52:52 -05:00
|
|
|
navTree: [[.NavTree]]
|
2017-08-14 05:26:24 -05:00
|
|
|
};
|
2017-12-07 07:07:16 -06:00
|
|
|
</script> [[if .GoogleTagManagerId]]
|
|
|
|
<script>
|
|
|
|
dataLayer = [{
|
|
|
|
'IsSignedIn': '[[.User.IsSignedIn]]',
|
|
|
|
'Email': '[[.User.Email]]',
|
|
|
|
'Name': '[[.User.Name]]',
|
|
|
|
'UserId': '[[.User.Id]]',
|
|
|
|
'OrgId': '[[.User.OrgId]]',
|
|
|
|
'OrgName': '[[.User.OrgName]]',
|
|
|
|
}];
|
|
|
|
</script>
|
|
|
|
<!-- Google Tag Manager -->
|
|
|
|
<noscript>
|
|
|
|
<iframe src="//www.googletagmanager.com/ns.html?id=[[.GoogleTagManagerId]]" height="0" width="0" style="display:none;visibility:hidden"></iframe>
|
|
|
|
</noscript>
|
|
|
|
<script>(function (w, d, s, l, i) {
|
2018-08-13 08:40:52 -05:00
|
|
|
w[l] = w[l] || []; w[l].push({ 'gtm.start': new Date().getTime(), event: 'gtm.js' }); var f = d.getElementsByTagName(s)[0],
|
|
|
|
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src = '//www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
|
2017-12-07 07:07:16 -06:00
|
|
|
})(window, document, 'script', 'dataLayer', '[[.GoogleTagManagerId]]');</script>
|
|
|
|
<!-- End Google Tag Manager -->
|
|
|
|
[[end]]
|
2015-12-15 10:54:16 -06:00
|
|
|
|
2017-12-07 07:07:16 -06:00
|
|
|
</body>
|
2016-07-25 05:21:51 -05:00
|
|
|
|
2018-08-27 06:54:26 -05:00
|
|
|
</html>
|