mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-07-10 01:50:20 -07:00
941470670c
This PR addresses the accuracy and standardization of repository metrics, ensuring reliable data for long-term health tracking. It extracts the metrics improvements from PR #26239 while excluding the stale issue policy changes as requested by maintainers. ### 🚀 Improvements #### 1. Fixed 1000-item Cap - **GraphQL Integration**: Refactored `open_issues.ts` and `open_prs.ts` to use GraphQL `totalCount`. This bypasses the 1000-item limit of the `gh issue list` and `gh pr list` commands, ensuring accurate reporting of the backlog (currently ~2.4k issues). #### 2. Standardized CSV Output - **Format Conversion**: Converted all 8 metric scripts to output **CSV** format (`metric_name,value`) instead of varied JSON formats. This ensures consistency for downstream time-series collection and simplifies ingestion. #### 3. Accurate Maintainer Activity - **Association Updates**: Included `COLLABORATOR` in maintainer associations across all scripts (`latency`, `throughput`, `review_distribution`, etc.). This accurately reflects the activity of authorized contributors who may not be direct members of the organization but are core to the development process. ### 🧪 Verification - Verified GraphQL queries against the GitHub API. - Confirmed script output format matches the required standard. - Validated that all 8 scripts execute successfully and produce the expected CSV data.
109 lines
3.1 KiB
TypeScript
109 lines
3.1 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2026 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* @license
|
|
*/
|
|
|
|
import { GITHUB_OWNER, GITHUB_REPO, type MetricOutput } from '../types.js';
|
|
import { execSync } from 'node:child_process';
|
|
|
|
try {
|
|
const query = `
|
|
query($owner: String!, $repo: String!) {
|
|
repository(owner: $owner, name: $repo) {
|
|
pullRequests(last: 100, states: MERGED) {
|
|
nodes {
|
|
authorAssociation
|
|
createdAt
|
|
mergedAt
|
|
}
|
|
}
|
|
issues(last: 100, states: CLOSED) {
|
|
nodes {
|
|
authorAssociation
|
|
createdAt
|
|
closedAt
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
const output = execSync(
|
|
`gh api graphql -F owner=${GITHUB_OWNER} -F repo=${GITHUB_REPO} -f query='${query}'`,
|
|
{ encoding: 'utf-8' },
|
|
);
|
|
const data = JSON.parse(output).data.repository;
|
|
|
|
const prs = data.pullRequests.nodes.map(
|
|
(p: {
|
|
authorAssociation: string;
|
|
mergedAt: string;
|
|
createdAt: string;
|
|
}) => ({
|
|
association: p.authorAssociation,
|
|
latencyHours:
|
|
(new Date(p.mergedAt).getTime() - new Date(p.createdAt).getTime()) /
|
|
(1000 * 60 * 60),
|
|
}),
|
|
);
|
|
const issues = data.issues.nodes.map(
|
|
(i: {
|
|
authorAssociation: string;
|
|
closedAt: string;
|
|
createdAt: string;
|
|
}) => ({
|
|
association: i.authorAssociation,
|
|
latencyHours:
|
|
(new Date(i.closedAt).getTime() - new Date(i.createdAt).getTime()) /
|
|
(1000 * 60 * 60),
|
|
}),
|
|
);
|
|
|
|
const isMaintainer = (assoc: string) =>
|
|
['MEMBER', 'OWNER', 'COLLABORATOR'].includes(assoc);
|
|
const calculateAvg = (
|
|
items: { association: string; latencyHours: number }[],
|
|
) =>
|
|
items.length
|
|
? items.reduce((a, b) => a + b.latencyHours, 0) / items.length
|
|
: 0;
|
|
|
|
const prMaintainers = calculateAvg(
|
|
prs.filter((i: { association: string; latencyHours: number }) =>
|
|
isMaintainer(i.association),
|
|
),
|
|
);
|
|
const prCommunity = calculateAvg(
|
|
prs.filter(
|
|
(i: { association: string; latencyHours: number }) =>
|
|
!isMaintainer(i.association),
|
|
),
|
|
);
|
|
const prOverall = calculateAvg(prs);
|
|
|
|
const issueMaintainers = calculateAvg(
|
|
issues.filter((i: { association: string; latencyHours: number }) =>
|
|
isMaintainer(i.association),
|
|
),
|
|
);
|
|
const issueCommunity = calculateAvg(
|
|
issues.filter(
|
|
(i: { association: string; latencyHours: number }) =>
|
|
!isMaintainer(i.association),
|
|
),
|
|
);
|
|
const issueOverall = calculateAvg(issues);
|
|
|
|
process.stdout.write(`latency_pr_overall_hours,${Math.round(prOverall * 100) / 100}\n`);
|
|
process.stdout.write(`latency_pr_maintainers_hours,${Math.round(prMaintainers * 100) / 100}\n`);
|
|
process.stdout.write(`latency_pr_community_hours,${Math.round(prCommunity * 100) / 100}\n`);
|
|
process.stdout.write(`latency_issue_overall_hours,${Math.round(issueOverall * 100) / 100}\n`);
|
|
process.stdout.write(`latency_issue_maintainers_hours,${Math.round(issueMaintainers * 100) / 100}\n`);
|
|
process.stdout.write(`latency_issue_community_hours,${Math.round(issueCommunity * 100) / 100}\n`);
|
|
} catch (err) {
|
|
process.stderr.write(err instanceof Error ? err.message : String(err));
|
|
process.exit(1);
|
|
}
|