tail
                                
                                 tail copied to clipboard
                                
                                    tail copied to clipboard
                            
                            
                            
                        [Revamped] Go package for reading from continuously updated files (tail -f)
When tailing without following, Tell() is not available due to the file handle already being closed. Instead, we can keep Location up to date to provide this information. Use case:...
When a StopAtEOF() is called the code should continue to send all lines to the Lines channel. The issue here is if the caller is not ready to receive a...
L.S. I have an issue with Tail. We have an application that watches a file to send changes to an event bus to generate alerts. The issue is that when...
If StopAtEOF is called, then all lines futher read from file are ignored. This fix allows to still return all data read until EOF. Fixes https://github.com/nxadm/tail/issues/37
The PR set the minimum supported version to Go 1.16. The `tail` library uses `fsnotify v1.6.0` which supports [Go 1.16](https://github.com/fsnotify/fsnotify/blob/5f8c606accbcc6913853fe7e083ee461d181d88d/README.md?plain=1#L4) and above.
**Describe the bug** I’ve encountered an intermittent issue with log collection loss during log rotation when using the [hpcloud/tail v1.0.0] library, tail is not stop or kill. I’ve reviewed previous...
#72 When we use tail to collect logs (starting from the beginning of the new file), during file renaming (when flush and rename events occur very close to each other),...
1. Loss situation: When the file flush and file renaming occur very close to each other, part of the content of the old file may be lost. 2. Duplication situation:...
**Is your feature request related to a problem? Please describe.** Hey there, thanks for modernizing this library! Currently the Logger interface looks like this: ```go type logger interface { Fatal(v...
**Describe the bug** When Location info is provided in tail.Config and the file is truncated to 0 and new lines are written to it. the tailer doesn't always return those...