Projects
Get an overview of a project insights.
This endpoint returns insights into the specified projects stats, health, lead time for changes, feature types used, members and change requests.
get/api/admin/projects/{projectId}/insights
Path parameters
projectIdstring required
Response
projectInsightsSchema
Example response
{
"stats": {
"avgTimeToProdCurrentWindow": 10,
"createdCurrentWindow": 15,
"createdPastWindow": 15,
"archivedCurrentWindow": 5,
"archivedPastWindow": 5,
"projectActivityCurrentWindow": 100,
"projectActivityPastWindow": 100,
"projectMembersAddedCurrentWindow": 1
},
"health": {
"rating": 95,
"activeCount": 12,
"potentiallyStaleCount": 5,
"staleCount": 10
},
"technicalDebt": {
"rating": 25,
"activeCount": 12,
"potentiallyStaleCount": 5,
"staleCount": 10
},
"featureTypeCounts": [
{
"type": "kill-switch",
"count": 1
}
],
"members": {
"currentMembers": 10,
"change": 10
}
}