From 454611db5e113ac6f3198758f2c92817fe20a2a0 Mon Sep 17 00:00:00 2001 From: Wu Sheng Date: Mon, 30 Jul 2018 17:32:00 +0800 Subject: [PATCH] Add a missing word. --- docs/en/concepts-and-designs/oal.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/en/concepts-and-designs/oal.md b/docs/en/concepts-and-designs/oal.md index 4a7934f66f..34c26b58db 100644 --- a/docs/en/concepts-and-designs/oal.md +++ b/docs/en/concepts-and-designs/oal.md @@ -54,7 +54,7 @@ Calculate the metric data from each request of the service instance. | Name | Remarks | Group Key | Type | |---|---|---|---| -| id | Represent the unique id of the service, usually a number. | yes | int | +| id | Represent the unique id of the service instance, usually a number. | yes | int | | name | Represent the name of the service instance. Such as `ip:port@Service Name`. **Notice**: current native agent uses `processId@Service name` as instance name, which is useless when you want to setup a filter in aggregation. | | string| | serviceName | Represent the name of the service. | | string | | endpointName | Represent the name of the endpoint, such a full path of HTTP URI. | | string| @@ -71,7 +71,7 @@ Calculate the metric data if the service instance is a JVM and collected by java | Name | Remarks | Group Key | Type | |---|---|---|---| -| id | Represent the unique id of the service, usually a number. | yes | int | +| id | Represent the unique id of the service instance, usually a number. | yes | int | | name | Represent the name of the service instance. Such as `ip:port@Service Name`. **Notice**: current native agent uses `processId@Service name` as instance name, which is useless when you want to setup a filter in aggregation. | | string| | serviceName | Represent the name of the service. | | string | | use_percent | Represent how much percent of cpu time cost| | double| @@ -80,7 +80,7 @@ Calculate the metric data if the service instance is a JVM and collected by java | Name | Remarks | Group Key | Type | |---|---|---|---| -| id | Represent the unique id of the service, usually a number. | yes | int | +| id | Represent the unique id of the service instance, usually a number. | yes | int | | name | Represent the name of the service instance. Such as `ip:port@Service Name`. **Notice**: current native agent uses `processId@Service name` as instance name, which is useless when you want to setup a filter in aggregation. | | string| | serviceName | Represent the name of the service. | | string | | isHeap | Represent this value the memory metric values are heap or not | | bool | @@ -93,7 +93,7 @@ Calculate the metric data if the service instance is a JVM and collected by java | Name | Remarks | Group Key | Type | |---|---|---|---| -| id | Represent the unique id of the service, usually a number. | yes | int | +| id | Represent the unique id of the service instance, usually a number. | yes | int | | name | Represent the name of the service instance. Such as `ip:port@Service Name`. **Notice**: current native agent uses `processId@Service name` as instance name, which is useless when you want to setup a filter in aggregation. | | string| | serviceName | Represent the name of the service. | | string | | poolType | Include CODE_CACHE_USAGE, NEWGEN_USAGE, OLDGEN_USAGE, SURVIVOR_USAGE, PERMGEN_USAGE, METASPACE_USAGE based on different version of JVM. | | enum | -- GitLab