-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
186 lines (149 loc) · 10.2 KB
/
index.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<html>
<head>
<!-- <link rel="stylesheet" href="https://www.nagios.com/wp-content/themes/pursuit/assets/css/A.bootstrap.min.css,qver=3.1.1.pagespeed.cf.jfLbuhCNp4.css"> -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<link href="assets/stylesheets/index.css" rel="stylesheet">
</head>
<body>
<title>Nagios Log Server Pricing Calculator</title>
<div class="container" style="margin-top: 50px; max-width: 1170px; padding-bottom: 35px;">
<div class="row" style="margin-bottom: 36px;">
<div class="col-s6">
<h1>
Nagios Log Server Hardware Sizing Requirements
</h1>
<p>Estimate the required number of Nagios Log Server instances for your environment</p>
</div>
</div>
<div class="row">
<div id="user-input-area" class="col-md">
<div class="mb-5">
<label for="data-range" class="form-label">
Daily Data Ingest (GB)
<img src="assets/img/help.png" width="16" data-toggle="tooltip" data-placement="top" title="How much cumulative log data from all sources will you be sending to Nagios Log Server?">
</label>
<div class="row">
<div class="col">
<input type="range" class="form-range" id="data-range" oninput="updateTextValue(this);" min="5" max="2000" value="64">
</div>
<input id="text-value-data-range" class="input-value form-control" type="number" value="64" min="5" max="2000">
<span class="input-format">GB</span>
</div>
</div>
<div class="mb-5">
<label for="retention" class="form-label">Hot Retention Period (Days)
<img src="assets/img/help.png" width="16" data-toggle="tooltip" data-placement="top" title="The Hot Retention Period is the length of time you'd like log data to be readily available for searching and querying.">
</label>
<div class="row">
<div class="col">
<input type="range" class="form-range" id="retention" oninput="updateTextValue(this);" min="7" max="90" value="14">
</div>
<input id="text-value-retention" class="input-value form-control" value="14" type="number" min="7" max="90">
<span class="input-format">Days</span>
</div>
</div>
<div class="mb-5">
<label for="drive" class="form-label">Drive Space Per Instance (GB)
<img src="assets/img/help.png" width="16" data-toggle="tooltip" data-placement="top" title="How much disk space will be available for each instance?">
</label>
<div class="row align-middle">
<div class="col">
<input type="range" class="form-range" id="drive" oninput="updateTextValue(this);" min="40" max="6000" value="1024">
</div>
<input id="text-value-drive" class="input-value form-control" min="40" max="6000" value="1024" type="number">
<span class="input-format">GB</span>
</div>
</div>
<div class="mb-5">
<label for="recall" class="form-label">
Data Recall Provision (Optional)
<img src="assets/img/help.png" width="16" data-toggle="tooltip" data-placement="top" title="Do you plan on recalling data from cold storage? This will require increased storage provisions for each Log Server Instance.">
</label>
<div class="row">
<div class="col">
<select id="recall" class="form-select" onchange="calculate();">
<option value="">Number of days</option>
<option value="1">1 day</option>
<option value="3">3 days</option>
<option value="7">7 days</option>
<option value="14">14 days</option>
<option value="30">30 days</option>
</select>
</div>
<!-- <span id="recall" class="input-value"></span> -->
</div>
<!-- <div class="row">
<div class="col">
<input type="range" class="form-range" id="drive-range" oninput="updateTextValue(this);">
</div>
<span id="text-value-recall-range" class="input-value"></span>
</div> -->
</div>
</div>
<div class="col" style="max-width: 480px;">
<div class="card">
<div class="card-header">
<h5 style="margin-bottom: 0px;">Recommended Cluster</h5>
</div>
<div class="card-body">
<h1><span class="cluster-node-count">4</span> Instance Cluster</h1>
<p class="card-text">Based on your hardware and data ingest requirements, we recommend a <span class="cluster-node-count">4</span>-instance Nagios Log Server cluster.</p>
<div class="row">
<div id="circle-area" class="col-sm">
<div class="circle"><span>LS</span></div>
<div class="circle"><span>LS</span></div>
<div class="circle"><span>LS</span></div>
<div class="circle"><span>LS</span></div>
<div class="circle"><span>LS</span></div>
<div class="circle"><span>LS</span></div>
<div class="circle"><span>LS</span></div>
<div class="circle"><span>LS</span></div>
<div class="circle"><span>LS</span></div>
<div class="circle"><span>LS</span></div>
</div>
</div>
<div class="row" style="margin-top: 15px; margin-bottom: 15px;">
<div class="col-sm">
<h5 class="card-title">What's included</h5>
<div class="benefit">
<img src="assets/img/check.png" width="21"><span>High Availability & Failover</span>
</div>
<div class="benefit">
<img src="assets/img/check.png" width="21"><span>Comprehensive Dashboards</span>
</div>
<div class="benefit">
<img src="assets/img/check.png" width="21"><span>Customizable Alerting</span>
</div>
<div class="benefit">
<img src="assets/img/check.png" width="21"><span>Real-Time Data</span>
</div>
<div class="benefit">
<img src="assets/img/check.png" width="21"><span>1-Year of Support & Maintenance</span>
</div>
</div>
</div>
<div class="row" style="margin-top: 15px; margin-bottom: 15px;">
<div class="col-sm">
<h5 class="card-title">Price</h5>
<h1 class="cluster-price">$6,995</h1>
</div>
</div>
<a id="buy-now" class="btn btn-primary">Buy Now</a>
<a href="https://www.nagios.com/downloads/nagios-log-server/" class="btn btn-primary">30-Day Free Trial</a>
<div style="border-bottom: 1px solid lightgrey; margin-top: 15px; margin-bottom: 15px;"></div>
<small style="font-size: 11px;">
Information on this page should not be taken as product recommendations or exact requirements. We recommend utilizing your <a href="https://www.nagios.com/downloads/nagios-log-server/">fully-functional 30-day free trial</a> to gather more information about your infrustructure's requirements.
</small>
</div>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="assets/javascripts/index.js"></script>
</body>
</html>