Skip to content

Commit 264664d

Browse files
authored
Remove unnecessary complexity from KPI script (#27850)
1 parent 2d19865 commit 264664d

File tree

1 file changed

+8
-96
lines changed

1 file changed

+8
-96
lines changed

website/scripts/get-bug-and-pr-report.js

+8-96
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,6 @@ module.exports = {
2929
const NUMBER_OF_RESULTS_REQUESTED = 100;
3030

3131
let daysSinceBugsWereOpened = [];
32-
let daysSinceUnreleasedBugsWereOpened = [];
33-
let daysSinceReleasedBugsWereOpened = [];
34-
let allBugsWithUnreleasedLabel = [];
35-
let allBugsWithReleasedLabel = [];
3632
let allBugs32DaysOrOlder = [];
3733
let allBugsCreatedInPastWeek = [];
3834
let allBugsClosedInPastWeek = [];
@@ -46,22 +42,6 @@ module.exports = {
4642
let allNonPublicOpenPrs = [];
4743
let nonPublicPrsClosedInThePastThreeWeeks = [];
4844

49-
50-
51-
// Endpoint operations
52-
let allBugsCreatedInPastWeekEndpointOps = [];
53-
let allBugsCreatedInPastWeekEndpointOpsUnreleased = [];
54-
let allBugsCreatedInPastWeekEndpointOpsReleased = [];
55-
let allBugsCreatedInPastWeekEndpointOpsCustomerImpacting = [];
56-
57-
// Mobile Device Management
58-
let allBugsCreatedInPastWeekMobileDeviceManagement = [];
59-
60-
let allBugsCreatedInPastWeekMobileDeviceManagementUnreleased = [];
61-
let allBugsCreatedInPastWeekMobileDeviceManagementReleased = [];
62-
let allBugsCreatedInPastWeekMobileDeviceManagementCustomerImpacting = [];
63-
64-
6545
await sails.helpers.flow.simultaneously([
6646

6747
// ██████╗ ██████╗ ███████╗███╗ ██╗ ██████╗ ██╗ ██╗ ██████╗ ███████╗
@@ -115,44 +95,8 @@ module.exports = {
11595
if (issue.labels.some(label => label.name.indexOf('customer-') >= 0)) {
11696
allBugsReportedByCustomersInPastWeek.push(issue);
11797
}
118-
// Get Endpoint Ops KPIs
119-
if (issue.labels.some(label => label.name === '#g-endpoint-ops')) {
120-
allBugsCreatedInPastWeekEndpointOps.push(issue);
121-
if (issue.labels.some(label => label.name === '~unreleased bug')) {
122-
allBugsCreatedInPastWeekEndpointOpsUnreleased.push(issue);
123-
}
124-
else if (issue.labels.some(label => label.name === '~released bug')) {
125-
allBugsCreatedInPastWeekEndpointOpsReleased.push(issue);
126-
}
127-
if (issue.labels.some(label => label.name.indexOf('customer-') >= 0)) {
128-
allBugsCreatedInPastWeekEndpointOpsCustomerImpacting.push(issue);
129-
}
130-
}
131-
// Get MDM KPIs
132-
if (issue.labels.some(label => label.name === '#g-mdm')) {
133-
allBugsCreatedInPastWeekMobileDeviceManagement.push(issue);
134-
if (issue.labels.some(label => label.name === '~unreleased bug')) {
135-
allBugsCreatedInPastWeekMobileDeviceManagementUnreleased.push(issue);
136-
}
137-
else if (issue.labels.some(label => label.name === '~released bug')) {
138-
allBugsCreatedInPastWeekMobileDeviceManagementReleased.push(issue);
139-
}
140-
if (issue.labels.some(label => label.name.indexOf('customer-') >= 0)) {
141-
allBugsCreatedInPastWeekMobileDeviceManagementCustomerImpacting.push(issue);
142-
}
143-
}
14498
}
145-
14699
daysSinceBugsWereOpened.push(timeOpenInDays);
147-
// Send to released or unreleased bugs array
148-
if (issue.labels.some(label => label.name === '~unreleased bug')) {
149-
allBugsWithUnreleasedLabel.push(issue);
150-
daysSinceUnreleasedBugsWereOpened.push(timeOpenInDays);
151-
} else if (issue.labels.some(label => label.name === '~released bug')) {
152-
allBugsWithReleasedLabel.push(issue);
153-
daysSinceReleasedBugsWereOpened.push(timeOpenInDays);
154-
}
155-
156100
}
157101

158102
},
@@ -298,7 +242,7 @@ module.exports = {
298242
return pullRequests.length !== NUMBER_OF_RESULTS_REQUESTED;
299243
}, 10000);
300244

301-
for(let pullRequest of allPublicOpenPrs) {
245+
for (let pullRequest of allPublicOpenPrs) {
302246
// Create a date object from the PR's created_at timestamp.
303247
let pullRequestOpenedOn = new Date(pullRequest.created_at);
304248
// Get the amount of time this issue has been open in milliseconds.
@@ -359,9 +303,6 @@ module.exports = {
359303

360304
// Get the averages from the arrays of results.
361305
let averageNumberOfDaysBugsAreOpenFor = Math.round(_.sum(daysSinceBugsWereOpened) / daysSinceBugsWereOpened.length);
362-
let averageNumberOfDaysUnreleasedBugsAreOpenFor = Math.round(_.sum(daysSinceUnreleasedBugsWereOpened) / daysSinceUnreleasedBugsWereOpened.length);
363-
let averageNumberOfDaysReleasedBugsAreOpenFor = Math.round(_.sum(daysSinceReleasedBugsWereOpened)/daysSinceReleasedBugsWereOpened.length);
364-
let averageDaysPullRequestsAreOpenFor = Math.round(_.sum(daysSincePullRequestsWereOpened)/daysSincePullRequestsWereOpened.length);
365306
let averageDaysContributorPullRequestsAreOpenFor = Math.round(_.sum(daysSinceContributorPullRequestsWereOpened)/daysSinceContributorPullRequestsWereOpened.length);
366307

367308

@@ -392,9 +333,8 @@ module.exports = {
392333
kpiResults.push(
393334
averageDaysContributorPullRequestsAreOpenFor,
394335
allBugs32DaysOrOlder.length,
336+
averageNumberOfDaysBugsAreOpenFor,
395337
allBugsReportedByCustomersInPastWeek.length,
396-
averageNumberOfDaysReleasedBugsAreOpenFor,
397-
averageNumberOfDaysUnreleasedBugsAreOpenFor,
398338
allBugsCreatedInPastWeek.length,
399339
allBugsClosedInPastWeek.length,);
400340

@@ -409,51 +349,23 @@ module.exports = {
409349
410350
Pull requests:
411351
---------------------------
412-
Average open time (no bots, no handbook, no ceo): ${averageDaysContributorPullRequestsAreOpenFor} days.
413-
414-
Number of open pull requests in the fleetdm/fleet Github repo (no bots, no handbook, no ceo): ${daysSinceContributorPullRequestsWereOpened.length}
352+
Average open time: ${averageDaysContributorPullRequestsAreOpenFor} days.
415353
416-
Average open time (all PRs): ${averageDaysPullRequestsAreOpenFor} days.
417-
418-
Number of open pull requests in the fleetdm/fleet Github repo: ${daysSincePullRequestsWereOpened.length}
354+
Number of open pull requests in the fleetdm/fleet Github repo: ${daysSinceContributorPullRequestsWereOpened.length}
419355
420356
Bugs:
421357
---------------------------
422-
Average open time (released bugs): ${averageNumberOfDaysReleasedBugsAreOpenFor} days.
423-
424-
Average open time (unreleased bugs): ${averageNumberOfDaysUnreleasedBugsAreOpenFor} days.
425-
426-
Number of issues with the "bug" label closed in the past week: ${allBugsClosedInPastWeek.length}
427-
428358
Average open time (all bugs): ${averageNumberOfDaysBugsAreOpenFor} days.
429359
430-
Number of issues with the "bug" label opened in the past week: ${allBugsCreatedInPastWeek.length}
431-
432360
Number of open issues with the "bug" label in fleetdm/fleet: ${daysSinceBugsWereOpened.length}
433361
434-
Number of open issues with the "~released bug" label in fleetdm/fleet: ${allBugsWithReleasedLabel.length}
435-
436-
Number of open issues with the "~unreleased bug" label in fleetdm/fleet: ${allBugsWithUnreleasedLabel.length}
437-
438-
Endpoint Operations:
439-
---------------------------
440-
Number of issues with the "#g-endpoint-ops" and "bug" labels opened in the past week: ${allBugsCreatedInPastWeekEndpointOps.length}
441-
442-
Number of issues with the "#g-endpoint-ops", "bug", and "customer-" labels opened in the past week: ${allBugsCreatedInPastWeekEndpointOpsCustomerImpacting.length}
443-
444-
Number of issues with the "#g-endpoint-ops", "bug", and "~released bug" labels opened in the past week: ${allBugsCreatedInPastWeekEndpointOpsReleased.length}
362+
Bugs older than 32 days: ${allBugs32DaysOrOlder.length}
445363
446-
Number of issues with the "#g-endpoint-ops", "bug", and "~unreleased bug" labels opened in the past week: ${allBugsCreatedInPastWeekEndpointOpsUnreleased.length}
447-
448-
MDM:
449-
---------------------------
450-
Number of issues with the "#g-mdm" and "bug" labels opened in the past week: ${allBugsCreatedInPastWeekMobileDeviceManagement.length}
364+
Bugs reported by customers in the past week: ${allBugsReportedByCustomersInPastWeek.length}
451365
452-
Number of issues with the "#g-mdm", "bug", and "customer-" labels opened in the past week: ${allBugsCreatedInPastWeekMobileDeviceManagementCustomerImpacting.length}
453-
454-
Number of issues with the "#g-mdm", "bug", and "~released bug" labels opened in the past week: ${allBugsCreatedInPastWeekMobileDeviceManagementReleased.length}
366+
Number of issues with the "bug" label closed in the past week: ${allBugsClosedInPastWeek.length}
455367
456-
Number of issues with the "#g-mdm", "bug", and "~unreleased bug" labels opened in the past week: ${allBugsCreatedInPastWeekMobileDeviceManagementUnreleased.length}
368+
Number of issues with the "bug" label opened in the past week: ${allBugsCreatedInPastWeek.length}
457369
458370
Handbook Pull requests
459371
---------------------------------------

0 commit comments

Comments
 (0)