From 5b5a122b2c2db5aa3fdf0745f0a44e0b0aaafc10 Mon Sep 17 00:00:00 2001 From: zhang-wei Date: Wed, 23 Sep 2020 23:25:30 +0800 Subject: [PATCH] doc fix (#5548) --- docs/en/concepts-and-designs/oal.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/docs/en/concepts-and-designs/oal.md b/docs/en/concepts-and-designs/oal.md index c297072df8..fb8c920302 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() -- GitLab