-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: performance logs are now captured directly instead of throu…
…gh console logs
- Loading branch information
Showing
2 changed files
with
48 additions
and
19 deletions.
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
6 changes: 4 additions & 2 deletions
6
inst/sql/sql_server/export/performance/sqlAchillesPerformance.sql
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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
select aa.analysis_id, aa.analysis_name, aa.category, stratum_1 elapsed_seconds | ||
select ap.analysis_id, aa.analysis_name, aa.category, ap.elapsed_seconds elapsed_seconds | ||
from @results_database_schema.ACHILLES_ANALYSIS aa | ||
join @results_database_schema.ACHILLES_RESULTS ar on aa.analysis_id + 2000000 = ar.analysis_id | ||
join @results_database_schema.ACHILLES_PERFORMANCE ap on ap.analysis_id = aa.analysis_id | ||
union | ||
select aa.analysis_id, aa.analysis_name, aa.category, stratum_1 elapsed_seconds | ||
select ap.analysis_id, aa.analysis_name, aa.category, ap.elapsed_seconds elapsed_seconds | ||
from @results_database_schema.ACHILLES_ANALYSIS aa | ||
join @results_database_schema.ACHILLES_RESULTS_DIST ar on aa.analysis_id + 2000000 = ar.analysis_id | ||
join @results_database_schema.ACHILLES_PERFORMANCE ap on ap.analysis_id = aa.analysis_id |