traefik/docs
Alan Chester e14116f403
Add http.route and server.port to OTLP metrics
Fixes #12247

  This change adds missing OpenTelemetry semantic convention attributes
  to HTTP server metrics:
  - http.route: The matched route pattern from the router
  - server.port: The server port extracted from the Host header

  The router middleware now stores the route pattern in the request
  context, making it available to the semantic convention metrics
  middleware for inclusion in metrics.
2026-01-30 15:34:57 +01:00
..
content Add http.route and server.port to OTLP metrics 2026-01-30 15:34:57 +01:00
scripts Merge current v2.11 into v3.6 2026-01-09 19:41:31 +01:00
.dockerignore Documentation Revamp 2019-02-26 14:50:07 +01:00
.markdownlint.json Add title and description metadata to documentation pages 2022-04-15 15:44:08 +02:00
check.Dockerfile Fix Kubernetes reference yml file 2026-01-09 10:12:04 +01:00
docs.Dockerfile Update Dockerfiles to Alpine 3.23 2025-12-17 15:26:06 +01:00
Makefile Bump dependencies of documentation and webui 2026-01-22 12:10:07 +01:00
mkdocs.yml Merge branch v3.6 into master 2026-01-29 15:08:34 +01:00
readme.md Refactor CI on documentation 2026-01-09 17:24:04 +01:00
requirements.txt Merge v2.11 into v3.6 2026-01-26 17:20:11 +01:00

Documentation

Tooling

Tool Documentation Sources
mkdocs documentation Sources
mkdocs-material documentation Sources
pymdown-extensions documentation Sources

Build locally without docker

# Pre-requisite: python3, pip and virtualenv
DOCS="/tmp/traefik-docs"
mkdir "$DOCS"
virtualenv "$DOCS"
source "$DOCS/bin/activate"
pip install -r requirements.txt
mkdocs serve # or mkdocs build