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
Sometimes the output of the JSON exporter is cut short producing invalid JSON syntax that is difficult to parse.
If a timeout flag is specified, the exporter will eventually output all the data otherwise some data might be lost when Scaphandre is manually stopped. This happens both for stdout and file output.
I think that the problem is caused by the BufWriter default size of 8 KiB and the high amount of data produced by the JSON exporter.
I've also noticed that it takes a long time (up to 20 seconds on my hardware) between consecutive outputs leading to a lot of data accumulating in the buffer.
The text was updated successfully, but these errors were encountered:
Sometimes the output of the JSON exporter is cut short producing invalid JSON syntax that is difficult to parse.
If a timeout flag is specified, the exporter will eventually output all the data otherwise some data might be lost when Scaphandre is manually stopped. This happens both for stdout and file output.
I think that the problem is caused by the BufWriter default size of 8 KiB and the high amount of data produced by the JSON exporter.
I've also noticed that it takes a long time (up to 20 seconds on my hardware) between consecutive outputs leading to a lot of data accumulating in the buffer.
The text was updated successfully, but these errors were encountered: