Skip to content

Commit 0595b87

Browse files
committed
Remove deprovisioning metrics from OOB Karpenter Dashboard (DataDog#21410)
* Remove deprovisioning metrics from OOB Karpenter Dashboard * Remove deprovisioning metrics from OOB Karpenter Dashboard * Mark deprovisioning metrics as deprecated in v1+ * Undoing changes to fixtures and test * Reverting changes to metrics.py * Removing changelog a1b8a35
0 parents  commit 0595b87

File tree

122 files changed

+17556
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+17556
-0
lines changed

.nojekyll

Whitespace-only changes.

404.html

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

architecture/ibm_i/index.html

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

architecture/snmp/index.html

Lines changed: 216 additions & 0 deletions
Large diffs are not rendered by default.

architecture/vsphere/index.html

Lines changed: 47 additions & 0 deletions
Large diffs are not rendered by default.

architecture/win32_event_log/index.html

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

assets/_mkdocstrings.css

Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
2+
/* Avoid breaking parameter names, etc. in table cells. */
3+
.doc-contents td code {
4+
word-break: normal !important;
5+
}
6+
7+
/* No line break before first paragraph of descriptions. */
8+
.doc-md-description,
9+
.doc-md-description>p:first-child {
10+
display: inline;
11+
}
12+
13+
/* Max width for docstring sections tables. */
14+
.doc .md-typeset__table,
15+
.doc .md-typeset__table table {
16+
display: table !important;
17+
width: 100%;
18+
}
19+
20+
.doc .md-typeset__table tr {
21+
display: table-row;
22+
}
23+
24+
/* Defaults in Spacy table style. */
25+
.doc-param-default {
26+
float: right;
27+
}
28+
29+
/* Backward-compatibility: docstring section titles in bold. */
30+
.doc-section-title {
31+
font-weight: bold;
32+
}
33+
34+
/* Symbols in Navigation and ToC. */
35+
:root,
36+
[data-md-color-scheme="default"] {
37+
--doc-symbol-attribute-fg-color: #953800;
38+
--doc-symbol-function-fg-color: #8250df;
39+
--doc-symbol-method-fg-color: #8250df;
40+
--doc-symbol-class-fg-color: #0550ae;
41+
--doc-symbol-module-fg-color: #5cad0f;
42+
43+
--doc-symbol-attribute-bg-color: #9538001a;
44+
--doc-symbol-function-bg-color: #8250df1a;
45+
--doc-symbol-method-bg-color: #8250df1a;
46+
--doc-symbol-class-bg-color: #0550ae1a;
47+
--doc-symbol-module-bg-color: #5cad0f1a;
48+
}
49+
50+
[data-md-color-scheme="slate"] {
51+
--doc-symbol-attribute-fg-color: #ffa657;
52+
--doc-symbol-function-fg-color: #d2a8ff;
53+
--doc-symbol-method-fg-color: #d2a8ff;
54+
--doc-symbol-class-fg-color: #79c0ff;
55+
--doc-symbol-module-fg-color: #baff79;
56+
57+
--doc-symbol-attribute-bg-color: #ffa6571a;
58+
--doc-symbol-function-bg-color: #d2a8ff1a;
59+
--doc-symbol-method-bg-color: #d2a8ff1a;
60+
--doc-symbol-class-bg-color: #79c0ff1a;
61+
--doc-symbol-module-bg-color: #baff791a;
62+
}
63+
64+
code.doc-symbol {
65+
border-radius: .1rem;
66+
font-size: .85em;
67+
padding: 0 .3em;
68+
font-weight: bold;
69+
}
70+
71+
code.doc-symbol-attribute {
72+
color: var(--doc-symbol-attribute-fg-color);
73+
background-color: var(--doc-symbol-attribute-bg-color);
74+
}
75+
76+
code.doc-symbol-attribute::after {
77+
content: "attr";
78+
}
79+
80+
code.doc-symbol-function {
81+
color: var(--doc-symbol-function-fg-color);
82+
background-color: var(--doc-symbol-function-bg-color);
83+
}
84+
85+
code.doc-symbol-function::after {
86+
content: "func";
87+
}
88+
89+
code.doc-symbol-method {
90+
color: var(--doc-symbol-method-fg-color);
91+
background-color: var(--doc-symbol-method-bg-color);
92+
}
93+
94+
code.doc-symbol-method::after {
95+
content: "meth";
96+
}
97+
98+
code.doc-symbol-class {
99+
color: var(--doc-symbol-class-fg-color);
100+
background-color: var(--doc-symbol-class-bg-color);
101+
}
102+
103+
code.doc-symbol-class::after {
104+
content: "class";
105+
}
106+
107+
code.doc-symbol-module {
108+
color: var(--doc-symbol-module-fg-color);
109+
background-color: var(--doc-symbol-module-bg-color);
110+
}
111+
112+
code.doc-symbol-module::after {
113+
content: "mod";
114+
}
115+
116+
.doc-signature .autorefs {
117+
color: inherit;
118+
border-bottom: 1px dotted currentcolor;
119+
}

assets/css/custom.css

Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
:root > * {
2+
/* https://www.datadoghq.com/about/resources/#datadog-purple */
3+
--md-primary-fg-color: #632CA6;
4+
--md-primary-fg-color--dark: #632CA6;
5+
6+
/* https://github.com/squidfunk/mkdocs-material/blob/9.1.2/src/assets/stylesheets/palette/_primary.scss#L34 */
7+
--md-primary-fg-color--light: #9574CD;
8+
}
9+
10+
/* Brighter links for dark mode */
11+
[data-md-color-scheme=slate] {
12+
/* https://github.com/squidfunk/mkdocs-material/blob/9.1.2/src/assets/stylesheets/main/_colors.scss#L91-L92 */
13+
--md-typeset-a-color: var(--md-primary-fg-color--light);
14+
}
15+
16+
/* FiraCode https://github.com/tonsky/FiraCode */
17+
code { font-family: 'Fira Code', monospace; }
18+
19+
@supports (font-variation-settings: normal) {
20+
code { font-family: 'Fira Code VF', monospace; }
21+
}
22+
23+
/* https://github.com/squidfunk/mkdocs-material/issues/1522 */
24+
.md-typeset h5 {
25+
color: var(--md-default-fg-color);
26+
text-transform: none;
27+
}
28+
29+
/* https://facelessuser.github.io/pymdown-extensions/extensions/tabbed/ */
30+
.md-typeset .tabbed-set {
31+
border: 1px solid #eee;
32+
}
33+
.md-typeset .tabbed-content {
34+
padding: 0.5em 1em;
35+
}
36+
37+
/* https://facelessuser.github.io/pymdown-extensions/extensions/progressbar/ */
38+
39+
/* TODO: replace all this when there is an updated example https://github.com/facelessuser/pymdown-extensions/issues/912 */
40+
41+
/* Normal colors */
42+
:root > * {
43+
--md-progress-100: #00e676;
44+
--md-progress-80: #00e676;
45+
--md-progress-60: #fbc02d;
46+
--md-progress-40: #ff9100;
47+
--md-progress-20: #ff5252;
48+
--md-progress-0: #ff1744;
49+
}
50+
51+
.md-typeset {
52+
/* Progress Bars */
53+
/* Stripe animation */ }
54+
.md-typeset .progress-label {
55+
position: absolute;
56+
width: 100%;
57+
margin: 0;
58+
color: var(--md-default-fg-color);
59+
font-weight: 700;
60+
line-height: 1.4rem;
61+
white-space: nowrap;
62+
text-align: center;
63+
text-shadow: -0.0625em -0.0625em 0.375em var(--md-default-bg-color--light), 0.0625em -0.0625em 0.375em var(--md-default-bg-color--light), -0.0625em 0.0625em 0.375em var(--md-default-bg-color--light), 0.0625em 0.0625em 0.375em var(--md-default-bg-color--light); }
64+
.md-typeset .progress-bar {
65+
float: left;
66+
height: 1.2rem;
67+
background-color: #2979ff; }
68+
.md-typeset .candystripe-animate .progress-bar {
69+
-webkit-animation: animate-stripes 3s linear infinite;
70+
animation: animate-stripes 3s linear infinite; }
71+
.md-typeset .progress {
72+
position: relative;
73+
display: block;
74+
width: 100%;
75+
height: 1.2rem;
76+
margin: 0.5rem 0;
77+
background-color: var(--md-default-fg-color--lightest); }
78+
.md-typeset .progress.thin {
79+
height: 0.4rem;
80+
margin-top: 0.9rem; }
81+
.md-typeset .progress.thin .progress-label {
82+
margin-top: -0.4rem; }
83+
.md-typeset .progress.thin .progress-bar {
84+
height: 0.4rem; }
85+
.md-typeset .progress.candystripe .progress-bar {
86+
background-image: linear-gradient(135deg, var(--md-default-bg-color--lightest) 27%, transparent 27%, transparent 52%, var(--md-default-bg-color--lightest) 52%, var(--md-default-bg-color--lightest) 77%, transparent 77%, transparent);
87+
background-size: 2rem 2rem; }
88+
.md-typeset .progress-100plus .progress-bar {
89+
background-color: var(--md-progress-100); }
90+
.md-typeset .progress-80plus .progress-bar {
91+
background-color: var(--md-progress-80); }
92+
.md-typeset .progress-60plus .progress-bar {
93+
background-color: var(--md-progress-60); }
94+
.md-typeset .progress-40plus .progress-bar {
95+
background-color: var(--md-progress-40); }
96+
.md-typeset .progress-20plus .progress-bar {
97+
background-color: var(--md-progress-20); }
98+
.md-typeset .progress-0plus .progress-bar {
99+
background-color: var(--md-progress-0); }
100+
101+
@-webkit-keyframes animate-stripes {
102+
0% {
103+
background-position: 0 0; }
104+
100% {
105+
background-position: 6rem 0; } }
106+
107+
@keyframes animate-stripes {
108+
0% {
109+
background-position: 0 0; }
110+
100% {
111+
background-position: 6rem 0; } }
112+
113+
/* END TODO */
459 KB
Loading
1.5 MB
Loading

0 commit comments

Comments
 (0)