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
Can we get Terry into this thread to discuss the way the logs are compiled now. I think the easiest would be that he shares the scripts that do it, I modify it, and he implements it.
The issue currently is that the logs are parsed in a totally non-standard way, which results in risk of errors when they are parsed to meaningful format. Ideally for any data, but particularly for something as important as QOS data, it's best practice to handle formats in the source.
For example, now we have entries where one row has a timestamp, and then the following rows are entries related with that timestamp. Whereas the standard way is to have the timestamp together with each event. More generally, all the logs should follow a standard "line == event" approach where we always know that if it's a row, it's a self-contained event.
The text was updated successfully, but these errors were encountered:
So small changes, but big difference. The log file or the log folder could contain the header, or then the header could be contained in each record as well.
@m-anish
Can we get Terry into this thread to discuss the way the logs are compiled now. I think the easiest would be that he shares the scripts that do it, I modify it, and he implements it.
The issue currently is that the logs are parsed in a totally non-standard way, which results in risk of errors when they are parsed to meaningful format. Ideally for any data, but particularly for something as important as QOS data, it's best practice to handle formats in the source.
For example, now we have entries where one row has a timestamp, and then the following rows are entries related with that timestamp. Whereas the standard way is to have the timestamp together with each event. More generally, all the logs should follow a standard "line == event" approach where we always know that if it's a row, it's a self-contained event.
The text was updated successfully, but these errors were encountered: