Skip to content
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

#2180 - Additional log improvement #2326

Merged
merged 7 commits into from
Sep 22, 2023

Conversation

andrewsignori-aot
Copy link
Collaborator

@andrewsignori-aot andrewsignori-aot commented Sep 21, 2023

Log improvements

  • The date and time are now prepended in the job logger.
  • Added a visual hierarchy to identify better the child logs.
  • Changed the hierarchy organization to allow child process to be chronologically added, as seen in the image below (before the green ones, for instance, would be displayed altogether).

image

Created a new method to inspect the summary message to indicate if there is something that needs attention in the logs.

image

Scheduler Enqueuer Query Change

The query was not filtering by application status and I thought that it would be better to ensure that only Submitted and Completed applications would be considered to have a workflow queued.

Refactor

Adjusted the logs for the assessment-workflow-enqueuer and start-application-assessment to exclusively use the new ProcessSummary class instead of the QueueProcessSummary. The suggestion is intended to be a POC to have the QueueProcessSummary marked as deprecated.

@sonarqubecloud
Copy link

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
0.0% 0.0% Duplication

@github-actions
Copy link

Backend Unit Tests Coverage Report

Totals Coverage
Statements: 17.44% ( 2205 / 12641 )
Methods: 8.1% ( 129 / 1593 )
Lines: 20.19% ( 1932 / 9571 )
Branches: 9.75% ( 144 / 1477 )

@github-actions
Copy link

E2E Queue Consumers Coverage Report

Totals Coverage
Statements: 74.93% ( 514 / 686 )
Methods: 67.47% ( 56 / 83 )
Lines: 76.96% ( 451 / 586 )
Branches: 41.18% ( 7 / 17 )

@github-actions
Copy link

E2E Workflow Workers Coverage Report

Totals Coverage
Statements: 46.73% ( 300 / 642 )
Methods: 40% ( 32 / 80 )
Lines: 51.02% ( 251 / 492 )
Branches: 24.29% ( 17 / 70 )

@github-actions
Copy link

E2E SIMS API Coverage Report

Totals Coverage
Statements: 54.48% ( 3995 / 7333 )
Methods: 51.31% ( 488 / 951 )
Lines: 59.3% ( 3245 / 5472 )
Branches: 28.79% ( 262 / 910 )

// In case an unexpected error happen the finally block will still be able to
// output the partial information captured by the processSummary.
const serviceProcessSummary = new ProcessSummary();
processSummary.children(serviceProcessSummary);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let me know if I am missing something. this part can be done inside process summary class constructor right?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, I am not following the comment. Do you mean the association of a child process?
Here we have a parent log and the creating of a child log to capture the service-related logs. I am not sure what could be done inside the ProcessSummary constructor.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I get it now. it is for the first level of indentation.
image

My understanding is better now.

With that in mind, just wondering if service process summary could be retuned by a getter in the class like this. So that we can avoid doing this assignment at processor level.

await this.workflowEnqueuerService.enqueueStartAssessmentWorkflows(
        processSummary.getServiceProcessSummary(),
      );

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The idea of having it created at the processor lever and passing it as a reference is to allow access to it in case some unhandled exception happens inside the service. Having it at the processor level allows us to dump any information added to it in the final block. Does it make sense?

@@ -19,6 +18,7 @@ export interface QueueProcessSummaryResult {
/**
* Allow the logs aggregation for a process summary and optionally
* allow the same logs to be saved to different outputs.
* @deprecated please use ProcessSummary from sims/utilities/logger.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

* Allows a log entry that represents either a single log
* or a new collection of child entries.
*/
type LogInfoEntry = LogEntry | ProcessSummary[];
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@@ -94,6 +94,9 @@ export class ApplicationService {
);
}),
)
.andWhere("application.applicationStatus IN (:...status)", {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Copy link
Collaborator

@dheepak-aot dheepak-aot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good. Thanks for the additional effort 👍

I just have a minor question. not a blocker.

Copy link
Contributor

@ann-aot ann-aot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 Nice work @andrewsignori-aot

Copy link
Contributor

@andrepestana-aot andrepestana-aot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

@andrewsignori-aot andrewsignori-aot merged commit 93fd778 into main Sep 22, 2023
@andrewsignori-aot andrewsignori-aot deleted the feature/#2180-additional-log-improvement branch September 22, 2023 23:01
@andrewsignori-aot andrewsignori-aot temporarily deployed to DEV September 22, 2023 23:10 — with GitHub Actions Inactive
@andrewsignori-aot andrewsignori-aot temporarily deployed to DEV September 22, 2023 23:11 — with GitHub Actions Inactive
@andrewsignori-aot andrewsignori-aot temporarily deployed to DEV September 22, 2023 23:11 — with GitHub Actions Inactive
@andrewsignori-aot andrewsignori-aot temporarily deployed to DEV September 22, 2023 23:11 — with GitHub Actions Inactive
@andrewsignori-aot andrewsignori-aot temporarily deployed to DEV September 22, 2023 23:11 — with GitHub Actions Inactive
@andrewsignori-aot andrewsignori-aot temporarily deployed to DEV September 22, 2023 23:14 — with GitHub Actions Inactive
@andrewsignori-aot andrewsignori-aot temporarily deployed to DEV September 22, 2023 23:14 — with GitHub Actions Inactive
Copy link
Contributor

@guru-aot guru-aot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Enhancement New feature or request Queue Consumers
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants