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
Problem:
Logs contain log messages which don't uniformly refer to identifiers (like the TES task ID). This makes it difficult and/or impossible to trace the life cycle of a TES task through the system.
Can do something like this: logger.LogInformation("TES task: {tesTask.Id} BatchTaskState: {combinedBatchTaskInfo.BatchTaskState}", tesTask.Id, combinedBatchTaskInfo.BatchTaskState);
This issue is to comprehensively design a better way to improve logging so that it's easier to debug the lifecycle of a TES task and see any Batch issues that may be related to it, as well as easily query it in Application Insights traces. The solution should include clear examples of how to query in Application Insights traces.
The text was updated successfully, but these errors were encountered:
Problem:
Logs contain log messages which don't uniformly refer to identifiers (like the TES task ID). This makes it difficult and/or impossible to trace the life cycle of a TES task through the system.
Solution:
Instead of:
Can do something like this:
logger.LogInformation("TES task: {tesTask.Id} BatchTaskState: {combinedBatchTaskInfo.BatchTaskState}", tesTask.Id, combinedBatchTaskInfo.BatchTaskState);
This issue is to comprehensively design a better way to improve logging so that it's easier to debug the lifecycle of a TES task and see any Batch issues that may be related to it, as well as easily query it in Application Insights traces. The solution should include clear examples of how to query in Application Insights traces.
The text was updated successfully, but these errors were encountered: