diff --git a/docs/en/concepts-and-designs/oal.md b/docs/en/concepts-and-designs/oal.md index c297072df804541b5ddccd2cdbad7bce36a786fe..fb8c920302f2f3b58fbc7a0bf7bef39cc527c107 100644 --- a/docs/en/concepts-and-designs/oal.md +++ b/docs/en/concepts-and-designs/oal.md @@ -120,12 +120,6 @@ endpoint_percentile = from(Endpoint.latency).percentile(10) // Caculate the percent of response status is true, for each service. endpoint_success = from(Endpoint.*).filter(status == true).percent() -// Caculate the percent of response code in [200, 299], for each service. -endpoint_200 = from(Endpoint.*).filter(responseCode like "2%").percent() - -// Caculate the percent of response code in [500, 599], for each service. -endpoint_500 = from(Endpoint.*).filter(responseCode like "5%").percent() - // Caculate the sum of response code in [404, 500, 503], for each service. endpoint_abnormal = from(Endpoint.*).filter(responseCode in [404, 500, 503]).sum()