forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Metricbeat] gcp.storage: uniform metricset's fields (elastic#28372)
* gcp.storage: add TestFetch * gcp.storage: flatten fields * gcp: update fields * metricbeat: mage update
- Loading branch information
Showing
4 changed files
with
45 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,32 @@ | ||
- name: storage | ||
description: Google Cloud Storage metrics | ||
release: beta | ||
type: group | ||
description: Google Cloud Storage metrics | ||
fields: | ||
- name: api | ||
type: group | ||
fields: | ||
- name: request_count.value | ||
type: long | ||
description: Delta count of API calls, grouped by the API method name and response code. | ||
- name: authz | ||
type: group | ||
fields: | ||
- name: acl_based_object_access_count.value | ||
type: long | ||
description: Delta count of requests that result in an object being granted access solely due to object ACLs. | ||
- name: acl_operations_count.value | ||
type: long | ||
description: Usage of ACL operations broken down by type. | ||
- name: object_specific_acl_mutation_count.value | ||
type: long | ||
description: Delta count of changes made to object specific ACLs. | ||
- name: network | ||
type: group | ||
fields: | ||
- name: received_bytes_count.value | ||
type: long | ||
description: Delta count of bytes received over the network, grouped by the API method name and response code. | ||
- name: sent_bytes_count.value | ||
type: long | ||
description: Delta count of bytes sent over the network, grouped by the API method name and response code. | ||
- name: storage | ||
type: group | ||
fields: | ||
- name: object_count.value | ||
type: long | ||
description: Total number of objects per bucket, grouped by storage class. This value is measured once per day, and the value is repeated at each sampling interval throughout the day. | ||
- name: total_byte_seconds.value | ||
type: long | ||
description: Delta count of bytes received over the network, grouped by the API method name and response code. | ||
- name: total_bytes.value | ||
type: long | ||
description: Total size of all objects in the bucket, grouped by storage class. This value is measured once per day, and the value is repeated at each sampling interval throughout the day. | ||
- name: api.request_count.value | ||
type: long | ||
description: Delta count of API calls, grouped by the API method name and response code. | ||
- name: authz.acl_based_object_access_count.value | ||
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.value | ||
type: long | ||
description: Usage of ACL operations broken down by type. | ||
- name: authz.object_specific_acl_mutation_count.value | ||
type: long | ||
description: Delta count of changes made to object specific ACLs. | ||
- name: network.received_bytes_count.value | ||
type: long | ||
description: Delta count of bytes received over the network, grouped by the API method name and response code. | ||
- name: network.sent_bytes_count.value | ||
type: long | ||
description: Delta count of bytes sent over the network, grouped by the API method name and response code. | ||
- name: storage.object_count.value | ||
type: long | ||
description: Total number of objects per bucket, grouped by storage class. This value is measured once per day, and the value is repeated at each sampling interval throughout the day. | ||
- name: storage.total_byte_seconds.value | ||
type: long | ||
description: Delta count of bytes received over the network, grouped by the API method name and response code. | ||
- name: storage.total_bytes.value | ||
type: long | ||
description: Total size of all objects in the bucket, grouped by storage class. This value is measured once per day, and the value is repeated at each sampling interval throughout the day. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters