Little-kangaroo opened a new issue #7242:
URL: https://github.com/apache/skywalking/issues/7242
Please answer these questions before submitting your issue.
- Why do you submit this issue?
- [x] Question or discussion
- [ ] Bug
- [ ] Requirement
- [ ] Feature or performance improvement
___
### Question
- What do you want to know?
When I was debugging, I found that the parameters when calling the method
were like this
`query queryData($endpointId: ID!,$duration: Duration!) {
endpointP99: getLinearIntValues(metric: {
name: "endpoint_p99"
id: $endpointId
}, duration: $duration) { values { value } }
endpointP95: getLinearIntValues(metric: {
name: "endpoint_p95"
id: $endpointId
}, duration: $duration) { values { value } }
endpointP90: getLinearIntValues(metric: {
name: "endpoint_p90"
id: $endpointId
}, duration: $duration) { values { value } }
endpointP75: getLinearIntValues(metric: {
name: "endpoint_p75"
id: $endpointId
}, duration: $duration) { values { value } }
endpointP50: getLinearIntValues(metric: {
name: "endpoint_p50"
id: $endpointId
}, duration: $duration) { values { value } }}`
but when the method was executed here

**_endpointP99_** is an UNKNOWN, so the returned data defaults to 0
Only found in the **mapping**

So how should I get data like endpoint_p99?
___
### Bug
- Which version of SkyWalking, OS, and JRE?
- Which company or project?
- What happened?
If possible, provide a way to reproduce the error. e.g. demo application,
component version.
___
### Requirement or improvement
- Please describe your requirements or improvement suggestions.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]