From 28bf6c036db42ed5a4d214e06357fc02319889e1 Mon Sep 17 00:00:00 2001 From: Arianna Laudazzi Date: Tue, 12 Dec 2023 13:50:04 +0100 Subject: [PATCH 1/3] Fix wording on milliseconds --- packages/aws/data_stream/s3access/fields/fields.yml | 4 ++-- packages/aws/docs/s3.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/aws/data_stream/s3access/fields/fields.yml b/packages/aws/data_stream/s3access/fields/fields.yml index c5ac725545b3..b0b0dcc44e3a 100644 --- a/packages/aws/data_stream/s3access/fields/fields.yml +++ b/packages/aws/data_stream/s3access/fields/fields.yml @@ -52,11 +52,11 @@ - name: total_time type: long description: | - The number of milliseconds the request was in flight from the server's perspective. + The total amount of time in milliseconds the request was in flight from the server's perspective. - name: turn_around_time type: long description: | - The number of milliseconds that Amazon S3 spent processing your request. + The total amount of time in milliseconds that Amazon S3 spent processing your request. - name: referrer type: keyword description: | diff --git a/packages/aws/docs/s3.md b/packages/aws/docs/s3.md index cd05f8162d6a..c571b79d6bb9 100644 --- a/packages/aws/docs/s3.md +++ b/packages/aws/docs/s3.md @@ -78,8 +78,8 @@ to learn about customer base and understand Amazon S3 bill. | aws.s3access.requester | The canonical user ID of the requester, or a - for unauthenticated requests. | keyword | | aws.s3access.signature_version | The signature version, SigV2 or SigV4, that was used to authenticate the request or a - for unauthenticated requests. | keyword | | aws.s3access.tls_version | The Transport Layer Security (TLS) version negotiated by the client. | keyword | -| aws.s3access.total_time | The number of milliseconds the request was in flight from the server's perspective. | long | -| aws.s3access.turn_around_time | The number of milliseconds that Amazon S3 spent processing your request. | long | +| aws.s3access.total_time | The total amount of time in milliseconds the request was in flight from the server's perspective. | long | +| aws.s3access.turn_around_time | The total amount of time in milliseconds that Amazon S3 spent processing your request. | long | | aws.s3access.user_agent | The value of the HTTP User-Agent header. | keyword | | aws.s3access.version_id | The version ID in the request, or "-" if the operation does not take a versionId parameter. | keyword | | client.address | Some event client addresses are defined ambiguously. The event will sometimes list an IP, a domain or a unix socket. You should always store the raw address in the `.address` field. Then it should be duplicated to `.ip` or `.domain`, depending on which one it is. | keyword | From de343b0d01b665173e14cd26fce92d497c05a343 Mon Sep 17 00:00:00 2001 From: Arianna Laudazzi Date: Tue, 12 Dec 2023 13:55:15 +0100 Subject: [PATCH 2/3] Update changelog and manifest --- packages/aws/changelog.yml | 5 +++++ packages/aws/manifest.yml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/aws/changelog.yml b/packages/aws/changelog.yml index 6cab42b446fe..c7d745ec19b0 100644 --- a/packages/aws/changelog.yml +++ b/packages/aws/changelog.yml @@ -1,4 +1,9 @@ # newer versions go on top +- version: "2.10.2" + changes: + - description: Fix wording on milliseconds. + type: enhancement + link: https://github.com/elastic/integrations/pull/8703 - version: "2.10.1" changes: - description: Fix exclude_files pattern. diff --git a/packages/aws/manifest.yml b/packages/aws/manifest.yml index 926aab9244e8..f107a6ee3616 100644 --- a/packages/aws/manifest.yml +++ b/packages/aws/manifest.yml @@ -1,7 +1,7 @@ format_version: 3.0.0 name: aws title: AWS -version: 2.10.1 +version: 2.10.2 description: Collect logs and metrics from Amazon Web Services (AWS) with Elastic Agent. type: integration categories: From e8b079da16684923ff36516f3c877c2e7f100e39 Mon Sep 17 00:00:00 2001 From: Arianna Laudazzi <46651782+alaudazzi@users.noreply.github.com> Date: Tue, 12 Dec 2023 18:15:30 +0100 Subject: [PATCH 3/3] Update packages/aws/changelog.yml Co-authored-by: subham sarkar --- packages/aws/changelog.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/aws/changelog.yml b/packages/aws/changelog.yml index c7d745ec19b0..f5126331b28f 100644 --- a/packages/aws/changelog.yml +++ b/packages/aws/changelog.yml @@ -1,7 +1,7 @@ # newer versions go on top - version: "2.10.2" changes: - - description: Fix wording on milliseconds. + - description: Improve wording on milliseconds. type: enhancement link: https://github.com/elastic/integrations/pull/8703 - version: "2.10.1"