Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions static/oss-health-data/telemetry.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
}
},
"quarter": {
"label": "March 2026 — April 2026",
"label": "Quarter",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

This manual update to the telemetry data will be overwritten by the hack/fetch_telemetry.py script during its next scheduled run (via .github/workflows/fetch-telemetry.yml).

To ensure these generic labels persist, the logic in hack/fetch_telemetry.py should be modified to prioritize the generic labels for the quarter and year periods. This would also align the telemetry data generation with the approach used in hack/update_oss_health.py.

You can modify the build_payload function in hack/fetch_telemetry.py as follows:

for key in ("month", "quarter", "year"):
    raw_p = periods_raw.get(key, {}) or {}
    if key in ("quarter", "year"):
        raw_p["label"] = key.title()
    transformed = transform_period(raw_p, label_fallback=key.title())

"summary_cards": [
{
"label": "Clusters",
Expand Down Expand Up @@ -220,7 +220,7 @@
}
},
"year": {
"label": "March 2026 — April 2026",
"label": "Year",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Similar to the change on line 110, this manual update will be overwritten by the automated fetch script. Please update the generator logic in hack/fetch_telemetry.py to make this change permanent.

"summary_cards": [
{
"label": "Clusters",
Expand Down