oarevalo / BugLogHQ

BugLogHQ is a tool to centralize the handling of automated bug reports from multiple applications. BugLogHQ provides a unified view of error messages sent from any number of applications, allowing the developer to search, graph, forward, and explore the bug reports submitted by the applications.
http://www.bugloghq.com
154 stars 67 forks source link

Add a listener that works with Amazon's SQS #5

Open oarevalo opened 12 years ago

oarevalo commented 12 years ago

The idea is that a custom buglog client instead of calling the buglog server directly, will put the bug reports in an Amazon's SQS queue. Then on the server side, a listener will regularly poll the queue and obtain the reports from there.

This would help by decoupling the client application with the buglog server.

KrunchMuffin commented 12 years ago

only problem is that messages can only be up to 64k

"The message body can contain up to 64 KB of text in any format."

oarevalo commented 12 years ago

That could be a problem. When using SQS the bug reports would need to be shorter, or maybe just not include the "HTML Report" part, which is the longest. But still will send the message, application, host, severity and exception details.