|
@@ -1,24 +1,47 @@
|
|
|
<!DOCTYPE html>
|
|
<!DOCTYPE html>
|
|
|
-<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en" id="ng-app"> <![endif]-->
|
|
|
|
|
-<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en" id="ng-app"> <![endif]-->
|
|
|
|
|
-<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
|
|
|
|
|
-<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
|
|
|
|
|
-<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">
|
|
|
|
|
|
|
+ <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en" id="ng-app"> <![endif]-->
|
|
|
|
|
+ <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en" id="ng-app"> <![endif]-->
|
|
|
|
|
+ <!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
|
|
|
|
|
+ <!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
|
|
|
|
|
+ <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 3</title>
|
|
|
|
|
|
|
+ <title>Kibana 3</title>
|
|
|
|
|
|
|
|
- <link rel="stylesheet" href="common/css/normalize.min.css">
|
|
|
|
|
- <link rel="stylesheet" href="common/css/bootstrap.dark.min.css">
|
|
|
|
|
- <link rel="stylesheet" href="common/css/animate.min.css">
|
|
|
|
|
- <link rel="stylesheet" href="common/css/bootstrap-responsive.min.css">
|
|
|
|
|
- <link rel="stylesheet" href="common/css/font-awesome.min.css">
|
|
|
|
|
- <link rel="stylesheet" href="common/css/main.css">
|
|
|
|
|
- <link rel="stylesheet" href="common/css/elasticjs.css">
|
|
|
|
|
- <link rel="stylesheet" href="common/css/timepicker.css">
|
|
|
|
|
|
|
+ <link rel="stylesheet" href="common/css/normalize.min.css">
|
|
|
|
|
+ <link rel="stylesheet" href="common/css/bootstrap.dark.min.css">
|
|
|
|
|
+ <link rel="stylesheet" href="common/css/animate.min.css">
|
|
|
|
|
+ <link rel="stylesheet" href="common/css/bootstrap-responsive.min.css">
|
|
|
|
|
+ <link rel="stylesheet" href="common/css/font-awesome.min.css">
|
|
|
|
|
+ <link rel="stylesheet" href="common/css/main.css">
|
|
|
|
|
+ <link rel="stylesheet" href="common/css/elasticjs.css">
|
|
|
|
|
+ <link rel="stylesheet" href="common/css/timepicker.css">
|
|
|
|
|
+
|
|
|
|
|
+ </head>
|
|
|
|
|
+
|
|
|
|
|
+ <body ng-controller="DashCtrl" ng-cloak>
|
|
|
|
|
+ <div ng-repeat='alert in global_alert' class="alert alert-{{alert.severity}} span12" style="position: fixed;top:2px;opacity:0.9;z-index:8000">
|
|
|
|
|
+ <button type="button" class="close" ng-click="clear_alert(alert)">×</button>
|
|
|
|
|
+ <strong>{{alert.title}}</strong> <span ng-bind-html-unsafe='alert.text'></span> <div class='pull-right small'> {{$index + 1}} alert(s) </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="navbar navbar-static-top">
|
|
|
|
|
+ <div class="navbar-inner">
|
|
|
|
|
+ <div class="container-fluid">
|
|
|
|
|
+ <p class="navbar-text pull-right"><small><strong>Kibana 3</strong> <small>milestone 2</small></small></p>
|
|
|
|
|
+ <span class="brand">{{dashboards.title}}</span>
|
|
|
|
|
+ <div class="brand"><i class='icon-edit pointer' ng-show='dashboards.editable' bs-modal="'partials/dasheditor.html'"></i></div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="container-fluid main">
|
|
|
|
|
+ <div class="row-fluid">
|
|
|
|
|
+ <div ng-view></div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </body>
|
|
|
|
|
|
|
|
<!-- project dependency libs -->
|
|
<!-- project dependency libs -->
|
|
|
<script src="common/lib/LAB.min.js"></script>
|
|
<script src="common/lib/LAB.min.js"></script>
|
|
@@ -27,26 +50,4 @@
|
|
|
<script src="config.js"></script>
|
|
<script src="config.js"></script>
|
|
|
<script src="js/app.js"></script>
|
|
<script src="js/app.js"></script>
|
|
|
|
|
|
|
|
-</head>
|
|
|
|
|
-
|
|
|
|
|
-<body ng-controller="DashCtrl" ng-cloak>
|
|
|
|
|
- <div ng-repeat='alert in global_alert' class="alert alert-{{alert.severity}} span12" style="position: fixed;top:2px;opacity:0.9;z-index:8000">
|
|
|
|
|
- <button type="button" class="close" ng-click="clear_alert(alert)">×</button>
|
|
|
|
|
- <strong>{{alert.title}}</strong> <span ng-bind-html-unsafe='alert.text'></span> <div class='pull-right small'> {{$index + 1}} alert(s) </div>
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="navbar navbar-static-top">
|
|
|
|
|
- <div class="navbar-inner">
|
|
|
|
|
- <div class="container-fluid">
|
|
|
|
|
- <p class="navbar-text pull-right"><small><strong>Kibana 3</strong> <small>milestone 2</small></small></p>
|
|
|
|
|
- <span class="brand">{{dashboards.title}}</span>
|
|
|
|
|
- <div class="brand"><i class='icon-edit pointer' ng-show='dashboards.editable' bs-modal="'partials/dasheditor.html'"></i></div>
|
|
|
|
|
- </div>
|
|
|
|
|
- </div>
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="container-fluid main">
|
|
|
|
|
- <div class="row-fluid">
|
|
|
|
|
- <div ng-view></div>
|
|
|
|
|
- </div>
|
|
|
|
|
- </div>
|
|
|
|
|
-</body>
|
|
|
|
|
</html>
|
|
</html>
|