commit
f60fd5583b
|
@ -0,0 +1,50 @@
|
|||
// Count tag elements
|
||||
function countTag(tag) {
|
||||
return $(".visible[data-tags*='" + tag + "']").length
|
||||
}
|
||||
|
||||
function getFilterCounts() {
|
||||
$('#plugin-filters label').each(function() {
|
||||
var tagName = $('input', this).attr('name').replace(/[\W]+/, "-");
|
||||
var tagCount = countTag(tagName);
|
||||
$(this).attr('data-count', '(' + tagCount + ')');
|
||||
if (tagCount <= 0) {
|
||||
$(this).fadeTo(200, 0.25);
|
||||
} else {
|
||||
$(this).fadeTo(400, 1.0);
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
// Get initial filter count on page load
|
||||
getFilterCounts()
|
||||
|
||||
$("#plugin-filters input").click(function() {
|
||||
|
||||
// List of tags to hide
|
||||
var tagArray = $("#plugin-filters input:checkbox:checked").map(function(){
|
||||
return $(this).attr('name').replace(/[\W]+/, "-");
|
||||
}).get();
|
||||
|
||||
// List of tags to restore
|
||||
var restoreArray = $("#plugin-filters input:checkbox:not(:checked)").map(function(){
|
||||
return $(this).attr('name').replace(/[\W]+/, "-");
|
||||
}).get();
|
||||
|
||||
// Actions for filter select
|
||||
if ( $(this).is(':checked') ) {
|
||||
$.each( tagArray, function( index, value ) {
|
||||
$(".plugin-card.visible:not([data-tags~='" + value + "'])").removeClass('visible').fadeOut()
|
||||
})
|
||||
} else {
|
||||
$.each( restoreArray, function( index, value ) {
|
||||
$(".plugin-card:not(.visible)[data-tags~='" + value + "']").addClass('visible').fadeIn()
|
||||
})
|
||||
$.each( tagArray, function( index, value ) {
|
||||
$(".plugin-card.visible:not([data-tags~='" + value + "'])").removeClass('visible').hide()
|
||||
})
|
||||
}
|
||||
|
||||
// Refresh filter count
|
||||
getFilterCounts()
|
||||
});
|
|
@ -61,7 +61,7 @@
|
|||
|
||||
p,li {
|
||||
color: $article-text;
|
||||
line-height: 1.6rem;
|
||||
line-height: 1.7rem;
|
||||
}
|
||||
|
||||
p {
|
||||
|
@ -111,6 +111,7 @@
|
|||
"article/tabbed-content",
|
||||
"article/tables",
|
||||
"article/tags",
|
||||
"article/telegraf-plugins",
|
||||
"article/truncate",
|
||||
"article/warn";
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ code,pre {
|
|||
|
||||
p,li,table,h2,h3,h4,h5,h6 {
|
||||
code {
|
||||
padding: .15rem .45rem .25rem;
|
||||
padding: .1rem .4rem .2rem;
|
||||
border-radius: $radius;
|
||||
color: $article-code;
|
||||
white-space: nowrap;
|
||||
|
|
|
@ -0,0 +1,217 @@
|
|||
/////////////////////// Styles for Telegraf plugin cards ///////////////////////
|
||||
|
||||
.plugin-card {
|
||||
position: relative;
|
||||
padding: 1rem 1.5rem;
|
||||
margin-bottom: .5rem;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
background: rgba($body-bg, .4);
|
||||
border-radius: $radius;
|
||||
|
||||
h3 {
|
||||
padding: 0;
|
||||
margin-top: .25rem;
|
||||
}
|
||||
|
||||
&.new h3:after {
|
||||
content: "New";
|
||||
margin-left: .3rem;
|
||||
padding: .25rem .5rem;
|
||||
font-style: italic;
|
||||
color: $nav-active;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
p {
|
||||
&.meta {
|
||||
margin: .75rem 0;
|
||||
font-weight: $medium;
|
||||
line-height: 1.75rem;
|
||||
|
||||
.deprecated {
|
||||
margin-left: .5rem;
|
||||
font-style: italic;
|
||||
color: $article-code-accent7;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
& .info {
|
||||
& > p:last-child { margin-bottom: .5rem; }
|
||||
& > ul:last-child { margin-bottom: .5rem; }
|
||||
& > ol:last-child { margin-bottom: .5rem; }
|
||||
}
|
||||
|
||||
.github-link {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0.5rem;
|
||||
opacity: 0;
|
||||
transition: opacity .2s, background .2s, color 2s;
|
||||
|
||||
.icon-github {
|
||||
font-size: 1.2rem;
|
||||
margin: 0 .25rem 0 0;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover {
|
||||
.github-link { opacity: 1; }
|
||||
}
|
||||
|
||||
// Special use-case for using block quotes in the yaml provided by the data file
|
||||
blockquote {
|
||||
border-color: $article-note-base;
|
||||
background: rgba($article-note-base, .12);
|
||||
h3,h4,h5,h6 { color: $article-note-heading; }
|
||||
p, li {
|
||||
color: $article-note-text;
|
||||
font-size: 1rem;
|
||||
font-style: normal;
|
||||
}
|
||||
strong { color: inherit; }
|
||||
a {
|
||||
color: $article-note-link;
|
||||
code:after {
|
||||
border-color: transparent rgba($article-note-code, .35) transparent transparent;
|
||||
}
|
||||
&:hover {
|
||||
color: $article-note-link-hover;
|
||||
code:after {
|
||||
border-color: transparent $article-note-link-hover transparent transparent;
|
||||
}
|
||||
}
|
||||
}
|
||||
ol li:before { color: $article-note-text; }
|
||||
code, pre{
|
||||
color: $article-note-code;
|
||||
background: $article-note-code-bg;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//////////////////////////////// Plugin Filters ////////////////////////////////
|
||||
|
||||
#plugin-filters {
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
align-items: flex-start;
|
||||
|
||||
.filter-category {
|
||||
flex: 1 1 200px;
|
||||
margin: 0 1.25rem 1.25rem 0;
|
||||
max-width: 33%;
|
||||
|
||||
&.two-columns {
|
||||
flex: 1 2 400px;
|
||||
max-width: 66%;
|
||||
.filter-list {
|
||||
columns: 2;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
h5 {
|
||||
border-bottom: 1px solid rgba($article-text, .25);
|
||||
padding-bottom: .65rem;
|
||||
}
|
||||
|
||||
.filter-list {
|
||||
padding: 0;
|
||||
margin: .5rem 0 0;
|
||||
list-style: none;
|
||||
li {
|
||||
margin: 0;
|
||||
line-height: 1.35rem;
|
||||
}
|
||||
}
|
||||
|
||||
label {
|
||||
display: block;
|
||||
padding: .25rem 0;
|
||||
color: $article-text;
|
||||
position: relative;
|
||||
|
||||
&:after {
|
||||
content: attr(data-count);
|
||||
margin-left: .25rem;
|
||||
font-size: .85rem;
|
||||
opacity: .5;
|
||||
}
|
||||
}
|
||||
|
||||
.checkbox {
|
||||
display: inline-block;
|
||||
height: 1.15em;
|
||||
width: 1.15em;
|
||||
background: rgba($article-text, .05);
|
||||
margin-right: .3rem;
|
||||
vertical-align: text-top;
|
||||
border-radius: $radius;
|
||||
cursor: pointer;
|
||||
border: 1.5px solid rgba($article-text, .2);
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
input[type='checkbox'] {
|
||||
margin-right: -1.1rem ;
|
||||
padding: 0;
|
||||
vertical-align: top;
|
||||
opacity: 0;
|
||||
cursor: pointer;
|
||||
|
||||
& + .checkbox:after {
|
||||
content: "";
|
||||
display: block;
|
||||
position: absolute;
|
||||
height: .5rem;
|
||||
width: .5rem;
|
||||
border-radius: 50%;
|
||||
background: $article-link;
|
||||
top: .65rem;
|
||||
left: .35rem;
|
||||
opacity: 0;
|
||||
transform: scale(2);
|
||||
transition: all .2s;
|
||||
}
|
||||
|
||||
&:checked + .checkbox:after {
|
||||
opacity: 1;
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
///////////////////////////////// MEDIA QUERIES ////////////////////////////////
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
@media(max-width: 1100px) {
|
||||
#plugin-filters {
|
||||
.filter-category {
|
||||
max-width: 50%;
|
||||
&.two-columns, &.three-columns {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include media(small) {
|
||||
#plugin-filters{
|
||||
.filter-category {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.plugin-card {
|
||||
.github-link {
|
||||
opacity: 1;
|
||||
padding: .25rem .35rem .35rem;
|
||||
line-height: 0;
|
||||
.icon-github { margin: 0; }
|
||||
.hide { display: none; }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,10 +1,10 @@
|
|||
@font-face {
|
||||
font-family: 'icomoon';
|
||||
src: url('fonts/icomoon.eot?972u0y');
|
||||
src: url('fonts/icomoon.eot?972u0y#iefix') format('embedded-opentype'),
|
||||
url('fonts/icomoon.ttf?972u0y') format('truetype'),
|
||||
url('fonts/icomoon.woff?972u0y') format('woff'),
|
||||
url('fonts/icomoon.svg?972u0y#icomoon') format('svg');
|
||||
src: url('fonts/icomoon.eot?e8u66e');
|
||||
src: url('fonts/icomoon.eot?e8u66e#iefix') format('embedded-opentype'),
|
||||
url('fonts/icomoon.ttf?e8u66e') format('truetype'),
|
||||
url('fonts/icomoon.woff?e8u66e') format('woff'),
|
||||
url('fonts/icomoon.svg?e8u66e#icomoon') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
@ -216,6 +216,9 @@
|
|||
.icon-loop2:before {
|
||||
content: "\ea2e";
|
||||
}
|
||||
.icon-github:before {
|
||||
content: "\eab0";
|
||||
}
|
||||
.icon-tux:before {
|
||||
content: "\eabd";
|
||||
}
|
||||
|
|
|
@ -0,0 +1,40 @@
|
|||
---
|
||||
title: Telegraf plugins
|
||||
description: >
|
||||
Telegraf is a plugin-driven agent that collects, processes, aggregates, and writes metrics.
|
||||
It supports four categories of plugins including input, output, aggregator, and processor.
|
||||
View and search all available Telegraf plugins.
|
||||
menu: v2_0_ref
|
||||
weight: 6
|
||||
---
|
||||
|
||||
Telegraf is a plugin-driven agent that collects, processes, aggregates, and writes metrics.
|
||||
It supports four categories of plugins including input, output, aggregator, and processor.
|
||||
|
||||
- [Input plugins](#input-plugins)
|
||||
- [Output plugins](#output-plugins)
|
||||
- [Aggregator plugins](#aggregator-plugins)
|
||||
- [Processor plugins](#processor-plugins)
|
||||
|
||||
{{< telegraf/filters >}}
|
||||
|
||||
## Input plugins
|
||||
Telegraf input plugins are used with the InfluxData time series platform to collect
|
||||
metrics from the system, services, or third party APIs.
|
||||
|
||||
{{< telegraf/plugins type="input" >}}
|
||||
|
||||
## Output plugins
|
||||
Telegraf processor plugins write metrics to various destinations.
|
||||
|
||||
{{< telegraf/plugins type="output" >}}
|
||||
|
||||
## Aggregator plugins
|
||||
Telegraf aggregator plugins create aggregate metrics (for example, mean, min, max, quantiles, etc.)
|
||||
|
||||
{{< telegraf/plugins type="aggregator" >}}
|
||||
|
||||
## Processor plugins
|
||||
Telegraf output plugins transform, decorate, and filter metrics.
|
||||
|
||||
{{< telegraf/plugins type="processor" >}}
|
|
@ -0,0 +1,30 @@
|
|||
filters:
|
||||
- category: Plugin type
|
||||
values:
|
||||
- Input
|
||||
- Output
|
||||
- Aggregator
|
||||
- Processor
|
||||
- category: Plugin category
|
||||
values:
|
||||
- Applications
|
||||
- Build & Deploy
|
||||
- Cloud
|
||||
- Containers
|
||||
- Data Stores
|
||||
- IoT
|
||||
- Logging
|
||||
- Messaging
|
||||
- Networking
|
||||
- Servers
|
||||
- Systems
|
||||
- Web
|
||||
- category: Operating system
|
||||
values:
|
||||
- Linux
|
||||
- macOS
|
||||
- Windows
|
||||
- category: Status
|
||||
values:
|
||||
- New
|
||||
- Deprecated
|
File diff suppressed because it is too large
Load Diff
|
@ -1 +1,2 @@
|
|||
stable_version: v2.0
|
||||
telegraf_version: 1.10.0
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{{ $versionSelector := resources.Get "js/version-selector.js" }}
|
||||
{{ $contentInteractions := resources.Get "js/content-interactions.js" }}
|
||||
{{ $searchInteractions := resources.Get "js/search-interactions.js" }}
|
||||
{{ $footerjs := slice $versionSelector $contentInteractions $searchInteractions | resources.Concat "js/footer.bundle.js" }}
|
||||
{{ $telegrafFilters := resources.Get "js/telegraf-filters.js" }}
|
||||
{{ $footerjs := slice $versionSelector $contentInteractions $searchInteractions $telegrafFilters | resources.Concat "js/footer.bundle.js" }}
|
||||
|
||||
<script type="text/javascript" src="{{ $footerjs.RelPermalink }}" ></script>
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
<div id="plugin-filters">
|
||||
|
||||
{{ range .Site.Data.telegraf_plugin_filters.filters }}
|
||||
{{ $numValues := len .values }}
|
||||
<div class="filter-category{{ if gt $numValues 6 }} two-columns{{ else if gt $numValues 12 }} three-columns{{ end }}">
|
||||
<h5>{{ .category }}</h5>
|
||||
<ul class="filter-list">
|
||||
{{ range .values }}
|
||||
<li>
|
||||
<label for="{{ lower . }}" data-count="(0)">
|
||||
<input type="checkbox" id="{{ lower . }}" name="{{ lower . }}">
|
||||
<span class="checkbox"></span>
|
||||
{{ . }}
|
||||
</label>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
{{ end }}
|
||||
|
||||
</div>
|
|
@ -0,0 +1,18 @@
|
|||
{{ $type := .Get "type" }}
|
||||
{{ $telegrafVersion := replaceRE `\.[^.]*$` "" .Site.Data.versions.telegraf_version }}
|
||||
|
||||
{{ range (index .Site.Data.telegraf_plugins $type ) }}
|
||||
{{ $pluginTags := delimit .tags " " }}
|
||||
{{ $minorVer := replaceRE `\.[^.]*$` "" .introduced }}
|
||||
<div class="plugin-card visible{{ if eq $minorVer $telegrafVersion }} new{{ end }}" id="{{ .id }}" data-tags="{{ $type }} {{ lower $pluginTags }} {{ if eq $minorVer $telegrafVersion }}new{{ end }} {{ if .deprecated }}deprecated{{ end }} ">
|
||||
<div class="info">
|
||||
<h3 id="{{ .id }}">{{ .name }}</h3>
|
||||
<p class="meta">
|
||||
Plugin ID: <code>{{ $type }}s.{{ .id }}</code><br/>
|
||||
Telegraf {{ if not .deprecated }}{{ .introduced }}+{{ else }}{{ .introduced }} - {{ .deprecated }} <span class="deprecated">Depricated</span>{{ end }}
|
||||
</p>
|
||||
<p>{{ .description | markdownify | safeHTML }}</p>
|
||||
</div>
|
||||
<a class="btn github-link" href="{{ .link }}" target="_blank"><span class="icon-github"></span> <span class="hide">View</span></a>
|
||||
</div>
|
||||
{{ end }}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -71,6 +71,7 @@
|
|||
<glyph unicode="" glyph-name="map2" d="M672 576l-320 128-352-128v-768l352 128 320-128 352 128v768l-352-128zM384 622.27l256-102.4v-630.138l-256 102.398v630.14zM64 531.172l256 93.090v-631.8l-256-93.088v631.798zM960-19.172l-256-93.092v631.8l256 93.090v-631.798z" />
|
||||
<glyph unicode="" glyph-name="heart" d="M755.188 704c-107.63 0-200.258-87.554-243.164-179-42.938 91.444-135.578 179-243.216 179-148.382 0-268.808-120.44-268.808-268.832 0-301.846 304.5-380.994 512.022-679.418 196.154 296.576 511.978 387.206 511.978 679.418 0 148.392-120.43 268.832-268.812 268.832z" />
|
||||
<glyph unicode="" glyph-name="loop2" d="M889.68 601.68c-93.608 102.216-228.154 166.32-377.68 166.32-282.77 0-512-229.23-512-512h96c0 229.75 186.25 416 416 416 123.020 0 233.542-53.418 309.696-138.306l-149.696-149.694h352v352l-134.32-134.32zM928 256c0-229.75-186.25-416-416-416-123.020 0-233.542 53.418-309.694 138.306l149.694 149.694h-352v-352l134.32 134.32c93.608-102.216 228.154-166.32 377.68-166.32 282.77 0 512 229.23 512 512h-96z" />
|
||||
<glyph unicode="" glyph-name="github" d="M512.008 755.358c-282.738 0-512.008-229.218-512.008-511.998 0-226.214 146.704-418.132 350.136-485.836 25.586-4.738 34.992 11.11 34.992 24.632 0 12.204-0.48 52.542-0.696 95.324-142.448-30.976-172.504 60.41-172.504 60.41-23.282 59.176-56.848 74.916-56.848 74.916-46.452 31.778 3.51 31.124 3.51 31.124 51.4-3.61 78.476-52.766 78.476-52.766 45.672-78.27 119.776-55.64 149.004-42.558 4.588 33.086 17.852 55.68 32.506 68.464-113.73 12.942-233.276 56.85-233.276 253.032 0 55.898 20.004 101.574 52.76 137.428-5.316 12.9-22.854 64.972 4.952 135.5 0 0 43.006 13.752 140.84-52.49 40.836 11.348 84.636 17.036 128.154 17.234 43.502-0.198 87.336-5.886 128.256-17.234 97.734 66.244 140.656 52.49 140.656 52.49 27.872-70.528 10.35-122.6 5.036-135.5 32.82-35.856 52.694-81.532 52.694-137.428 0-196.654-119.778-239.95-233.79-252.624 18.364-15.89 34.724-47.046 34.724-94.812 0-68.508-0.596-123.644-0.596-140.508 0-13.628 9.222-29.594 35.172-24.566 203.322 67.776 349.842 259.626 349.842 485.768 0 282.78-229.234 511.998-511.992 511.998z" />
|
||||
<glyph unicode="" glyph-name="tux" d="M567.656 31.084c-81.944-38.118-158.158-37.716-209.34-34.020-61.052 4.41-110.158 21.124-131.742 35.732-13.3 9.006-31.384 5.522-40.39-7.782-9.004-13.302-5.52-31.386 7.782-40.39 34.698-23.486 96.068-40.954 160.162-45.58 10.866-0.784 22.798-1.278 35.646-1.278 55.782 0 126.626 5.316 202.42 40.57 14.564 6.778 20.878 24.074 14.104 38.64-6.776 14.566-24.076 20.872-38.642 14.108zM890.948 74.184c2.786 252.688 28.762 730.206-454.97 691.612-477.6-38.442-350.964-542.968-358.082-711.95-6.308-89.386-35.978-198.648-77.896-309.846h129.1c13.266 47.122 23.024 93.72 27.232 138.15 7.782-5.428 16.108-10.674 24.994-15.7 14.458-8.518 26.884-19.844 40.040-31.834 30.744-28.018 65.59-59.774 133.712-63.752 4.572-0.262 9.174-0.394 13.676-0.394 68.896 0 116.014 30.154 153.878 54.382 18.14 11.612 33.818 21.64 48.564 26.452 41.91 13.12 78.532 34.296 105.904 61.252 4.276 4.208 8.242 8.538 11.962 12.948 15.246-55.878 36.118-118.758 59.288-181.504h275.65c-66.174 102.224-134.436 202.374-133.052 330.184zM124.11 211.648c0 0.016 0 0.030-0.002 0.046-4.746 82.462 34.71 151.832 88.126 154.936 53.412 3.106 100.56-61.228 105.304-143.692 0-0.014 0.004-0.030 0.004-0.044 0.256-4.446 0.368-8.846 0.37-13.206-16.924-4.256-32.192-10.436-45.872-17.63-0.052 0.612-0.092 1.216-0.152 1.83 0 0.008 0 0.018 0 0.026-4.57 46.81-29.572 82.16-55.852 78.958-26.28-3.204-43.88-43.75-39.312-90.558 0-0.010 0.004-0.018 0.004-0.026 1.992-20.408 7.868-38.636 16.042-52.444-2.034-1.604-7.784-5.812-14.406-10.656-4.97-3.634-11.020-8.058-18.314-13.43-19.882 26.094-33.506 63.58-35.94 105.89zM665.26 7.822c-1.9-43.586-58.908-84.592-111.582-101.044l-0.296-0.096c-21.9-7.102-41.428-19.6-62.104-32.83-34.732-22.224-70.646-45.208-122.522-45.208-3.404 0-6.894 0.104-10.326 0.296-47.516 2.778-69.742 23.032-97.88 48.676-14.842 13.526-30.19 27.514-49.976 39.124l-0.424 0.244c-42.706 24.104-69.212 54.082-70.908 80.194-0.842 12.98 4.938 24.218 17.182 33.4 26.636 19.972 44.478 33.022 56.284 41.658 13.11 9.588 17.068 12.48 20 15.264 2.096 1.986 4.364 4.188 6.804 6.562 24.446 23.774 65.36 63.562 128.15 63.562 38.404 0 80.898-14.8 126.17-43.902 21.324-13.878 39.882-20.286 63.38-28.4 16.156-5.578 34.468-11.902 58.992-22.404l0.396-0.164c22.88-9.404 49.896-26.564 48.66-54.932zM652.646 110.194c-4.4 2.214-8.974 4.32-13.744 6.286-22.106 9.456-39.832 15.874-54.534 20.998 8.116 15.894 13.16 35.72 13.624 57.242 0 0.010 0 0.022 0 0.030 1.126 52.374-25.288 94.896-58.996 94.976-33.71 0.078-61.95-42.314-63.076-94.686 0-0.010 0-0.018 0-0.028-0.038-1.714-0.042-3.416-0.020-5.11-20.762 9.552-41.18 16.49-61.166 20.76-0.092 1.968-0.204 3.932-0.244 5.92 0 0.016 0 0.036 0 0.050-1.938 95.412 56.602 174.39 130.754 176.402 74.15 2.014 135.828-73.7 137.772-169.11 0-0.018 0-0.038 0-0.052 0.874-43.146-10.66-82.866-30.37-113.678z" />
|
||||
<glyph unicode="" glyph-name="appleinc" d="M791.498 223.908c-1.294 129.682 105.758 191.876 110.542 194.966-60.152 88.020-153.85 100.078-187.242 101.472-79.742 8.074-155.596-46.948-196.066-46.948-40.368 0-102.818 45.754-168.952 44.552-86.916-1.292-167.058-50.538-211.812-128.38-90.304-156.698-23.126-388.84 64.89-515.926 43.008-62.204 94.292-132.076 161.626-129.58 64.842 2.588 89.362 41.958 167.756 41.958s100.428-41.958 169.050-40.67c69.774 1.296 113.982 63.398 156.692 125.796 49.39 72.168 69.726 142.038 70.924 145.626-1.548 0.706-136.060 52.236-137.408 207.134zM662.562 604.478c35.738 43.358 59.86 103.512 53.28 163.522-51.478-2.096-113.878-34.29-150.81-77.55-33.142-38.376-62.148-99.626-54.374-158.436 57.466-4.484 116.128 29.204 151.904 72.464z" />
|
||||
<glyph unicode="" glyph-name="windows8" d="M0.35 256l-0.35 312.074 384 52.144v-364.218zM448 629.518l511.872 74.482v-448h-511.872zM959.998 192l-0.126-448-511.872 72.016v375.984zM384-175.836l-383.688 52.594-0.020 315.242h383.708z" />
|
||||
|
|
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 52 KiB |
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue