-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
148 lines (131 loc) · 5.21 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
<!-- index.html -->
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta charset="UTF-8" />
<!-- HTML Meta Tags -->
<title>o11y.wiki - Glossary of all terms related to Observability</title>
<meta
name="description"
content="One place for all terms and definitions related Observability of Software systems" />
<!-- Google / Search Engine Tags -->
<meta
itemprop="name"
content="o11y.wiki - Glossary of all terms related to Observability" />
<meta
itemprop="description"
content="One place for all terms and definitions related Observability of Software systems" />
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://o11y.wiki" />
<meta property="og:type" content="website" />
<meta
property="og:title"
content="o11y.wiki - Glossary of all terms related to Observability" />
<meta
property="og:description"
content="One place for all terms and definitions related Observability of Software systems" />
<meta property="og:image" content="/assets/o11y-wiki-og.png" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="o11y.wiki - Glossary of all terms related to Observability" />
<meta
name="twitter:description"
content="One place for all terms and definitions related Observability of Software systems" />
<!-- docsify styles-->
<link
rel="stylesheet"
href="//cdn.jsdelivr.net/npm/docsify-darklight-theme@3/dist/docsify-themeable/style.min.css"
type="text/css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css"
title="light" />
<link
rel="stylesheet alternative"
href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css"
title="dark" />
<!-- fonts -->
<link rel="preconnect" href="https://rsms.me/" />
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap"
rel="stylesheet" />
<!-- Favicon -->
<link rel="icon" href="/assets/favicon.svg" type="image/x-icon" />
<style>
:root {
--base-font-family: "Inter", -apple-system, BlinkMacSystemFont,
"Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji",
"Segoe UI Emoji", "Segoe UI Symbol";
--code-font-family: "JetBrains Mono", Inconsolata, Consolas, Menlo,
Monaco, "Andale Mono WT", "Andale Mono", "Lucida Console",
"DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", Courier,
monospace;
font-feature-settings: "ss01" on, "ss04" on, "cv01" on;
}
.markdown-section {
padding-bottom: 4em;
}
.markdown-section blockquote:first-of-type {
background-color: rgba(235, 248, 242, 0.363);
}
</style>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-5FJQFXF9SF"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-5FJQFXF9SF");
</script>
</head>
<body>
<noscript
>This page requires JavaScript to work, please enable it or read
<a href="https://github.com/prathamesh-sonpatki/o11y-wiki">here</a
>.</noscript
>
<div id="app">Loading...</div>
<script type="src/javascript">
window.$docsify = {
name: "o11y wiki",
repo: "prathamesh-sonpatki/o11y-wiki",
search: ["/"],
darklightTheme: {
siteFont:
"Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'",
defaultTheme: "light | dark",
codeFontFamily:
"'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace",
bodyFontSize: "16px",
light: {
toogleImage:
"url(https://cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/icons/moon.svg)",
},
},
};
</script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<!-- docsify scripts -->
<script
src="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/index.min.js"
type="text/javascript"></script>
<script
src="//cdn.jsdelivr.net/npm/docsify-darklight-theme@3/dist/docsify-themeable/main.min.js"
type="text/javascript"></script>
<script
src="//cdn.jsdelivr.net/npm/docsify-darklight-theme@3/dist/docsify-themeable/index.min.js"
type="text/javascript"></script>
</body>
</html>