-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsre.html
92 lines (80 loc) · 4.91 KB
/
sre.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
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-B1B9MKR0DP"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-B1B9MKR0DP');
</script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Diligent Design is an IT Consulting firm specializing in Site Reliability Engineering and cloud systems integration. White Rock, British Columbia.">
<meta name="author" content="Jason Bellis - Diligent Design and Consulting Incorporated">
<title>Diligent Design Inc</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" href="css/styles.css" />
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/e95b7e523a.js" crossorigin="anonymous"></script>
</head>
<body class="is-preload">
<div id="wrapper">
<div id="bg"></div>
<div id="overlay"></div>
<div id="main">
<!-- Navbar -->
<nav class="navbar">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarDDC" aria-controls="navbarDDC" aria-expanded="false" aria-label="Navigation">
<span class="navbar-toggler-icon"><i class="fas fa-home text-light"></i></span>
</button>
<div class="collapse navbar-collapse" id="navbarDDC">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="sre.html">SRE</a>
</li>
<li class="nav-item">
<a class="nav-link" href="integration.html">Integration</a>
</li>
<li class="nav-item">
<a class="nav-link" href="portfolio.html">Design</a>
</li>
</ul>
</div>
</nav>
<!-- Header -->
<header id="header" class="mb-5 mt-4">
<h1 class="py-4">Site Reliability Engineering</h1>
<hr>
<p class="mb-4">The discipline of <a href="https://sre.google/">Site Reliability Engineering (SRE)</a>
applies software engineering solutions to operational challenges, like scalability or reliability.
The <em>foundation</em> of SRE is <span class="font-weight-bold"><a href="https://www.moogsoft.com/blog/observability-site-reliability-engineers/" target="_blank">observability</a></span>.</p>
<hr />
<p class="mb-2">Using an Application Performance Management system like
<a href="https://docs.microsoft.com/en-us/azure/azure-monitor/app/app-insights-overview/" target="_blank">Azure Application Insights</a>,
allows us to gather application telemetry that drives powerful business insights and decision making.
</p>
<p class="mb-4">Automation can be built from this data - to scale up server capacity, or alert your support team to potential problems.</p>
<hr>
<p class="mb-5">Diligent Design specializes in <span class="font-weight-bold">Microsoft Azure</span> cloud platform. But, we'll build a solution on the cloud provider of your choosing - or on premises.
Let us engineer the right solution, for a fast and reliable system that won't let you down.</p>
</header>
<!-- Footer -->
<footer id="footer">
<span class="copyright">Design credits to <a href="https://html5up.net" target="_blank">html5up.net</a> and
<a href="https://unsplash.com/" target="_blank">Unsplash</a></span>
</footer>
</div>
</div>
<script>
window.onload = function () { document.body.classList.remove('is-preload'); }
window.ontouchmove = function () { return false; }
window.onorientationchange = function () { document.body.scrollTop = 0; }
</script>
</body>
</html>