Logs
- How I convert time zones for logs and meetings without doing mental math
Time zone mistakes cause confusing incident timelines and missed meetings. I prefer converting explicitly instead of doing the offset in my head. The Time Zone Converter tool is useful because it lets me check the result …
- How I filter Docker logs without losing the useful lines
Docker logs can get noisy very quickly. A service may print hundreds or thousands of lines, and the line you need is often buried in the middle. The basic command is:
- How I parse logs before searching randomly
Logs become easier to investigate when they are split into fields instead of treated as one giant wall of text. The Log Parser tool gives me a safe place to test the idea before I put it into a script, server, or …
- How I read Unix timestamps without guessing seconds or milliseconds
A timestamp bug often starts with one question: is this value in seconds or milliseconds? Getting that wrong can move dates to 1970 or far into the future. The Timestamp Converter tool is useful because it lets me check …