peng-yongsheng commented on issue #105: trace/queryBasicTraces
URL: 
https://github.com/apache/incubator-skywalking-ui/issues/105#issuecomment-369494116
 
 
   #### INPUT
   ```
   {
     queryBasicTraces(condition: {paging: {pageSize: 5}, traceId: 
"11377.11378.11379"}) {
       total
       traces {
         operationName
         duration
         start
         isError
         traceId
       }
     }
   }
   ```
   
   #### OUTPUT
   ```
   {
     "data": {
       "queryBasicTraces": {
         "total": 2,
         "traces": [
           {
             "operationName": "/dubbox-case/case/dubbox-rest",
             "duration": 2000,
             "start": "1490976210001",
             "isError": false
           },
           {
             "operationName": 
"org.skywaking.apm.testcase.dubbo.services.GreetService.doBusiness()",
             "duration": 1000,
             "start": "1490976210501",
             "isError": false
           }
         ]
       }
     }
   }
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to