-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path2026-04-16_Observability.html
More file actions
128 lines (106 loc) · 4.27 KB
/
Copy path2026-04-16_Observability.html
File metadata and controls
128 lines (106 loc) · 4.27 KB
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
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8"/>
<title>Observability</title>
<!-- https://gauger.io/fonticon/ -->
<link rel="icon" href="images/favicons/kubernetes.ico"/>
<link rel="stylesheet" href="node_modules/reveal.js/dist/reset.css" />
<link rel="stylesheet" href="node_modules/reveal.js/dist/reveal.css" />
<link rel="stylesheet" href="node_modules/reveal.js/dist/theme/black.css" id="theme" />
<link rel="stylesheet" href="node_modules/highlight.js/styles/rainbow.css" />
<link rel="stylesheet" href="themes/theme2022.css" id="theme" />
<link rel="stylesheet" href="themes/common.css" />
<link rel="stylesheet" href="themes/fontawesome.css" />
<style>
.reveal p code {
background-color: #505050;
padding-left: 0.1em;
padding-right: 0.1em;
border-radius: 0.2em;
}
</style>
</head>
<body>
<div class="reveal">
<div class="slides">
<section
id="title"
data-background="images/sieuwert-otterloo-6SyrBaRjLJ4-unsplash.jpg"
data-background-size="130%"
data-background-position="left 0% top 60%"
style="padding: 1em 1em 1em 1em; background: rgba(0, 0, 0, 0.5); width: 30%; margin: auto; text-align: left;">
<h1 style="font-size: 1.5em;"><b>Observability</b></h1>
<h2 style="font-size: 1.2em; text-transform: none;">For Cloud Native</h2>
<p><em>Nicholas Dille, Haufe Group</em></p>
</section>
<section data-markdown="000_introduction/02_bio.md" data-separator="^---$" data-separator-vertical="^--$"></section>
<section id="agenda">
<h2>Agenda</h2>
<i class="fa-duotone fa-4x fa-list-check" style="float: right;"></i>
<ul id="bullets" style="font-size: larger;">
<li><span class="fa-li"><i class="fa-duotone fa-binoculars"></i></span> Introduction to Observability</li>
<li><span class="fa-li"><i class="fa-duotone fa-layer-group"></i></span> Grafana LGTM Stack</li>
<li><span class="fa-li"><i class="fa-duotone fa-vacuum"></i></span> Data collection</li>
<li><span class="fa-li"><i class="fa-duotone fa-chart-line"></i></span> Visualization</li>
<li><span class="fa-li"><i class="fa-duotone fa-bell-ring"></i></span> Alarms</li>
</ul>
</section>
<section data-markdown="180_observability/010_introduction/slides.md" data-separator="^---$" data-separator-vertical="^--$"></section>
<section data-markdown="180_observability/020_lgtm/slides.md" data-separator="^---$" data-separator-vertical="^--$"></section>
<section data-markdown="180_observability/030_data/slides.md" data-separator="^---$" data-separator-vertical="^--$"></section>
<section data-markdown="180_observability/040_visualization/slides.md" data-separator="^---$" data-separator-vertical="^--$"></section>
<section data-markdown="180_observability/050_alarms/slides.md" data-separator="^---$" data-separator-vertical="^--$"></section>
<section id="summary">
<h2>Summary</h2>
<i class="fa-duotone fa-4x fa-lightbulb-on" style="float: right;"></i>
<ul id="bullets" style="font-size: larger;">
<li><span class="fa-li"><i class="fa-duotone fa-question"></i></span> XXX</li>
</ul>
</section>
</div>
</div>
<script src="node_modules/reveal.js/dist/reveal.js"></script>
<script src="node_modules/reveal.js/dist/plugin/markdown.js"></script>
<script src="node_modules/reveal.js/dist/plugin/highlight.js"></script>
<script src="node_modules/reveal.js/dist/plugin/notes.js"></script>
<script>
Reveal.initialize({
width: 1920,
height: 1080,
minScale: 0.5,
maxScale: 2.0,
margin: 0.05,
controls: false,
controlsTutorial: false,
progress: true,
slideNumber: false,
keyboard: true,
touch: true,
mouseWheel: false,
hash: true,
history: false,
overview: true,
fragments: true,
fragmentInURL: true,
transition: 'convex',
transitionSpeed: 'default',
backgroundTransition: 'fade',
hideInactiveCursor: true,
autoPlayMedia: null,
previewLinks: false,
center: true,
help: true,
markdown: {
smartypants: true
},
plugins: [
RevealMarkdown,
RevealHighlight,
RevealNotes
]
});
</script>
</body>
</html>