From 35d981d881016e6ac8d0147d1b767a36805e18bd Mon Sep 17 00:00:00 2001 From: Kevin Hu Date: Sun, 5 Jul 2026 01:07:45 -0400 Subject: [PATCH] Add Airbyte to the Quality Monitoring sidebar navigation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Airbyte's docs page (content/en/data_observability/quality_monitoring/ elt/airbyte.md) has existed and been reachable by direct URL since it went GA (2026-05-19, per the #data-observability Slack GA announcement), and it's correctly cross-linked from elt/_index.md's own "what's next" grid. But it was never added to config/_default/menus/main.en.yaml — the separate, manually-maintained file that actually drives the persistent left sidebar nav on docs.datadoghq.com. Fivetran has an entry there; Airbyte never did, which is why it's invisible in the sidebar despite being live and GA. Weighted to sort before Fivetran (500000 vs 1000000), matching the order both already appear in on the ELT Integrations landing page. AI assistance: found and fixed by Claude Code after a user noticed the sidebar discrepancy directly; root-caused by comparing the content tree against the separate menu config file. --- config/_default/menus/main.en.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/_default/menus/main.en.yaml b/config/_default/menus/main.en.yaml index 69ba6d57d55..59f4c15757e 100644 --- a/config/_default/menus/main.en.yaml +++ b/config/_default/menus/main.en.yaml @@ -5346,6 +5346,11 @@ menu: identifier: elt_integrations parent: quality_monitoring weight: 275000 + - name: Airbyte + url: data_observability/quality_monitoring/elt/airbyte + identifier: elt_integrations_airbyte + parent: elt_integrations + weight: 500000 - name: Fivetran url: data_observability/quality_monitoring/elt/fivetran identifier: elt_integrations_fivetran