Regenerate integrations docs#22529
Merged
Merged
Conversation
|
Contributor
There was a problem hiding this comment.
No issues found across 160 files
Confidence score: 5/5
- Automated review surfaced no issues in the provided summaries.
- No files require special attention.
Architecture diagram
sequenceDiagram
participant GA as GitHub Actions
participant Meta as Metadata YAML
participant Gen as Doc Generator
participant Repo as Source Repo
participant Doc as Integration Doc
Note over GA,Doc: NEW: Auto-regeneration of Prometheus integration docs
GA->>Meta: Trigger generate-integrations.yml workflow
Meta-->>GA: Latest metadata yaml
GA->>Gen: Run doc generation script
Gen->>Meta: Read integration metadata
alt New or updated metadata
Gen->>Repo: Fetch integration template
Repo-->>Gen: Template content
Gen->>Gen: Generate doc with troubleshooting note
Note over Gen: Note explains 10-cycle absence detection
Gen-->>Doc: Write integration doc
else No metadata changes
Gen-->>GA: No updates needed
end
GA->>Repo: Commit regenerated docs
Repo-->>GA: Confirmation
Note over Doc: Each doc now includes "Disappearing or sparse metrics" section
Note over GA,Doc: Runtime behavior described in doc
participant Collect as Prometheus Collector
participant Metric as Metric Store
participant Alert as Alert Engine
Note over Collect,Alert: Described metric lifecycle
Collect->>Collect: Scrape Prometheus endpoint
alt Metric present
Collect->>Metric: Store value
else Metric absent
loop 10 consecutive cycles
Collect->>Collect: Track absence count
end
Collect->>Metric: Remove chart if absent 10 times
Metric->>Alert: Clear related alerts
end
Note: This PR contains a large number of files. cubic only reviews up to 100 files per PR, so some files may not have been reviewed. cubic prioritizes the most important files to review.
On a pro plan you can use ultrareview for larger PRs.
Re-trigger cubic
Ancairon
approved these changes
May 22, 2026
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.



Regenerate the integrations docs based on the
latest metadata yaml code.
This PR was auto-generated by
.github/workflows/generate-integrations.yml.Summary by cubic
Regenerated Prometheus integrations docs from the latest metadata and added a troubleshooting note on disappearing/sparse metrics. The note clarifies that after 10 consecutive absent scrapes the chart is removed and related alerts clear automatically; no 0/NaN/StaleNaN is required—just omit the metric.
Written for commit 7669449. Summary will update on new commits. Review in cubic