hanahmily opened a new issue #1746: Test: No cpm and sla value on Topology 
metric
URL: https://github.com/apache/incubator-skywalking/issues/1746
 
 
   Refer to #1710
   
   ## Requst
   ### Query
   ```graphql
     query TopologyMetric($duration: Duration!, $ids: [ID!]!,  $idsS: [ID!]!, 
$idsC: [ID!]!) {
       sla: getValues(metric: {
         name: "service_relation_server_call_sla"
         ids: $ids
       }, duration: $duration) {
         values {
           id
           value
         }
       }
       cpmS: getValues(metric: {
         name: "service_relation_server_cpm"
         ids: $idsS
       }, duration: $duration) {
         values {
           id
           value
         }
       }
       latencyS: getValues(metric: {
         name: "service_relation_client_resp_time"
         ids: $idsS
       }, duration: $duration) {
         values {
           id
           value
         }
       }
       cpmC: getValues(metric: {
         name: "service_relation_client_cpm"
         ids: $idsC
       }, duration: $duration) {
         values {
           id
           value
         }
       }
       latencyC: getValues(metric: {
         name: "service_relation_client_resp_time"
         ids: $idsC
       }, duration: $duration) {
         values {
           id
           value
         }
       }
     }
   ```
   
   ### Variables
   
   ```json
   {"duration":{"start":"2018-10-10 1103","end":"2018-10-10 
1103","step":"MINUTE"},"ids":["2","5","3"],"idsS":["USER-2-2"],"idsC":["2_4","3_5"]}}
   ```
   
   ## Response
   
   ```json
   
{"data":{"sla":{"values":[]},"cpmS":{"values":[]},"latencyS":{"values":[]},"cpmC":{"values":[{"id":"2_4","value":0},{"id":"3_5","value":0}]},"latencyC":{"values":[{"id":"2_4","value":1660},{"id":"3_5","value":980}]}}}
   ```

----------------------------------------------------------------
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:
[email protected]


With regards,
Apache Git Services

Reply via email to