This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking.git


The following commit(s) were added to refs/heads/master by this push:
     new cdf69fa  docs: fix typo (#6271)
cdf69fa is described below

commit cdf69fae63f010c636565fc8aca5c38727b518ef
Author: Stephen Ni <[email protected]>
AuthorDate: Sat Jan 30 21:03:04 2021 +0800

    docs: fix typo (#6271)
---
 docs/en/concepts-and-designs/oal.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/en/concepts-and-designs/oal.md 
b/docs/en/concepts-and-designs/oal.md
index 35a1b2e..af618b6 100644
--- a/docs/en/concepts-and-designs/oal.md
+++ b/docs/en/concepts-and-designs/oal.md
@@ -123,8 +123,8 @@ endpoint_success = from(Endpoint.*).filter(status == 
true).percent()
 // Calculate the sum of response code in [404, 500, 503], for each service.
 endpoint_abnormal = from(Endpoint.*).filter(responseCode in [404, 500, 
503]).sum()
 
-// Calculate the sum of request type in [RequestType.PRC, RequestType.gRPC], 
for each service.
-endpoint_rpc_calls_sum = from(Endpoint.*).filter(type in [RequestType.PRC, 
RequestType.gRPC]).sum()
+// Calculate the sum of request type in [RequestType.RPC, RequestType.gRPC], 
for each service.
+endpoint_rpc_calls_sum = from(Endpoint.*).filter(type in [RequestType.RPC, 
RequestType.gRPC]).sum()
 
 // Calculate the sum of endpoint name in ["/v1", "/v2"], for each service.
 endpoint_url_sum = from(Endpoint.*).filter(endpointName in ["/v1", 
"/v2"]).sum()

Reply via email to