Documentation/website for the Jaeger Distributed Tracing project.
Go to file
Yuri Shkuro 48486c4f82 Update roadmap
Signed-off-by: Yuri Shkuro <github@ysh.us>
2025-05-21 19:14:43 -04:00
.github Release 2.6.0/1.69.0 (#876) 2025-05-09 20:01:28 -04:00
assets/data Add blog post (#882) 2025-05-19 20:58:48 -04:00
content Update roadmap 2025-05-21 19:14:43 -04:00
data Release 2.6.0/1.69.0 (#876) 2025-05-09 20:01:28 -04:00
scripts Update roadmap 2025-05-21 19:14:43 -04:00
static Fix Kafka diagram (#849) 2025-02-21 08:55:10 -05:00
themes Fetch Medium feed manually (#881) 2025-05-18 15:31:21 -03:00
.editorconfig Add hoverable tooltips for definitions (#50) 2018-04-08 13:51:35 -04:00
.gitignore Add .vscode/ to .gitignore 2022-12-14 14:24:18 -05:00
.htmltest.external.yml Replace link checker (#363) 2020-02-24 13:59:09 -05:00
.htmltest.old-versions.yml Fix malformed links reported by htmltest 2024-11-24 00:27:05 -05:00
.htmltest.yml Fix malformed links reported by htmltest 2024-11-24 00:27:05 -05:00
CONTRIBUTING.md Add link to adaptive sampling post (#548) 2022-01-17 11:15:01 -05:00
DCO DCO is added (#187) 2018-12-11 00:35:39 -05:00
LICENSE Initial commit 2017-11-20 11:58:13 +00:00
Makefile Update roadmap (#883) 2025-05-20 11:20:08 -04:00
README.md Update roadmap (#883) 2025-05-20 11:20:08 -04:00
RELEASE.md Release 2.6.0/1.69.0 (#876) 2025-05-09 20:01:28 -04:00
hugo.yaml Release 2.6.0/1.69.0 (#876) 2025-05-09 20:01:28 -04:00
jaegertracingbot-https-push Test commit jaegertracingbot-https-push 2021-02-23 23:12:41 -05:00
netlify.toml Upgrade Hugo version to v0.143.1 (#851) 2025-02-25 14:18:50 +00:00
renovate.json Disable Renovate updates for patches 2025-04-18 17:04:44 -04:00

README.md

Netlify Status

Jaeger website

This repo houses all the assets used to build the Jaeger website, available at https://jaegertracing.io.

The site is built with Hugo and hosted by Netlify.

Setup

Install the "extended" Hugo binary from hugo/releases (use one of the hugo_extended_* binaries) or use a package manager if it is available for your operating system.

The "extended" version of Hugo supports Sass, which is necessary to build the site locally.

The currently used version of Hugo is defined in the netlify.toml configuration file.

Running the site locally

If you want to develop the site locally, you can run a single command (assuming that you've run the setup):

$ make develop

This will start up a local server on localhost port 1313. When you make changes to either the content of the website (in content) or to the Sass and JavaScript assets of the page (in themes/jaeger-docs/assets), the browser will automatically update to reflect those changes (usually in under one second).

Publishing the site

The site is published automatically by Netlify whenever changes are merged to the main branch. The site cannot be published in an ad-hoc way (e.g. through a make command or script in the repo).

Contributing to the site

We strongly encourage you to contribute to this site! For more information, see the contributing guide.

Diagrams

Diagrams included in the documentation are created in the shared Google Slides document, which supports export to SVG. If you need to make changes to the diagrams as part of a PR, please copy the diagram into a new slide deck and include a shared link to it in the PR along with the exported SVG file. The maintainers will update the main deck with the new version upon merging the PR.

Publishing new Jaeger version

Please refer to RELEASE.md for instructions on how to release new version of documentation.

Admonitions

There are five admonition types available for the Jaeger docs:

Admonition type Color
info blue
success green
danger red
warning yellow
requirement purple

Here's an example:

{{< danger >}}
We do not recommend that you do this!
{{< /danger >}}

You can also add titles:

{{< success title="New feature" >}}
Jaeger now supports a new thing that you definitely want.
{{< /success >}}

You can check internal links by running make check-internal-links and all links, including external links, by running make check-all-links.

Adding new pages and redirects

When new pages are added to the documentation, please add a corresponding entry to themes/jaeger-docs/layouts/index.redirects.

Generating Roadmap page

To generate the content/roadmap.md document, run make fetch-roadmap.

This script fetches issues from the GitHub project board, extracts the required information, and generates the roadmap document. Make sure to set the GITHUB_TOKEN environment variable with your GitHub API token before running the script, or save the token in ~/.github_token file (protect the file so only you can read it: chmod 0600 <file>). Personal tokens can be created at https://github.com/settings/tokens/.

Updating Medium Blog Feed

The homepage displays the latest blog posts from the Jaeger Medium blog. To avoid network calls during builds and to ensure fast, reliable local development, the Medium RSS feed is downloaded and stored as a static XML file.

Prerequisites

Ensure you have curl installed on your system to download the RSS feed.

Most Linux and macOS systems already have curl pre-installed. You can verify installation by running:

curl --version

To update the Medium blog feed

Run the following command to fetch and save the feed locally as XML:

make fetch-blog-feed

This will download the RSS feed from Medium and save it to:

assets/data/medium.xml

After updating, commit the changes:

git add assets/data/medium.xml
git commit -m "chore: update Medium blog feed"

How it's used

The Hugo site reads and parses data/medium.xml using resources.Get and transform.Unmarshal. This converts the XML into structured data at build time, allowing full control over the content without relying on live network requests.

License

Apache 2.0 License.