diff --git a/content/load-balancing/understand-basics/health-details.md b/content/load-balancing/understand-basics/health-details.md index 009a4f24b3f2a03..a2278287c7c055b 100644 --- a/content/load-balancing/understand-basics/health-details.md +++ b/content/load-balancing/understand-basics/health-details.md @@ -14,11 +14,7 @@ But how does your load balancer _know_ which servers can handle the traffic? We ## Components -Dynamic load balancing happens through a combination of: - -- [**Origin pools**](/load-balancing/understand-basics/pools/): Contain one or more origin servers. -- [**Monitors**](/load-balancing/understand-basics/monitors/): Are attached to individual origin servers and issue health checks at regular intervals. -- **Health checks**: Are issued by a monitor at regular interval and — depending on the monitor settings — return a **pass** or **fail** value to make sure an origin is still able to receive traffic. +Dynamic load balancing happens through a combination of [origin pools](/load-balancing/understand-basics/pools/)[^1], [monitors](/load-balancing/understand-basics/monitors/)[^2], and health checks[^3]. ![Dynamic load balancing involves pools, origins, monitors, and health checks](/load-balancing/static/images/load-balancer-components.png) @@ -86,3 +82,8 @@ If a load balancer reaches **Critical** health and the pool serving as your fall - If Cloudflare proxies your hostname, you will see a 530 HTTP/1016 Origin DNS failure. - If Cloudflare does not proxy your hostname, you will see the SOA record. + + +[^1]: Groups that contain one or more origin servers. +[^2]: Are attached to individual origin servers and issue health checks at regular intervals. +[^3]: Which are issued by a monitor at regular interval and — depending on the monitor settings — return a **pass** or **fail** value to make sure an origin is still able to receive traffic. \ No newline at end of file diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index d31374ae203cbbf..790e13479d9c4c1 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -18,5 +18,6 @@ {{- block "main" . -}}{{- end -}} {{- partial "gtag" -}} + {{- partial "littlefoot" -}} diff --git a/layouts/partials/littlefoot.html b/layouts/partials/littlefoot.html new file mode 100644 index 000000000000000..a773497de4deab6 --- /dev/null +++ b/layouts/partials/littlefoot.html @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/static/style.css b/static/style.css index 3fe2d6414aff94c..053eebf1083cae5 100644 --- a/static/style.css +++ b/static/style.css @@ -4469,3 +4469,14 @@ pre { } } +.littlefoot-footnote__button { + max-width: 3em; +} + +[theme=dark] .littlefoot-footnote__content { + background: #242628 +} + +[theme=dark] .littlefoot-footnote__button { + background: rgba(110,110,110,0.5) +} \ No newline at end of file