forked from arachnys/cabot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrontpage.html
169 lines (150 loc) · 6.9 KB
/
frontpage.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width">
<title>{{ site.title }}</title>
<meta name="description" content="{{ site.subtitle }}">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link rel="stylesheet" href="{{ site.baseurl }}/css/syntax.css">
<link rel="stylesheet" href="{{ site.baseurl }}/css/main.css">
<link rel="shortcut icon" href="/images/favicon.ico" />
</head>
<body>
<a href="https://github.com/arachnys/cabot"><img style="position: fixed; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
<div class="jumbotron blue">
<div class="container">
<div class="row">
<div class="col-xs-12">
<h1 class="">{{ site.title }}</h1>
<div class="">{{ site.subtitle }}</div>
</div>
</div>
<div class="row">
<div class="col-xs-9">
<a href="/qs/quickstart.html">5 minute deploy</a>
| <a href="/use/services.html">Monitor infrastructure</a>
| <a href="https://github.com/arachnys/cabot">GitHub project</a>
</div>
<div class="col-xs-3 text-right">
<a href="https://www.arachnys.com/">About Arachnys</a>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="screenshot">
<img class="img-responsive" src="/images/frontpage-screenshot.png" alt="Application frontpage"/>
</div>
</div>
</div>
</div>
</div>
<div class="jumbotron">
<div class="container">
<div class="row">
<div class="col-md-7 col-md-offset-1">
<h2>Self-hosted watchdog for your websites and infrastructure</h2>
</div>
<div class="col-md-4">
<h2><a href="/qs/quickstart.html" class="btn btn-success btn-lg active">Get started</a></h2>
</div>
</div>
</div>
</div>
<hr>
<div class="container">
<div class="row features">
<div class="col-md-4 text-center">
<h3><i class="fa fa-eye"></i> Monitor</h3>
<div class="">
Watch <a href="/use/graphite-checks.html">Graphite metrics</a>, <a href="/use/jenkins-checks.html">Jenkins</a> jobs and <a href="/use/http-checks.html">web endpoints</a> for issues
</div>
</div>
<div class="col-md-4 text-center">
<h3><i class="fa fa-dashboard"></i> Aggregate</h3>
<div class="">
Group logically related triggers into <a href="/use/services.html">services</a> and physically related into <a href="/use/instances.html">instances</a> dashboards
</div>
</div>
<div class="col-md-4 text-center">
<h3><i class="fa fa-mobile"></i> Alert</h3>
<div class="">
<a href="/use/alerting.html">Alert</a> support staff to issues by phone, SMS, Hipchat or email
</div>
</div>
</div>
</div>
<hr>
<div class="footer">
<div class="container">
<div class="row">
<div id="footer" class="col-xs-12">
{% include footer.html %}
</div>
</div>
</div>
</div>
<script>
if (window.location.href.indexOf('http://arachnys.github.io') != -1) {
// Poor man's redirect
window.location.href = 'http://cabotapp.com'
}
</script>
<script>
function orderNav() {
var list,
section,
header,
sections = [],
lists = {},
headers = {};
var navUl = document.querySelectorAll('#navigation ul')[0],
navLis = document.querySelectorAll('#navigation ul li');
if (!navUl) return;
for (var i = 0; i < navLis.length; i++) {
var order, li = navLis[i];
if (li.classList.contains('nav-header')) {
section = li.innerText;
sections.push(section);
headers[section] = li;
continue;
}
if (!lists[section]) {
lists[section] = [];
}
order = parseFloat(li.getAttribute('data-order'))
lists[section].push([order, li]);
}
for (var i = 0; i < sections.length; i++) {
section = sections[i];
list = lists[section].sort(function(a, b) {
return a[0] - b[0];
});
if (header = headers[section]) {
navUl.appendChild(header);
}
for (var j = 0; j < list.length; j++) {
navUl.appendChild(list[j][1]);
}
}
}
if (document.querySelectorAll) orderNav();
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-29954614-6', 'cabotapp.com');
ga('send', 'pageview');
</script>
</body>
</html>