-
Notifications
You must be signed in to change notification settings - Fork 1.6k
refactor : Rename and split up Collector installation page #8370
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: adity1raut <[email protected]>
Signed-off-by: adity1raut <[email protected]>
|
PTAL @tiffany76 |
tiffany76
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is looking pretty good, @adity1raut! I've left some comments based on my first-pass review. Once we address those, I'll take a closer look. Thanks!
| @@ -0,0 +1,140 @@ | |||
| --- | |||
| title: Install the Collector on Linux | |||
| aliases: [../installation/#linux] | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@chalin I know this alias won't work because the source is a fragment. How do we keep the fragment's target and point it to an alert about refactoring?
Signed-off-by: adity1raut <[email protected]>
Signed-off-by: adity1raut <[email protected]>
|
@tiffany76 Can you please Give me review |
Description
This PR Fixed #8353 refactors the Collector installation documentation by renaming, restructuring, and splitting the existing installation page into multiple focused sections. The goal is to improve clarity, organization, and navigation within the documentation.
Changes
Rename the page and update front matter:
Move and rename the file to
index.md.Add an alias in the front matter:
Create new child pages:
content/en/docs/collector/install/docker.md— Install the Collector with Dockercontent/en/docs/collector/install/kubernetes.md— Install the Collector with Kubernetesindex.md— Install from a Collector binarycontent/en/docs/collector/install/binary/linux.md— Install the Collector on Linuxcontent/en/docs/collector/install/binary/macos.md— Install the Collector on macOScontent/en/docs/collector/install/binary/windows.md— Install the Collector on WindowsEach new child page includes front matter with a redirect from the old location.
Content migration:
/install/./install/.Update cross-references:
/docs/collector/installation/inquick-start.md(line 131) and anywhere else within the English documentation.Related Issues / References
Additional Notes
This restructuring improves the logical flow and maintainability of Collector installation documentation.
Run
npm run fix:alllocally to ensure style and formatting compliance.