Answer
There are two main ways to measure p99 and p90 latency for external API calls in SigNoz:
Method 1: Using External API Monitoring
- Go to the External API Monitoring section
- Select the domain you want to monitor
- In the pop-up window, select "Endpoint Stats"
- Here you can view the p99 latency metrics
Method 2: Using Traces Explorer
- Navigate to the Traces Explorer
- Use the query builder with the following query:
kind_string = 'Client' AND http_url EXISTS
- Choose the aggregation type (p90 or p99) for
duration_nano
- Group by your preferred parameter
- Save this view for easier future access
For more information about kind_string values and usage, refer to the ClickHouse traces query documentation and the OpenTelemetry span specifications.
Answer
There are two main ways to measure p99 and p90 latency for external API calls in SigNoz:
Method 1: Using External API Monitoring
Method 2: Using Traces Explorer
kind_string = 'Client' AND http_url EXISTSduration_nanoFor more information about kind_string values and usage, refer to the ClickHouse traces query documentation and the OpenTelemetry span specifications.