Understand Log Stream Naming and High-Volume Logging
mainFor high-volume applications using process pools, avoid sending logs from multiple independent processes to the same log stream. This causes sequence token synchronization errors and performance overhead.
Best Practice: Use unique log stream names per source. Watchtower's default format is {machine_name}/{program_name}/{logger_name}/{process_id}. You can also use template variables like {logger_name} or {strftime} to partition logs into different streams.