Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions modules/develop/pages/connect/about.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

Redpanda Connect in Redpanda Cloud lets you quickly build and deploy streaming data pipelines on your clusters from a fully-integrated UI or using the pass:a,m[xref:{tag-pipeline-service}[Data Plane API\]].

include::develop:partial$availability-message.adoc[]

Choose from a xref:develop:connect/components/catalog.adoc[wide range of connectors] to suit your use case, including connectors to:

* Integrate data sources (xref:components:inputs/about.adoc[inputs])
Expand All @@ -16,4 +14,4 @@ Comprehensive data pipeline metrics are also available to help you to xref:devel

Try this xref:develop:connect/connect-quickstart.adoc[quickstart].

TIP: If you’re new to Redpanda Connect, try xref:redpanda-connect:guides:getting_started.adoc[building and testing data pipelines locally] before deploying to the Cloud.
TIP: If you’re new to Redpanda Connect, try xref:redpanda-connect:guides:getting_started.adoc[building and testing data pipelines locally] before deploying to the Cloud.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Verification agent

🧩 Analysis chain

Verify that the target file for the TIP cross-reference actually exists

The new TIP links to xref:redpanda-connect:guides:getting_started.adoc[…].
If that file was renamed or removed when the LA/Beta content was cleaned up, the docs build will fail with a broken-link warning.


🏁 Script executed:

#!/bin/bash
# Sanity-check that the referenced getting_started doc still exists
fd -c never getting_started.adoc | grep 'redpanda-connect/.*getting_started.adoc' -n

Length of output: 86


Let’s locate all instances of getting_started.adoc in the repo to confirm the correct path:


🏁 Script executed:

#!/bin/bash
# List every file named getting_started.adoc in the repo
fd getting_started.adoc

Length of output: 25


Let’s broaden the search to catch any variant (underscore vs. hyphen) and verify under the expected directory:


🏁 Script executed:

#!/bin/bash
set -e

echo "1) All .adoc files with “getting” in the name:"
fd -e adoc "*getting*.adoc" || true

echo
echo "2) Any references to getting_started.adoc in .adoc sources:"
rg -l "getting[_-]started.adoc" --glob '*.adoc' || true

echo
echo "3) List all .adoc under connect/guides:"
fd modules/develop/pages/connect/guides -e adoc || true

Length of output: 1405


Let’s verify whether the guides directory (and the target file) actually exists, and inspect its contents:


🏁 Script executed:

#!/bin/bash
set -e

echo "1) Checking for modules/develop/pages/connect/guides directory:"
if [ -d modules/develop/pages/connect/guides ]; then
  echo "→ Found; listing .adoc files:"
  find modules/develop/pages/connect/guides -type f -iname '*.adoc'
else
  echo "→ Directory modules/develop/pages/connect/guides not found"
fi

echo
echo "2) Subdirectories under modules/develop/pages/connect/:"
find modules/develop/pages/connect -mindepth 1 -maxdepth 1 -type d -printf " - %f\n" || true

echo
echo "3) Files directly under modules/develop/pages/connect/:"
find modules/develop/pages/connect -maxdepth 1 -type f -printf " - %f\n" || true

Length of output: 1414


Fix broken TIP cross-reference in about.adoc

The TIP in modules/develop/pages/connect/about.adoc links to a non-existent getting_started.adoc. Update it to point to the existing quickstart page:

• File: modules/develop/pages/connect/about.adoc
Line 17

Suggested change:

-TIP: If you’re new to Redpanda Connect, try xref:redpanda-connect:guides:getting_started.adoc[building and testing data pipelines locally] before deploying to the Cloud.
+TIP: If you’re new to Redpanda Connect, try xref:redpanda-connect:connect-quickstart.adoc[building and testing data pipelines locally] before deploying to the Cloud.
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
TIP: If you’re new to Redpanda Connect, try xref:redpanda-connect:guides:getting_started.adoc[building and testing data pipelines locally] before deploying to the Cloud.
TIP: If you’re new to Redpanda Connect, try xref:redpanda-connect:connect-quickstart.adoc[building and testing data pipelines locally] before deploying to the Cloud.
🤖 Prompt for AI Agents
In modules/develop/pages/connect/about.adoc at line 17, the TIP cross-reference
points to a non-existent getting_started.adoc file. Update the xref link to
reference the existing quickstart page instead, ensuring the link target matches
the correct file path and name for the quickstart documentation.