Add library config registry pages with categorized sections#35264
Draft
Add library config registry pages with categorized sections#35264
Conversation
- Add categories.json and per-language JSON data with category fields - Render configs in collapsible sections grouped by category - Integration category shows kinds reference + per-integration details - Every section and config entry has a deep-link anchor with copy-link - Add content pages for all supported languages
local/bin/ is gitignored so the Python scripts were not tracked. Moved to scripts/registry/ and updated relative paths accordingly.
- Normalize all from_version to vX.Y.Z format (handle missing v prefix, 2-part versions, datadog-opentelemetry- prefix) - Hide "Since" for versions at or below the initial tracking threshold - Remove version filtering in template, show all configs (TODO comment) - Add total config count display per language
Contributor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What does this PR do? What is the motivation?
Adds library configuration registry pages that display environment variables from the Feature Parity Registry API, grouped by product category with collapsible sections.
<details>sectionsDD_TRACE_<INTEGRATION>_ENABLED) with the list of integrations supporting each kindfrom_versionnormalized tovX.Y.Zformat, hidden for initial tracking versionsscripts/registry/fetch from the registry API and produce per-language JSON data filesThis PR is still in progress. We're exploring the possibilities of what we can do and how to display results using the registry data.
TODO:
Merge instructions
Merge readiness:
Additional notes
The Python scripts in
scripts/registry/must be run in order:registry_generate_categories.py(producescategories.json+ full categories reference)registry_extract_configurations_by_language.py(produces per-language JSON with category fields)See
scripts/registry/README.mdfor details.