Skip to content

Commit

Permalink
Style inline images as blocks with a border
Browse files Browse the repository at this point in the history
  • Loading branch information
chalin committed Feb 17, 2023
1 parent 7acee87 commit c46fdd2
Show file tree
Hide file tree
Showing 15 changed files with 34 additions and 55 deletions.
7 changes: 7 additions & 0 deletions assets/scss/_styles_project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -244,3 +244,10 @@
height: auto;
}
}

.td-content img:not(.img-initial) {
display: block;
border: $border-width solid $border-color;
margin-bottom: $paragraph-margin-bottom;
@extend .td-max-width-on-larger-screens;
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "Why and How eBay Pivoted to OpenTelemetry"
title: Why and How eBay Pivoted to OpenTelemetry
linkTitle: eBay OpenTelemetry
date: 2022-12-19
author: "[Vijay Samuel](https://github.com/vjsamuel) (eBay)"
Expand Down Expand Up @@ -134,6 +134,7 @@ Filebeat and Auditbeat, would interface with the Sherlock.io platform when
deployed as a DaemonSet:

![daemonset](daemonset.jpeg)
{.border-0}

## Moving To Cluster Local Scrapes

Expand Down Expand Up @@ -177,6 +178,7 @@ that are monitored by that instance alone, the failure percentage is reduced to
The new deployment pattern can be visualized as follows:

![clusterlocal](cluster-local.jpeg)
{.border-0}

## Decoupling Autodiscover

Expand Down Expand Up @@ -250,6 +252,7 @@ filereloadreceiver in place, we were able to generate new configurations for the
OpenTelemetry Collector as follows.

![config](config.jpeg)
{.border-0}

As shown above, we were able to keep the end user contract of Pod/Namespace
annotations the same and simply swap the agent under the hood. This greatly
Expand Down
12 changes: 6 additions & 6 deletions content/en/docs/collector/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ Familiarity with the following pages is assumed:

The Collector consists of three components that access telemetry data:

- <img width="32" src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Receivers.svg"></img>
- <img width="32" class="img-initial" src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Receivers.svg"></img>
[Receivers](#receivers)
- <img width="32" src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Processors.svg"></img>
- <img width="32" class="img-initial" src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Processors.svg"></img>
[Processors](#processors)
- <img width="32" src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Exporters.svg"></img>
- <img width="32" class="img-initial" src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Exporters.svg"></img>
[Exporters](#exporters)

These components once configured must be enabled via pipelines within the
Expand Down Expand Up @@ -168,7 +168,7 @@ service:

## Receivers

<img width="35" src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Receivers.svg"></img>
<img width="35" class="img-initial" src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Receivers.svg"></img>

A receiver, which can be push or pull based, is how data gets into the
Collector. Receivers may support one or more
Expand Down Expand Up @@ -245,7 +245,7 @@ receivers:

## Processors

<img width="35" src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Processors.svg"></img>
<img width="35" class="img-initial" src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Processors.svg"></img>

Processors are run on data between being received and being exported. Processors
are optional though
Expand Down Expand Up @@ -326,7 +326,7 @@ processors:

## Exporters

<img width="35" src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Exporters.svg"></img>
<img width="35" class="img-initial" src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Exporters.svg"></img>

An exporter, which can be push or pull based, is how you send data to one or
more backends/destinations. Exporters may support one or more
Expand Down
6 changes: 3 additions & 3 deletions content/en/docs/concepts/data-collection.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ For information on how to use the Collector see the

The Collector is made up of the following components:

- <img width="32" src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Receivers.svg"></img>
- <img width="32" class="img-initial" src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Receivers.svg"></img>
`receivers`: How to get data into the Collector; these can be push or pull
based
- <img width="32" src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Processors.svg"></img>
- <img width="32" class="img-initial" src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Processors.svg"></img>
`processors`: What to do with received data
- <img width="32" src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Exporters.svg"></img>
- <img width="32" class="img-initial" src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Exporters.svg"></img>
`exporters`: Where to send received data; these can be push or pull based

These components are enabled through `pipelines`. Multiple instances of
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/instrumentation/cpp/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: C++
weight: 11
description: >
<img width="35"
<img width="35" class="img-initial"
src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/C++_SDK.svg"
alt="C++"></img> A language-specific implementation of OpenTelemetry in C++.
---
Expand Down
9 changes: 1 addition & 8 deletions content/en/docs/instrumentation/erlang/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,12 @@
title: Erlang/Elixir
weight: 14
description: >
<img width="35"
<img width="35" class="img-initial"
src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Erlang_SDK.svg"
alt="Erlang/Elixir"></img>
A language-specific implementation of OpenTelemetry in Erlang/Elixir.
---

<!--
You can see & update the `lang_instrumentation_index_head` shortcode in
/layouts/shortcodes/lang_instrumentation_index_head.md
The data (name, status) is located at
/data/instrumentation.yaml
-->
{{% lang_instrumentation_index_head "erlang" %}}
Packages of the API, SDK and OTLP exporter are published to
[hex.pm](https://hex.pm) as
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/instrumentation/java/_index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Java
description: >-
<img width="35"
<img width="35" class="img-initial"
src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Java_SDK.svg"
alt="Java"></img>
A language-specific implementation of OpenTelemetry in Java.
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/instrumentation/js/_index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: JavaScript
description: >-
<img width="35"
<img width="35" class="img-initial"
src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/JS_SDK.svg"
alt="JavaScript"></img>
A language-specific implementation of OpenTelemetry in JavaScript (for Node.js & the browser).
Expand Down
9 changes: 1 addition & 8 deletions content/en/docs/instrumentation/net/_index.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,14 @@
---
title: .NET
description: >
<img width="35"
<img width="35" class="img-initial"
src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/.NET.svg"
alt=".NET"></img>
A language-specific implementation of OpenTelemetry in .NET.
aliases: [/csharp, /csharp/metrics, /csharp/tracing]
weight: 12
---

<!--
You can see & update the `lang_instrumentation_index_head` shortcode in
/layouts/shortcodes/lang_instrumentation_index_head.md
The data (name, status) is located at
/data/instrumentation.yaml
-->
{{% lang_instrumentation_index_head "dotnet" %}}

\* While the OpenTelemetryLoggerProvider (i.e integration with [ILogger][]) is
Expand Down
9 changes: 1 addition & 8 deletions content/en/docs/instrumentation/php/_index.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,13 @@
---
title: PHP
description: >-
<img width="35"
<img width="35" class="img-initial"
src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/PHP.svg"
alt="PHP"></img>
A language-specific implementation of OpenTelemetry in PHP.
weight: 21
---

<!--
You can see & update the `lang_instrumentation_index_head` shortcode in
/layouts/shortcodes/lang_instrumentation_index_head.md
The data (name, status) is located at
/data/instrumentation.yaml
-->
{{% lang_instrumentation_index_head "php" /%}}

## Further Reading
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/instrumentation/python/_index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Python
description: >-
<img width="35"
<img width="35" class="img-initial"
src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Python_SDK.svg"
alt="Python"></img> A language-specific implementation of OpenTelemetry in
Python.
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/instrumentation/ruby/_index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Ruby
description: >
<img width="35" src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Ruby_SDK.svg" alt="Ruby"></img>
<img width="35" class="img-initial" src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Ruby_SDK.svg" alt="Ruby"></img>
A language-specific implementation of OpenTelemetry in Ruby.
aliases: [/ruby, /ruby/metrics, /ruby/tracing]
weight: 24
Expand Down
9 changes: 1 addition & 8 deletions content/en/docs/instrumentation/rust/_index.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,13 @@
---
title: Rust
description: >-
<img width="35"
<img width="35" class="img-initial"
src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Rust.svg"
alt="Rust"></img>
A language-specific implementation of OpenTelemetry in Rust.
weight: 26
---

<!--
You can see & update the `lang_instrumentation_index_head` shortcode in
/layouts/shortcodes/lang_instrumentation_index_head.md
The data (name, status) is located at
/data/instrumentation.yaml
-->
{{% lang_instrumentation_index_head "rust" /%}}

## Crates
Expand Down
9 changes: 1 addition & 8 deletions content/en/docs/instrumentation/swift/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,12 @@
title: Swift
weight: 28
description: >-
<img width="35"
<img width="35" class="img-initial"
src="https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/iconography/32x32/Swift.svg"
alt="Swift"></img>
A language-specific implementation of OpenTelemetry in Swift.
---

<!--
You can see & update the `lang_instrumentation_index_head` shortcode in
/layouts/shortcodes/lang_instrumentation_index_head.md
The data (name, status) is located at
/data/instrumentation.yaml
-->
{{% lang_instrumentation_index_head "swift" /%}}

## Further Reading
Expand Down
4 changes: 4 additions & 0 deletions hugo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ imaging:

markup:
goldmark:
parser:
attribute:
block: true
wrapStandAloneImageWithinParagraph: false
renderer:
unsafe: true
highlight:
Expand Down

0 comments on commit c46fdd2

Please sign in to comment.