diff --git a/Jenkinsfile b/Jenkinsfile index 64e0bbdf86ff4bc881dc61d145a9c9a7065ac8b1..3b62b50e77d791882bfb042a48add961c0447c19 100755 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -79,10 +79,6 @@ pipeline { } post { - success { - junit '**/target/surefire-reports/*.xml' - } - cleanup { deleteDir() } diff --git a/docs/en/concepts-and-designs/scope-definitions.md b/docs/en/concepts-and-designs/scope-definitions.md index 3a88a1f75fe5f26a4d4effc02fbe6cb25c429354..db8925860d0a8ea8ebd17d9b1fb6c1f50bb6b18e 100644 --- a/docs/en/concepts-and-designs/scope-definitions.md +++ b/docs/en/concepts-and-designs/scope-definitions.md @@ -5,11 +5,13 @@ By using Aggregation Function, the requests will group by time and **Group Key(s | Name | Remarks | Group Key | Type | |---|---|---|---| +| name | Represent the service name of each request. | | string | +| serviceInstanceName | Represent the name of the service instance id referred. | | string | | endpoint | Represent the endpoint path of each request. | | string | | latency | Represent how much time of each request. | | int(in ms) | | status | Represent whether success or fail of the request. | | bool(true for success) | | responseCode | Represent the response code of HTTP response, if this request is the HTTP call. e.g. 200, 404, 302| | int | - +| type | Represent the type of each request. Such as: Database, HTTP, RPC, gRPC. | | enum | ### SCOPE `Service`