Confirmed users
321
edits
mNo edit summary |
No edit summary |
||
| Line 3: | Line 3: | ||
# Client-side exception handler - win32 work happening in [https://bugzilla.mozilla.org/show_bug.cgi?id=354980 bug 354980]. | # Client-side exception handler - win32 work happening in [https://bugzilla.mozilla.org/show_bug.cgi?id=354980 bug 354980]. | ||
# Client-side minidump sender - win32 work happening in [https://bugzilla.mozilla.org/show_bug.cgi?id=354980 bug 354980]. | # Client-side minidump sender - win32 work happening in [https://bugzilla.mozilla.org/show_bug.cgi?id=354980 bug 354980]. | ||
# Server-side minidump collector, CGI to accept POSTed minidump data and store it somewhere | # Server-side minidump collector, CGI to accept POSTed minidump data and store it somewhere, or just call the processor directly. [http://mavra.perilith.com/~luser/airbag-collector/index.txt My simplistic collector] | ||
# Server-side minidump processor - | # Server-side minidump processor - Mostly implemented by [http://airbag.googlecode.com/svn/trunk/src/processor/ airbag processor], in the minidump_stackwalk example program. We will need to implement a SymbolSupplier that can match up modules with their symbols (This could be coupled with the minidump collector) | ||
# Build-time symbol | # Build-time symbol extractor - Probably provided by [http://airbag.googlecode.com/svn/trunk/src/tools/windows/dump_syms/ airbag tools] | ||
# Server-side symbol store - For matching up stackdumps with symbols. | # Server-side symbol store - For matching up stackdumps with symbols. This probably just needs to be an organized filesystem, ala, Microsoft's Symbol Server. The symbol files extracted from firefox.pdb on Windows appear to be in the 30-60Mb range, but since they're text they compress very well. | ||
# Server-side webapp to show details of crash reports, like talkback-public currently, will need a database backend | # Server-side webapp to show details of crash reports, like talkback-public currently, will need a database backend | ||
[http://groups.google.com/group/airbag-discuss/browse_thread/thread/2a082e9c8636031c Mento's post] outlines the Airbag project's proposed scope. | [http://groups.google.com/group/airbag-discuss/browse_thread/thread/2a082e9c8636031c Mento's post] outlines the Airbag project's proposed scope. | ||