-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When the papertrail firehose is verbose, papertrail -f
silently drops some logs
#93
Comments
I ended up going with option 2 - it's working well! I have a cron job that runs every minute. That cron job kicks off a python script. The python script calls the papertrail CLI to get all the log messages from the previous minute and dumps them to file. One annoyance is that the CLI doesn't format messages the same as Papertrail's s3 archiver. We need to convert the log messages to a matching format manually. Here's the python script: https://github.com/topher200/assertion-context/blob/42db16a17f2d0bb3f714e316663fd319f9a1373f/web/realtime_updater/run.py |
Also seeing this behaviour. Somewhat inconvenient. Thanks for your suggestions @topher200, sounds like option 2 is the way to go for us as well. 👍 |
We're also experiencing this issue, but manually chunking it isn't viable for tailing with the amount of logs we have (not to mention it delays our response time). Here's a snippet of the only line numbers output by
And then a minute later, another trace has massive gaps too:
The stack traces suggest that other single-line logs are being completely missed as lines get dropped everywhere. This issue has increased pressure on the devops team to move our logs to native AWS services 😞 |
Steps to reproduce:
papertrail -f
I assume this is by design! I'm guessing that if there are a ton of messages, you didn't want to overwhelm the servers or delay the CLI with too much data.
Regardless, I'd like a realtime (or near realtime) firehose to parse. What is the best way to get that data? My ideas:
Is there any way to get
papertrail -f
to stop dropping messages? If not, how would you develop a realtime-ish system?The text was updated successfully, but these errors were encountered: