Update oal.md (#6666)

This commit is contained in:
FrankyXu 2021-04-02 12:13:59 +08:00 committed by GitHub
parent 2af77d4d03
commit 0dd9cc1e18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ endpoint_rpc_calls_sum = from(Endpoint.*).filter(type in [RequestType.RPC, Reque
endpoint_url_sum = from(Endpoint.*).filter(endpointName in ["/v1", "/v2"]).sum()
// Calculate the sum of calls for each service.
endpoint_calls = from(Endpoint.*).sum()
endpoint_calls = from(Endpoint.*).count()
// Calculate the CPM with the GET method for each service.The value is made up with `tagKey:tagValue`.
service_cpm_http_get = from(Service.*).filter(tags contain "http.method:GET").cpm()