Changes between Version 2 and Version 3 of crash


Ignore:
Timestamp:
04/17/2012 05:51:42 PM (14 years ago)
Author:
chenxiaohu
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • crash

    v2 v3  
    11 
    22{{{ 
    3 "crash":[ 
    4   { 
    5     //name:crash名称,callstack:方法调用队列,time:crash发生时间 
     3"crash":{ 
     4  // stack 的md5,用于汇总错误 
     5  "cbf6f0912a84dfa8f3b547e522af3983":{ 
     6    // 错误名称 
    67    "name":"crashname1", 
    7     "callstack":"callstack1", 
    8     "time":12412454325 
     8    // 错误堆栈 
     9    "stack":"callstack1", 
     10    // 错误发生的时间数组,1970开始的秒数,java中System.currentTimeMillis()/1000 
     11    "time":[12412454325,12412454325] 
    912  }, 
    10   { 
     13  "90095ee4481a67ce43f53d190ce345fe":{ 
    1114    "name":"crashname2", 
    12     "callstack":"callstack2", 
    13     "time":12412454325 
    14   }, 
    15   { 
    16     "name":"crashname3", 
    17     "callstack":"callstack3", 
    18     "time":12412454325 
     15    "stack":"callstack2", 
     16    "time":[12412454325] 
    1917  } 
    20 ] 
     18} 
    2119}}}