-
Notifications
You must be signed in to change notification settings - Fork 226
Print end-of-query summary logs to Query Server Console #1264
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
Changes from 8 commits
7e603d2
e996660
24ef6e9
cdc18dc
14f680f
886e75d
e986acf
8faa7c0
a691d6f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -259,6 +259,14 @@ export function findQueryLogFile(resultPath: string): string { | |||||
| return path.join(resultPath, 'query.log'); | ||||||
| } | ||||||
|
|
||||||
| export function findQueryStructLogFile(resultPath: string): string { | ||||||
| export function findQueryEvalLogFile(resultPath: string): string { | ||||||
| return path.join(resultPath, 'evaluator-log.jsonl'); | ||||||
| } | ||||||
|
|
||||||
| export function findQueryEvalLogSummaryFile(resultPath: string): string { | ||||||
| return path.join(resultPath, 'evaluator-log.jsonl.summary'); | ||||||
| } | ||||||
|
|
||||||
| export function findQueryEvalLogEndSummaryFile(resultPath: string): string { | ||||||
| return path.join(resultPath, 'eoq-evaluator-log.jsonl.summary'); | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also here:
Suggested change
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as above, it's not a JSONL file but rather a condensed version of the summary text file. I didn't know how to name it so appended
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I like this one now that the |
||||||
| } | ||||||
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.
Is this a valid json or jsonl file? If so, it should probably use the proper file extension. Maybe:
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.
It's not — it's a generated text file summarizing the contents of the jsonl file.
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.
OK...then maybe avoid the
jsonlcomponent entirely?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.
That seems agreeable to me, I'll hold to see if @edoardopirovano who named the summary file originally has objections 😸
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.
Just calling it
.summaryseems perfectly reasonable to me, yep!