4dba927b3a
* What's New in v9.4 * moves alert email templating to v9.4 release * Add whats new for SAT (#61151) * Add whats new for SAT * Logs: Add logdetails redesign to "whats new" (#61361) * update whats new * update text and add image * change `logline` to `log line` Co-authored-by: Ivana Huckova <30407135+ivanahuckova@users.noreply.github.com> Co-authored-by: Ivana Huckova <30407135+ivanahuckova@users.noreply.github.com> * add: skip org role sync * add note about oncall rbac to whats new 9.4 docs * Loki Datasource: Add query validation to What's new (#62012) Loki Datasource: add query validation to what's new * Add note about SAML auto login (#61926) * Add note about SAML auto login * Apply suggestions from code review Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com> * run prettier Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com> * What's New: Add image for the Loki Query Validation feature (#62358) * What's new 9.4: add image for Loki query validation * What's new 9.4: update image path * Docs: Add logs sample to whats new in 9.4 (#62354) * Add logs sample to whats new in 9.4 * Update path to image * Update docs/sources/whatsnew/whats-new-in-v9-4.md Co-authored-by: Matias Chomicki <matyax@gmail.com> --------- Co-authored-by: Matias Chomicki <matyax@gmail.com> * Add datasource connection page to whatsnew * Update datasource connection whats new 9.4 Co-authored-by: Isabel <76437239+imatwawana@users.noreply.github.com> * Update datasource connection whats-new-in-v9-4.md Co-authored-by: Isabel <76437239+imatwawana@users.noreply.github.com> * Update whats-new-in-v9-4.md Enterprise features add on * Added command palette, navigation * Update whats-new-in-v9-4.md * Update whats-new-in-v9-4.md * enterprise updates * add panel header redesign content * Adds alerting content to whats new * Fix typo Nav navigation -> New Navigation * adds image to pause alerts * Updated cmd palette screenshot * Update docs/sources/whatsnew/whats-new-in-v9-4.md * Update docs/sources/whatsnew/whats-new-in-v9-4.md * adds alerting screenshots * reorder and begin adding availability Re-ordered updates into groups, and added availability descriptions to the first few updates. * Updated command palette availability * fix capitalization * copy edit * add before you upgrade section * add docs relref links * makes prettier * added before you begin boilerplate * Add Enterprise Datasource updates / highlights * Add what's new section on updates to the canvas panel * Update canvas demo vid src to correct location * Canvas: add small shoutout for new server element in whats new * copy edit final contributions --------- Co-authored-by: linoman <2051016+linoman@users.noreply.github.com> Co-authored-by: Sven Grossmann <sven.grossmann@grafana.com> Co-authored-by: Ivana Huckova <30407135+ivanahuckova@users.noreply.github.com> Co-authored-by: Eric Leijonmarck <eric.leijonmarck@gmail.com> Co-authored-by: Joey Orlando <joseph.t.orlando@gmail.com> Co-authored-by: Matias Chomicki <matyax@gmail.com> Co-authored-by: Alexander Zobnin <alexanderzobnin@gmail.com> Co-authored-by: natellium <natalia.bernarte@grafana.com> Co-authored-by: Natalia Bernarte Oses <74534993+natellium@users.noreply.github.com> Co-authored-by: Isabel <76437239+imatwawana@users.noreply.github.com> Co-authored-by: Fabrizia Rossano <117294258+frossano-grafana@users.noreply.github.com> Co-authored-by: Zsofia <zsofia.komaromi@gmail.com> Co-authored-by: brendamuir <100768211+brendamuir@users.noreply.github.com> Co-authored-by: Mitch Seaman <mjseaman@users.noreply.github.com> Co-authored-by: Mitchel Seaman <mitchel.seaman@gmail.com> Co-authored-by: josiahg <jay@grafana.com> Co-authored-by: nmarrs <nathanielmarrs@gmail.com> |
||
---|---|---|
.. | ||
sources | ||
.gitignore | ||
logo-horizontal.png | ||
Makefile | ||
README.md |
Building the docs locally
When you contribute to documentation, it is a good practice to build the docs on your local machine to make sure your changes appear as you expect. This README explains the process for doing that.
Requirements
Docker >= 2.1.0.3 Yarn >= 1.22.4
Build the doc site
- On the command line, first change to the docs folder:
cd docs
. - Run
make docs
. This launches a preview of the website with the current grafana docs athttp://localhost:3002/docs/grafana/latest/
which will refresh automatically when changes are made to content in thesources
directory.
If you have the grafana/website repo checked out in the same directory as the grafana repo, then you can run make docs-local-static
to use local assets (such as images).
Content guidelines
Edit content in the sources
directory.
Contributing
Using relref
for internal links
Use the Hugo shortcode relref any time you are linking to other internal docs pages.
Syntax is:
{{< relref "example.md" >}}
You might need to add more context for the link (containing folders and so on, folder/example.md
) if Hugo says the relref is ambiguous.
Managing redirects
When moving content around or removing pages it's important that users following old links are properly redirected to the new location. We do this using the aliases feature in Hugo.
If you are moving a page, add an aliases
entry in the front matter referencing the old location of the page which will redirect the old url to the new location.
If you are removing a page, add an aliases
entry in the front matter of the most-applicable page referencing the location of the page being removed.
If you are copying an existing page as the basis for a new one, be sure to remove any aliases
entries in the front matter in your copy to avoid conflicting redirects.
Edit the side menu
The side menu is automatically build from the file structure. Use the weight front matter parameter to order pages.
To specify different menu text from the page title, use the front matter parameter menuTitle
.
Add images
Please see our help documentation on Image, diagram, and screenshot guidelines for comprehensive information.
Deploy changes to grafana.com
When a PR is merged with changes in the docs/sources
directory, those changes are automatically synced by a GitHub action (.github/workflows/publish.yml
) to the grafana/website repo.
- A PR that targets the
main
branch syncs to thecontent/docs/grafana/next
directory in thewebsite
repository, and publishes tohttps://grafana.com/docs/grafana/next/
. - A PR targeting the
latest/current
release branch syncs to thecontent/docs/grafana/latest
directory in thewebsite
repository, and publishes tohttps://grafana.com/docs/grafana/latest/
.
Once the sync is complete, the website will automatically publish to production - no further action is needed.