2013-01-25 22:10:28 -06:00
|
|
|
<!DOCTYPE html>
|
2013-01-28 13:28:12 -06:00
|
|
|
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7 ng-app:kibana" lang="en" id="ng-app"> <![endif]-->
|
|
|
|
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8 ng-app:kibana" lang="en" id="ng-app"> <![endif]-->
|
|
|
|
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en" ng-app="kibana"> <![endif]-->
|
|
|
|
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" ng-app="kibana"> <!--<![endif]-->
|
2013-01-25 22:10:28 -06:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
|
|
<meta name="description" content="Search based application built using ElasticSearch, elastic.js, and Angular.js">
|
|
|
|
<meta name="viewport" content="width=device-width">
|
|
|
|
|
|
|
|
<title>Kibana Dashboard</title>
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="/common/css/normalize.min.css">
|
|
|
|
<link rel="stylesheet" href="/common/css/main.css">
|
|
|
|
<link rel="stylesheet" href="/common/css/bootstrap.min.css">
|
|
|
|
<link rel="stylesheet" href="/common/css/bootstrap-responsive.min.css">
|
|
|
|
<link rel="stylesheet" href="/common/css/elasticjs.css">
|
|
|
|
<link rel="stylesheet" href="/common/css/datepicker.css">
|
|
|
|
|
|
|
|
<!-- project dependency libs -->
|
2013-01-29 11:05:02 -06:00
|
|
|
<script src="/common/lib/LAB.min.js"></script>
|
2013-01-28 13:28:12 -06:00
|
|
|
<script src="common/lib/underscore.min.js"></script>
|
|
|
|
<script src="common/lib/settings.js"></script>
|
|
|
|
<script src="config.js"></script>
|
2013-01-25 22:10:28 -06:00
|
|
|
<script src="js/app.js"></script>
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
2013-01-29 11:05:02 -06:00
|
|
|
<body ng-controller="DashCtrl" ng-cloak>
|
2013-01-25 22:10:28 -06:00
|
|
|
<div class="navbar navbar-fixed-top">
|
|
|
|
<div class="navbar-inner">
|
|
|
|
<div class="container-fluid">
|
|
|
|
<span class="brand">Kibana Dashboard</span>
|
|
|
|
<span class="brand"><small>Real time metrics</small></span>
|
|
|
|
<div class="btn-group pull-right">
|
|
|
|
<button class="btn" ng-click="pause()"><i ng-class="{'icon-pause': playing,'icon-play': !playing}"></i></button>
|
|
|
|
<button class="btn" ng-repeat='timespan in time_options' ng-click="set_timespan(timespan)">{{timespan}}</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="container-fluid">
|
|
|
|
<div class="row-fluid">
|
|
|
|
<div ng-view></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|