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
While debugging a problem via nomad operator debug, I found spurious line breaks in the server logs (the file monitor.log in the bundle). This is pretty minor on its face but complicates grepping through the very large log bundles that are characteristic of customer support cases.
It doesn't appear to be load-related and is easy to replicate on Vagrant running Nomad in dev mode:
In one terminal run nomad operator debug -server-id=all -interval=1m -duration=1m
In another terminal run while true; do nomad job status; sleep .5; done to generate some log traffic.
I've confirmed this on the current HEAD (Nomad 1.0.2-dev) but I originally noticed this on a log bundle generated by Nomad 0.12.5+ent.
I'm going to lock this issue because it has been closed for 120 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
While debugging a problem via
nomad operator debug
, I found spurious line breaks in the server logs (the filemonitor.log
in the bundle). This is pretty minor on its face but complicates grepping through the very large log bundles that are characteristic of customer support cases.It doesn't appear to be load-related and is easy to replicate on Vagrant running Nomad in dev mode:
nomad operator debug -server-id=all -interval=1m -duration=1m
while true; do nomad job status; sleep .5; done
to generate some log traffic.I've confirmed this on the current HEAD (Nomad 1.0.2-dev) but I originally noticed this on a log bundle generated by Nomad 0.12.5+ent.
Here's an example output:
The extra break is a
0x0a
, so a LF character:The text was updated successfully, but these errors were encountered: