-
Notifications
You must be signed in to change notification settings - Fork 170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Add CopilotUsageChecker class for data analysis #63
Open
DevOps-zhuang
wants to merge
1
commit into
github-copilot-resources:main
Choose a base branch
from
DevOps-zhuang:feature/DataQuality
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
// 首先,导入Metrics类 | ||
import { Metrics } from '../model/Metrics'; | ||
|
||
export class CopilotUsageChecker { | ||
private data: Metrics[]; | ||
private missingDates: string[]; | ||
private emptyBreakdowns: string[]; | ||
private zeroActivityDays: string[]; | ||
|
||
constructor(jsonText: string) { | ||
// Map to Metrics instances | ||
this.data = JSON.parse(jsonText).map((item: any) => new Metrics(item)); | ||
this.missingDates = []; | ||
this.emptyBreakdowns = []; | ||
this.zeroActivityDays = []; | ||
} | ||
|
||
private parseISO(isoString: string): Date { | ||
return new Date(isoString); | ||
} | ||
|
||
private addDays(date: Date, days: number): Date { | ||
const result = new Date(date); | ||
result.setDate(result.getDate() + days); | ||
return result; | ||
} | ||
|
||
private differenceInCalendarDays(date1: Date, date2: Date): number { | ||
const diffTime = Math.abs(date2.getTime() - date1.getTime()); | ||
return Math.ceil(diffTime / (1000 * 60 * 60 * 24)); | ||
} | ||
|
||
private formatDate(date: Date): string { | ||
return date.toISOString().split('T')[0]; | ||
} | ||
|
||
private checkDatesContinuity(): void { | ||
const dates = this.data.map(item => this.parseISO(item.day)).sort((a, b) => a.getTime() - b.getTime()); | ||
for (let i = 1; i < dates.length; i++) { | ||
const diff = this.differenceInCalendarDays(dates[i], dates[i - 1]); | ||
if (diff > 1) { | ||
let missingDate = this.addDays(dates[i - 1], 1); | ||
while (this.differenceInCalendarDays(dates[i], missingDate) > 0) { | ||
this.missingDates.push(this.formatDate(missingDate)); | ||
missingDate = this.addDays(missingDate, 1); | ||
} | ||
} | ||
} | ||
} | ||
|
||
private checkEmptyBreakdowns(): void { | ||
this.data.forEach(item => { | ||
if (!item.breakdown || item.breakdown.length === 0) { | ||
this.emptyBreakdowns.push(item.day); | ||
} | ||
}); | ||
} | ||
|
||
private checkZeroActivityDays(): void { | ||
this.data.forEach(item => { | ||
//&& item.total_chat_turns === 0 && item.total_lines_suggested === 0, and just ignore the total_chat_turns now. will add it later. | ||
if (item.total_lines_suggested === 0 ) { | ||
this.zeroActivityDays.push(item.day); | ||
} | ||
}); | ||
} | ||
|
||
public runChecks(): { missingDates: string[], emptyBreakdowns: string[], zeroActivityDays: string[], hasDataIssues: boolean } { | ||
this.checkDatesContinuity(); | ||
this.checkEmptyBreakdowns(); | ||
this.checkZeroActivityDays(); | ||
const hasDataIssues = this.missingDates.length > 0 || this.emptyBreakdowns.length > 0 || this.zeroActivityDays.length > 0; | ||
return { missingDates: this.missingDates, emptyBreakdowns: this.emptyBreakdowns, zeroActivityDays: this.zeroActivityDays, hasDataIssues }; | ||
} | ||
} | ||
|
||
// Usage example: | ||
// const jsonText = '...'; // JSON text from enterprise_response_sample.json | ||
// const checker = new CopilotUsageChecker(jsonText); | ||
// const { missingDates, emptyBreakdowns, zeroActivityDays,hasDataIssues } = checker.runChecks(); | ||
// console.log("Missing dates:", missingDates); | ||
// console.log("Days with empty breakdowns:", emptyBreakdowns); | ||
// console.log("Days with zero activity:", zeroActivityDays); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe we shouldn't use the 'copy message' class
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, it is because of the css class we are using. and I am redesigin it by adding persistent data save and fetch here, will update it togeterh, thanks for your pointing out it.