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
6 changes: 5 additions & 1 deletion services/libs/tinybird/pipes/project_repo_insights.pipe
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ DESCRIPTION >
- `page`: Optional integer for pagination offset calculation, defaults to 0
- Response: Project and repository records with insights metrics
- `healthScoreV2`, `healthLabel`, `lifecycleLabel`, `impactScore`, `impactLabel` are the Akrites-methodology fields (see `project_insights_copy_ds` for band definitions); may be null when the record has no linked package data. `healthScoreV2` is distinct from the legacy `healthScore` field.
- `maintainerHealthScoreV2` (0-40), `securitySupplyChainScoreV2` (0-35), `developmentActivityScoreV2` (0-25) are the rollup of the Health Score v2 category breakdown (IN-1212) — the three categories that sum to `healthScoreV2`. Null when the record has no value for that category.

TAGS "Insights, Widget", "Project", "Repository"

Expand Down Expand Up @@ -53,7 +54,10 @@ SQL >
healthLabel,
lifecycleLabel,
impactScore,
impactLabel
impactLabel,
maintainerHealthScoreV2,
securitySupplyChainScoreV2,
developmentActivityScoreV2
FROM project_insights_copy_ds
WHERE
1 = 1
Expand Down
Loading