Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Metricbeat] Fix GCP Storage field #32806

Merged
merged 5 commits into from
Sep 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ https://github.com/elastic/beats/compare/v8.2.0\...main[Check the HEAD diff]

*Metricbeat*

- Fix GCP storage field naming {pull}32806[32806]
- in module/windows/perfmon, changed collection method of the second counter value required to create a displayable value {pull}32305[32305]
- Fix and improve AWS metric period calculation to avoid zero-length intervals {pull}32724[32724]
- Add missing cluster metadata to k8s module metricsets {pull}32979[32979]
Expand Down
2 changes: 1 addition & 1 deletion metricbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -36735,7 +36735,7 @@ type: long

--

*`gcp.storage.authz.acl_based_object_access_.ount`*::
*`gcp.storage.authz.acl_based_object_access.count`*::
+
--
Delta count of requests that result in an object being granted access solely due to object ACLs.
Expand Down
2 changes: 1 addition & 1 deletion x-pack/metricbeat/module/gcp/fields.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion x-pack/metricbeat/module/gcp/storage/_meta/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
- name: api.request.count
type: long
description: Delta count of API calls, grouped by the API method name and response code.
- name: authz.acl_based_object_access_.ount
- name: authz.acl_based_object_access.count
type: long
description: Delta count of requests that result in an object being granted access solely due to object ACLs.
- name: authz.acl_operations.count
Expand Down