-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprometheusapm.html
572 lines (473 loc) · 19.6 KB
/
prometheusapm.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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PrometheusAPM</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css"> <!-- Link to your CSS -->
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%; /* Ensure the body takes full height of the viewport */
margin: 0;
}
body {
display: flex;
flex-direction: column;
background-color: #000;
color: #fff;
font-family: Arial, sans-serif;
}
/* Main Content Area */
.container {
flex: 1; /* Allows the container to grow and push the footer down */
}
/* Hero Section Background */
.hero-background {
width: 100%;
height: 100vh;
position: relative;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
background: url('your-background-image.jpg') no-repeat center center/cover; /* Background image */
}
/* Wave Overlay */
.wave-overlay {
position: absolute;
top: 0;
left: 0;
width: 120%;
height: 100%;
background: linear-gradient(180deg, rgba(55, 55, 199, 0.247) 0%, rgba(6, 6, 142, 0) 100%);
z-index: 0;
animation: waveAnimation 5s infinite linear; /* Apply the wave animation */
}
/* Wave Overlay Animation */
@keyframes waveAnimation {
0% {
transform: translateY(0);
}
80% {
transform: translateY(80%); /* Moves the wave down by 80% of its height */
}
100% {
transform: translateY(0);
}
}
/* Dark Blue Wave Colors */
.wave-overlay::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 120%;
height: 100%;
background: linear-gradient(180deg, rgba(7, 7, 219, 0.089) 0%, rgba(70, 70, 137, 0.075) 100%);
}
.wave-overlay::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 120%;
height: 100%;
background: linear-gradient(180deg, rgba(40, 40, 112, 0.144) 0%, rgba(0, 0, 205, 0) 100%);
}
/* Header Styles */
/* Base Styles for h2 */
.hero-background h2 {
padding-top: 200px;
background: #00000000; /* Transparent background */
display: inline-block; /* Ensures that the element takes up only as much width as needed */
cursor: default;
text-transform: capitalize;
font-size: 5rem; /* Default font size */
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #ffc400; /* Text color to make it stand out over the image */
font-weight: bold;
z-index: 999; /* Ensure it's on top of other content */
transition: transform 0.3s ease, color 0.3s ease; /* Smooth transition for hover effects */
}
/* Hover Effects */
.hero-background h2:hover {
text-shadow: 0 0 20px rgb(240, 251, 35), 0 0 30px rgba(235, 242, 101, 0.852), 0 0 40px rgba(246, 248, 128, 0.71);
transform: translate(-50%, -50%) scale(1.1); /* Slightly scale up on hover */
color: #4affed; /* Change text color on hover */
}
/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
.hero-background h2 {
font-size: 4.5rem; /* Adjust font size for large screens */
}
}
@media (max-width: 992px) {
.hero-background h2 {
font-size: 4rem; /* Adjust font size for medium screens */
padding-top: 150px; /* Adjust padding for medium screens */
}
}
@media (max-width: 768px) {
.hero-background h2 {
font-size: 3.5rem; /* Adjust font size for tablets and small screens */
padding-top: 100px; /* Adjust padding for tablets and small screens */
}
}
@media (max-width: 576px) {
.hero-background h2 {
font-size: 2.5rem; /* Adjust font size for very small screens */
padding-top: 50px; /* Adjust padding for very small screens */
}
}
/* Dark Blue Hover Effect */
.hero-background:hover .wave-overlay {
background: linear-gradient(180deg, rgba(22, 22, 77, 0.151) 0%, rgba(0, 0, 139, 0) 100%);
}
.hero-background:hover .wave-overlay::before {
background: linear-gradient(180deg, rgba(30, 30, 103, 0.187) 0%, rgba(0, 0, 139, 0) 100%);
}
.hero-background:hover .wave-overlay::after {
background: linear-gradient(180deg, rgba(28, 28, 88, 0.078) 0%, rgba(0, 0, 205, 0) 100%);
}
.hero-background img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
transition: transform 0.1s ease-out; /* Add transition for smooth movement */
}
.content p {
color: #faf8f7;
font-size: 15px;
text-align: left;
}
.container {
color: #fff;
border-radius: 8px; /* Optional: Add rounded corners to the container */
padding: 20px; /* Ensure consistent padding */
}
/* Hero Background Image */
.hero-background img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
transition: transform 0.1s ease-out; /* Add transition for smooth movement */
}/* Footer container */
.footer {
background-image: url(img/footer.jpg); /* Dark background color */
color: #ffffff; /* black text color */
padding: 40px 0; /* Top and bottom padding */
text-align: center; /* Center text */
}
/* Footer content container */
.footer-content {
display: flex;
flex-wrap: wrap; /* Allows sections to wrap to the next line if needed */
justify-content: center; /* Center the footer sections horizontally */
gap: 20px; /* Space between sections */
}
/* Individual footer sections */
.footer-section {
flex: 1 1 200px; /* Grow and shrink with a base width of 200px */
padding: 0 15px; /* Horizontal padding for sections */
}
.footer-section h3 {
color: #ffffff;
margin-bottom: 15px; /* Space below the heading */
font-size: 30px; /* Font size for headings */
}
.footer-section p, .footer-section ul {
margin: 0; /* Remove default margin */
font-weight: 100;
color: #f6f4f4;
font-size: 20px; /* Font size for paragraphs and list items */
}
.footer-section ul {
list-style-type: none; /* Remove bullet points */
padding: 0; /* Remove default padding */
}
.footer-section ul li {
margin-bottom: 10px; /* Space between list items */
}
.footer-section ul li a {
color: #ffffff; /* White text color for links */
text-decoration: none; /* Remove underline from links */
}
.footer-section ul li a:hover {
text-decoration: underline; /* Underline on hover */
}
.social-icons a {
margin: 0 10px; /* Space between social icons */
display: inline-block; /* Align icons horizontally */
}
.social-icons img {
width: 30px; /* Size of social icons */
height: 30px; /* Size of social icons */
}
.navbar {
background-color: #020825;
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 0;
}
.logo {
height: 45px;
width: 45px;
vertical-align: middle;
}
.navbar ul {
display: flex;
align-items: center;
}
.navbar ul li {
margin: 0 20px;
list-style: none;
}
.navbar ul li a {
position: relative;
padding: 8px 0;
color: rgb(255, 255, 255);
font-size: 18px;
font-weight: 500;
text-decoration: none;
text-transform: capitalize;
transition: color 0.3s linear;
}
.navbar ul li a::after {
content: '';
position: absolute;
right: 0;
bottom: 0;
left: auto;
width: 0;
height: 3px;
background-color: #63d4f9;
transition: width 0.3s linear;
}
.navbar ul li a:hover::after {
width: 100%;
right: auto;
left: 0;
}
.navbar ul li a:hover,
.navbar ul li a.active {
color: #63d4f9;
}
/* Responsive footer */
@media (max-width: 768px) {
.footer-section {
flex: 1 1 100%; /* Full width on smaller screens */
padding: 10px 0; /* Vertical padding for sections */
}}
@media (max-width: 768px) {
.hero-background {
height: 50vh; /* Adjusted height for smaller screens */
}
}
/* Base styles for the hamburger menu icon */
.navbar-toggler {
border: none; /* Remove default border */
background: transparent; /* Transparent background */
padding: 0; /* Remove default padding */
width: 40px; /* Width of the hamburger button */
height: 40px; /* Height of the hamburger button */
position: relative; /* Position relative for the child elements */
cursor: pointer; /* Pointer cursor on hover */
}
.navbar-toggler-icon {
display: block;
position: relative;
width: 30px; /* Width of the lines */
height: 20px; /* Height of the lines container */
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
content: "";
display: block;
width: 100%;
height: 2px; /* Height of each line */
background-color: #007BFF; /* Color of the lines */
margin: 6px auto; /* Spacing between lines */
transition: all 0.3s ease-in-out; /* Smooth transition for hover effect */
}
/* Optional: Hover effect to slightly scale the lines */
.navbar-toggler:hover .navbar-toggler-icon span {
transform: scale(1.1); /* Slightly scale up on hover */
}
/* When the menu is open (transforms to X) */
.navbar-toggler.collapsed .navbar-toggler-icon span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px); /* Adjusted for balance */
}
.navbar-toggler.collapsed .navbar-toggler-icon span:nth-child(2) {
opacity: 0;
}
.navbar-toggler.collapsed .navbar-toggler-icon span:nth-child(3) {
transform: rotate(-45deg) translate(5px, -5px); /* Adjusted for balance */
}
/* Media query for smaller screens */
@media (max-width: 670px) {
.navbar-nav {
display: none; /* Hide the menu by default on mobile */
flex-direction: column;
width: 100%; /* Adjust width as needed */
background-color: #020825;
position: absolute;
top: 60px; /* Adjust this based on the height of your navbar */
left: 0;
padding: 10px 0;
z-index: 9999; /* Ensure the menu is above other content */
}
.navbar-collapse.show .navbar-nav {
display: flex; /* Show menu when navbar is expanded */
}
.navbar-nav li {
margin: 10px 0;
text-align: center;
padding: 10px 0;
}
.navbar-toggler {
width: 30px; /* Smaller width for the button */
height: 30px; /* Smaller height for the button */
}
.navbar-toggler-icon {
width: 30px; /* Smaller width for the lines container */
height: 20px; /* Smaller height for the lines container */
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
height: 2px; /* Thinner lines */
margin: 4px 0; /* Less space between lines */
}
.navbar-toggler.collapsed .navbar-toggler-icon span:nth-child(1) {
transform: rotate(45deg) translate(3px, 3px); /* Adjusted for smaller button */
}
.navbar-toggler.collapsed .navbar-toggler-icon span:nth-child(3) {
transform: rotate(-45deg) translate(3px, -3px); /* Adjusted for smaller button */
}
}
/* Media query for larger screens (fixing visibility issue) */
@media (min-width: 670px) {
.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
background-color: #007BFF; /* Ensure lines are visible with the specified color */
}
}
</style>
</head>
<body>
<!--Nav bar-->
<div class="container-fluid">
<div class="navbar navbar-expand-lg bg-body-tertiary">
<a href="#" class="navbar-brand">
<img src="img/logo.jpg" alt="logo" class="logo">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item"><a href="index.html#home" class="nav-link">Home</a></li>
<li class="nav-item"><a href="index.html#about" class="nav-link">About Us</a></li>
<li><a href="description.html">Services</a></li>
<li class="nav-item"><a href="index.html#portfolio" class="nav-link">Projects/Portfolio</a></li>
<li class="nav-item"><a href="index.html#blog" class="nav-link">Blog</a></li>
<li><a href="prometheusapm.html">PrometheusAPM</a></li>
<li class="nav-item"><a href="index.html#contact" class="nav-link">Contact Us</a></li>
</ul>
</div>
</div>
</div>
<div class="container py-5">
<div class="hero-background">
<div class="wave-overlay"></div>
<img src="img/apmbg (1).jpg" alt="bgimg">
<h2 class="text-center mb-4">PrometheusAPM</h2></div>
<div class="content">
<br>
<br>
<br>
<p class="text-center mb-4"><strong>Elevate Your Performance with Prometheus APM</strong></p>
<p>In the fast-paced world of application development, performance and reliability are crucial. At AtonixCorp, we understand the challenges of maintaining optimal application performance and ensuring seamless user experiences. That’s why we’ve developed Prometheus APM (Application Performance Management), a cutting-edge solution designed to help you monitor, analyze, and enhance the performance of your applications.</p>
<p><strong>What is Prometheus APM?</strong></p>
<p>Prometheus APM is an advanced application performance management tool that provides comprehensive insights into the behavior and performance of your applications. It enables you to track key performance metrics, identify bottlenecks, and optimize your systems to deliver exceptional performance and reliability.</p>
<p class="text-center mb-4"><strong>Key Features of Prometheus APM</strong></p>
<p><strong>1. Real-Time Monitoring:</strong> Gain real-time visibility into the performance of your applications with intuitive dashboards and live metrics. Monitor key performance indicators (KPIs) such as response times, throughput, and error rates to stay on top of application health.</p>
<p><strong>2. Performance Analytics:</strong> Leverage advanced analytics to identify performance trends and uncover underlying issues. Prometheus APM provides detailed reports and insights, allowing you to make data-driven decisions and enhance application efficiency.</p>
<p><strong>3. Bottleneck Identification:</strong> Detect and diagnose performance bottlenecks with precision. Our tool helps you pinpoint areas of inefficiency, such as slow queries, high latency, and resource contention, enabling you to address issues promptly and effectively.</p>
<p><strong>4. Custom Alerts and Notifications:</strong> Stay informed about critical performance issues with customizable alerts and notifications. Set thresholds and receive real-time alerts for anomalies, ensuring that you can take immediate action to resolve potential problems.</p>
<p><strong>5. Seamless Integration:</strong> Integrate Prometheus APM with your existing tools and workflows effortlessly. Our solution supports a wide range of integrations, allowing you to incorporate performance monitoring into your development and operations processes seamlessly.</p>
<p><strong>6. User-Friendly Interface:</strong> Navigate through Prometheus APM with ease using our intuitive and user-friendly interface. Access key metrics, generate reports, and manage configurations with a straightforward and efficient design.</p>
<p><strong>Why Choose Prometheus APM?</strong></p>
<p>Prometheus APM is designed to help you maintain high performance and reliability in your applications. By providing comprehensive monitoring, advanced analytics, and actionable insights, our tool empowers you to optimize your applications, improve user experiences, and achieve operational excellence.</p>
<p>Elevate your performance and drive your applications to new heights with Prometheus APM. Discover how our solution can transform your approach to application management and join us in leading the way in performance optimization.</p>
<div class="text-center"><b>
<p class="quote">"At AtonixCorp, we’re committed to delivering solutions that drive performance and innovation. Explore Prometheus APM and see how we can help you achieve exceptional application performance."</p>
</b></div>
</div>
</div>
<!--footer-->
<div class="footer">
<div class="footer-content container">
<div class="footer-section">
<h3>About Us</h3>
<p style="font-weight: bold;">
AtonixCorp </p>
<p>
<i>Pioneering data analytics and technology solutions.<br>
Explore our innovations in IoT, agriculture, oil, AI, and media.<br>
Join us in shaping the future of technology.</i>
</p>
</div>
<div class="footer-section">
<h3>Contact Us</h3>
<p style="font-weight: bold;">Email: [email protected]</p>
<p style="font-weight: bold;">Phone: +123 456 7890</p><br>
<p style="font-weight: bold;">Office address: <a href="https://www.google.com/maps?q=70+W+Madison+St,+Chicago,+IL+60602,+United+States" target="_blank">70 W Madison St, Chicago, IL 60602, United States</a></p>
</div>
<div class="footer-section">
<h3>Follow Us</h3>
<div class="social-icons">
<a href="https://www.linkedin.com/company/atonixcorp/" aria-label="LinkedIn"><img src="animation/icons8-linkedin-circled.gif" alt="linkedin" class="gif-icon"></a>
<a href="https://twitter.com/ofidohub" aria-label="Twitter"><img src="animation/icons8-twitter.gif" alt="twitter" class="gif-icon">
</a>
<a href="https://www.instagram.com/ofidohub/" aria-label="Instagram"><img src="animation/icons8-instagram.gif" alt="instagram" class="gif-icon">
</a>
</div>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html#home">Home</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="description.html">Services</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</div>
</div>
<p>© 2024 AtonixCorp</p>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>