-
Notifications
You must be signed in to change notification settings - Fork 33
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
Attaching files post-initialization #18
Comments
It seems like if we don't allow automatic uploads, we can simply put more files in the proper crash UUID's 'attachments' folder and they get uploaded auto-magically. This is a useful side-effect though the issue becomes knowing the UUID of the crash so we know where to move the attachment to the next time the app is run. I guess we can just got by the date/time stamps on the DMP and other files but I was hoping for a more reliable way. I'd also love the ability to add more attributes post-crash. Users want to include notes about what they were doing at the time of the crash to help us as well as provide their information so we can contact them. I see no way of doing that without manually opening up the minidump and writing it directly. Perhaps we're just really petting the cat backwards with all of these intentions? |
Classically, this is what I've seen being used. It's even possible to create symlinks on the fly and have generic Having said that, in the future, we could look at improving this. |
We've got a bit of an issue and I can only think of bad solutions so I'm hoping I've just overlooked something obvious. We're using the "attachments" argument to 'StartHandler' to attach our log file on a crash. This works great. The log file is always there on disk...it's always useful to us...and it's uploaded successfully every time.
The issue is that there are often needs to add MORE files at a later time....files that did not exist at the time the handler was started and whose name/location might not be predictable early either. These are non-fatal incidents where the process is still healthy. (A GPU error for example). We cannot find a way to add files later.
Some ideas that I considered:
Would you guys have any recommendations on this issue?
Thanks!
The text was updated successfully, but these errors were encountered: