Embed relevent YT videos to docs (#1325)

* embed relevent YT videos to docs

* add title params

* modify youtube container styling
This commit is contained in:
Gayathri625 2024-07-25 23:49:19 +05:30 committed by GitHub
parent 3b59eaa8d9
commit a732b16cfc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 25 additions and 0 deletions

View File

@ -445,3 +445,16 @@ c - Component (Aware of its content/context...)
display: none;
}
}
.youtube-video {
position: relative;
width: 100%;
padding-bottom: 46%;
}
.youtube-video iframe {
position: absolute;
width: 80%;
height: 100%;
border: 0;
}

View File

@ -16,6 +16,8 @@ A gRPC load balancing policy is given a list of server IP addresses by the name
resolver. The policy is responsible for maintaining connections (subchannels)
to the servers and picking a connection to use when an RPC is sent.
{{< youtube id="7LYvl-nr0t8" class="youtube-video" title="gRPC Weighted Round Robin LB Policy" >}}
### Implementing Your Own Policy
By default the `pick_first` policy will be used. This policy actually does no

View File

@ -10,6 +10,8 @@ gRPC provides support for an OpenTelemetry plugin that provides metrics that can
* Iterate on improving system performance
* Setup continuous monitoring and alerting.
{{< youtube id="L6FAtc8N8Vk" class="youtube-video" title="OpenTelemetry - The future of Observability" >}}
## Background
OpenTelemetry is an observability framework to create and manage telemetry data. gRPC previously provided observability support through OpenCensus which has been [sunsetted](https://opentelemetry.io/blog/2023/sunsetting-opencensus/) in the favor of OpenTelemetry.

View File

@ -1,3 +1,5 @@
---
title: Web
---
{{< youtube id="l-W15x-Ked8" class="youtube-video" title="gRPC on Web" >}}

View File

@ -3,3 +3,5 @@ title: What is gRPC?
description: New to gRPC? Start with the following pages
weight: 1
---
{{< youtube id="E3ez34fdC0k" class="youtube-video" title="Overview of gRPC" >}}

View File

@ -10,6 +10,8 @@ Not familiar with gRPC? First read [Introduction to gRPC](../introduction/). For
language-specific details, see the quick start, tutorial, and reference
documentation for your language of choice.
{{< youtube id="njC24ts24Pg" class="youtube-video" title="gRPC in 5 minutes" >}}
### Overview
#### Service definition

View File

@ -32,6 +32,8 @@ create a gRPC server in Java with clients in Go, Python, or Ruby. In addition,
the latest Google APIs will have gRPC versions of their interfaces, letting you
easily build Google functionality into your applications.
{{< youtube id="cSGBbwvW1y4" class="youtube-video" title="getting started with gRPC" >}}
### Working with Protocol Buffers
By default, gRPC uses [Protocol Buffers][], Googles