forked from DataDog/integrations-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add endpoint tag to legacy (DataDog#16478)
* add endpoint tag to legacy * changelog * grammar nit * lint * lint 1bf6702
- Loading branch information
0 parents
commit 60530fe
Showing
121 changed files
with
16,774 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
|
||
/* Avoid breaking parameter names, etc. in table cells. */ | ||
.doc-contents td code { | ||
word-break: normal !important; | ||
} | ||
|
||
/* No line break before first paragraph of descriptions. */ | ||
.doc-md-description, | ||
.doc-md-description>p:first-child { | ||
display: inline; | ||
} | ||
|
||
/* Max width for docstring sections tables. */ | ||
.doc .md-typeset__table, | ||
.doc .md-typeset__table table { | ||
display: table !important; | ||
width: 100%; | ||
} | ||
|
||
.doc .md-typeset__table tr { | ||
display: table-row; | ||
} | ||
|
||
/* Defaults in Spacy table style. */ | ||
.doc-param-default { | ||
float: right; | ||
} | ||
|
||
/* Keep headings consistent. */ | ||
h1.doc-heading, | ||
h2.doc-heading, | ||
h3.doc-heading, | ||
h4.doc-heading, | ||
h5.doc-heading, | ||
h6.doc-heading { | ||
font-weight: 400; | ||
line-height: 1.5; | ||
color: inherit; | ||
text-transform: none; | ||
} | ||
|
||
h1.doc-heading { | ||
font-size: 1.6rem; | ||
} | ||
|
||
h2.doc-heading { | ||
font-size: 1.2rem; | ||
} | ||
|
||
h3.doc-heading { | ||
font-size: 1.15rem; | ||
} | ||
|
||
h4.doc-heading { | ||
font-size: 1.10rem; | ||
} | ||
|
||
h5.doc-heading { | ||
font-size: 1.05rem; | ||
} | ||
|
||
h6.doc-heading { | ||
font-size: 1rem; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
:root > * { | ||
/* https://www.datadoghq.com/about/resources/#datadog-purple */ | ||
--md-primary-fg-color: #632CA6; | ||
--md-primary-fg-color--dark: #632CA6; | ||
|
||
/* https://github.com/squidfunk/mkdocs-material/blob/9.1.2/src/assets/stylesheets/palette/_primary.scss#L34 */ | ||
--md-primary-fg-color--light: #9574CD; | ||
} | ||
|
||
/* Brighter links for dark mode */ | ||
[data-md-color-scheme=slate] { | ||
/* https://github.com/squidfunk/mkdocs-material/blob/9.1.2/src/assets/stylesheets/main/_colors.scss#L91-L92 */ | ||
--md-typeset-a-color: var(--md-primary-fg-color--light); | ||
} | ||
|
||
/* FiraCode https://github.com/tonsky/FiraCode */ | ||
code { font-family: 'Fira Code', monospace; } | ||
|
||
@supports (font-variation-settings: normal) { | ||
code { font-family: 'Fira Code VF', monospace; } | ||
} | ||
|
||
/* https://github.com/squidfunk/mkdocs-material/issues/1522 */ | ||
.md-typeset h5 { | ||
color: var(--md-default-fg-color); | ||
text-transform: none; | ||
} | ||
|
||
/* https://facelessuser.github.io/pymdown-extensions/extensions/tabbed/ */ | ||
.md-typeset .tabbed-set { | ||
border: 1px solid #eee; | ||
} | ||
.md-typeset .tabbed-content { | ||
padding: 0.5em 1em; | ||
} | ||
|
||
/* https://facelessuser.github.io/pymdown-extensions/extensions/progressbar/ */ | ||
|
||
/* TODO: replace all this when there is an updated example https://github.com/facelessuser/pymdown-extensions/issues/912 */ | ||
|
||
/* Normal colors */ | ||
:root > * { | ||
--md-progress-100: #00e676; | ||
--md-progress-80: #00e676; | ||
--md-progress-60: #fbc02d; | ||
--md-progress-40: #ff9100; | ||
--md-progress-20: #ff5252; | ||
--md-progress-0: #ff1744; | ||
} | ||
|
||
.md-typeset { | ||
/* Progress Bars */ | ||
/* Stripe animation */ } | ||
.md-typeset .progress-label { | ||
position: absolute; | ||
width: 100%; | ||
margin: 0; | ||
color: var(--md-default-fg-color); | ||
font-weight: 700; | ||
line-height: 1.4rem; | ||
white-space: nowrap; | ||
text-align: center; | ||
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); } | ||
.md-typeset .progress-bar { | ||
float: left; | ||
height: 1.2rem; | ||
background-color: #2979ff; } | ||
.md-typeset .candystripe-animate .progress-bar { | ||
-webkit-animation: animate-stripes 3s linear infinite; | ||
animation: animate-stripes 3s linear infinite; } | ||
.md-typeset .progress { | ||
position: relative; | ||
display: block; | ||
width: 100%; | ||
height: 1.2rem; | ||
margin: 0.5rem 0; | ||
background-color: var(--md-default-fg-color--lightest); } | ||
.md-typeset .progress.thin { | ||
height: 0.4rem; | ||
margin-top: 0.9rem; } | ||
.md-typeset .progress.thin .progress-label { | ||
margin-top: -0.4rem; } | ||
.md-typeset .progress.thin .progress-bar { | ||
height: 0.4rem; } | ||
.md-typeset .progress.candystripe .progress-bar { | ||
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); | ||
background-size: 2rem 2rem; } | ||
.md-typeset .progress-100plus .progress-bar { | ||
background-color: var(--md-progress-100); } | ||
.md-typeset .progress-80plus .progress-bar { | ||
background-color: var(--md-progress-80); } | ||
.md-typeset .progress-60plus .progress-bar { | ||
background-color: var(--md-progress-60); } | ||
.md-typeset .progress-40plus .progress-bar { | ||
background-color: var(--md-progress-40); } | ||
.md-typeset .progress-20plus .progress-bar { | ||
background-color: var(--md-progress-20); } | ||
.md-typeset .progress-0plus .progress-bar { | ||
background-color: var(--md-progress-0); } | ||
|
||
@-webkit-keyframes animate-stripes { | ||
0% { | ||
background-position: 0 0; } | ||
100% { | ||
background-position: 6rem 0; } } | ||
|
||
@keyframes animate-stripes { | ||
0% { | ||
background-position: 0 0; } | ||
100% { | ||
background-position: 6rem 0; } } | ||
|
||
/* END TODO */ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<mxfile host="Electron" modified="2020-09-02T11:58:59.877Z" agent="5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/13.6.2 Chrome/83.0.4103.122 Electron/9.2.0 Safari/537.36" etag="9IZiNSQKIsKtMU9ou_eT" version="13.6.2" type="device"><diagram id="NqSSJryqJ9FrGxTjGl6g" name="Page-1">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</diagram></mxfile> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<mxfile host="www.draw.io" modified="2020-08-14T10:37:32.835Z" agent="5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36" etag="Sjvv1Ic695VzquAxXkQJ" version="13.1.5" type="device"><diagram id="NqSSJryqJ9FrGxTjGl6g" name="Page-1">7VtBl6I4EP41vj01jxAIcOxuZ2bf29m3s9uHnT1GiMh2JC7Ebp1fv4kENARFbUR7ZrwIBSThq6qvKpUwgo/z1accL2a/s5jQkWPHqxEcjxwH+CESf1KyLiUIuKUgydNY3bQVPKXfiBLaSrpMY1JoN3LGKE8XujBiWUYirslwnrNX/bYpo3qvC5wQQ/AUYWpK/05jPiulgWdv5b+SNJlVPQNbXZnj6mYlKGY4Zq87IvhhBB9zxnh5NF89EirBq3Apn/u452o9sJxk/JgH/nz4QtdJzlfoKf7tKwkX30J2B8tWXjBdqhdWg+XrCoGcLbOYyEbsEXx4naWcPC1wJK++Cp0L2YzPqTgD4nCaUvrIKMs3z8KPm5+QFzxnz2TnCoLO+B7VVypsZRtqSCTnZLX3XUGNoDA9wuaE52txi3rgLlSgK6sDlRJetzp0Kx3OdvTnVEKs7Cap295CKw4Uuicg7Xh9Q80y/hHPUyrfcZrmeOMFMVGXlCsBdJZWYlzMNgPpSSGgoRCnRSGgTSEAXkohoFsfohXBMxJR4bwLKYwoW8Zv0k0PYLpOw7p9E0wnaLNu92LWbYC5LEj+SyFkGeGvLH82wBXvz3XUdHPMWEYatqtEmKZJJpUh8CJC/iDRTAVn36sL8zSOZTetatKdbNdV/OE15x2puYspzjUUd5/Il7l9baEjOFCNv3JJneliLJuYsTz9Jq5hqvroI/zUrHUo/gzqoGb0KbL5QkhoWnCSCcU0NV5R3iJnESmKbtKb4Og52ejrjyWnabaL/BlKsy8QdoDbEnacFkWgS+nBN/SQZgXHmcDUscFNKKEH3B27Ee5hC+6wzQEuhXt4CHcz8n8vuKNr4w7MNGsH+Ox7BR625bfDAm+mZJZl3XBcP3IucwkvCa+uLDMNi8lLuicoXGqa2AO0HvC6id8eFFoz86mhHW4Gfglo27h9WGjRfmhNZn9H0Lay97DQmnniT/be4wdt7D2ssszkcpwWEXuRsypEpYYmuaY49N9Sln038NwVG3zuJdXDxWoDUnVdHCXyv3SrwtA/yeJ7WeSWiqS4KNLoLDeC4pziCaEPdTLVMBdCJ5teKitpzNUcc4Jtb361ykls1NkbChcvxpZ5RA4ArRTPcZ4QfkghBw3ItpwAubrDmybUVoysZDmhmKcv+gu1mZUawxeWypJKXQVq5B8gaFhmCYR6ytkp6Tcb8hoNNYulJVJGQ8Jm8HrntoW8oTgwYNDox9eWGsRB2WL707V/qKerOXDVO5tOC8JHTS+sFfeGqmRVQzhU4+3HhVC3C2XiZb4qytyc/CNPLK86Ha92L47X1dkq5V/VYOTxzlPibPuQPKme6dHn/GN9zu1yOuQC3emCIZ0ONktynmcFgQM9J3QB8JGLzvVBZAWe6yJx4IEQ6MQCgtByEXB9T1yBwIPOUQ667WUAJzFTDWG5VC6m9hO85ADTqCV4CfP8LF1Gd7jjM5OciN7xRFUL4YOiMdG49zDyxi1B7sjSo9PpzIeDXUt+o9an1WhHdTKy65IHOGx/qdm2oOcj3bF6cRggSMbX2kVwMOI+ZnFuMOI+g4DPJfseiTs8lri9GyduVyduBwILAZH1Q9FFYJ9N3B5qtGsflzwNys1mEe9nAnOiH1QV6G5HQO/MEZqLhedafr1KdkuWb9aWTrb87hB+hF+415nClqZ1KOzbvq/nmqE3pDUCF1mub3t1Dq0Ppt7Ad6pxAoOWfcs7yjz3z2qvYcCumcJ8WRazvgpCqr5E4p4arBbl3kOa3pZ4d/v6NrnvP0c/HDmEswLoNYogoBcvvIPIQnr2f+eElh/oDV3OzKFZYhEwTq01FpbSNKVqcTdm0XK+gbRzdbcsNH+eXIjT37jNp1GJNquIYQsBX2xvCexh1nSLMbNKs7qDZudc+cpB02kWUs9N4UAjF2xuW34fIdLkjk+yJ2GvAuTo2pEtL9X/Iwc22LWSYjsBvEhcA/pMyxFz/sGqT1WR9vvk0RumR7Bv+9rJ9Nj83CBoFIl6WhiD7d10rIsNYMHmfqKnaEbipTDfflhVtBY9y2G8o3nDLZb3S645PHXwdS7si2Id14J6gd8ZjmLN8s5fBGuTWWVnYjKRJstcvCkz9xRJG6u0qlSnb01hOZ+xhGWYfmZsoUzwX8L5WtkNXnJ2CnMbn0zVtnHCXot95tU00spXKJnyK5WhuhYHoPg1rPONsWAA42vZEog5jlnyQ0xbQdg5bQVg0HlrYOhDfYRkL+hyPkmzZK9OojVNBdT5GTrZt3P8XAIwv2Td993lKZ9u7qEK47OlnPGSI+E4tE+Ks28xqWoe27IXFbWYEICB5Xsnm5E43X4nXbLA9mtz+OF/</diagram></mxfile> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.