You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #219 we started capturing Helm logs, the output at present could however be improved to make it easier to distinguish lines and provide indicators about for example the time it took for a sub action to run.
Current output:
Last Helm logs:creating 8 resource(s)beginning wait for 8 resources with timeout of 5m0sDeployment is not ready: default/myapp-back. 0 out of 1 expected pods are ready
Improved example output:
Last Helm logs:[<timestamp>] creating 8 resource(s)[<timestamp>] beginning wait for 8 resources with timeout of 5m0s[<timestamp>] Deployment is not ready: default/myapp-back. 0 out of 1 expected pods are ready
The text was updated successfully, but these errors were encountered:
I wanted to give this a try but I'm not sure in which place I would add the timestamps. I would have added them in the LogBuffer.Log method, so that the recorded timestamps match the time they were logged. If I add them in wrapActionError or handleHelmActionResult, all timestamps of the individual captured messages will be the same, which is not what we want here, I assume.
Or maybe I was all wrong and there is another place where it needs to be added? Any hint is appreciated :)
In #219 we started capturing Helm logs, the output at present could however be improved to make it easier to distinguish lines and provide indicators about for example the time it took for a sub action to run.
Current output:
Improved example output:
The text was updated successfully, but these errors were encountered: