-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* gcp.compute: flatten fields * gcp.compute: fix firewall docs * gcp.compute: sort fields * gcp.compute: add TestFetch * gcp.compute: fix undocumented field * gcp: update fields * metricbeat: mage update (cherry picked from commit 3db67f6) Co-authored-by: endorama <[email protected]>
- Loading branch information
1 parent
24de193
commit 5687806
Showing
5 changed files
with
108 additions
and
103 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
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,77 +1,62 @@ | ||
- name: compute | ||
description: Google Cloud Compute metrics | ||
release: beta | ||
type: group | ||
description: Google Cloud Compute metrics | ||
fields: | ||
- name: instance | ||
type: group | ||
fields: | ||
- name: firewall | ||
type: group | ||
fields: | ||
- name: dropped_bytes_count.value | ||
type: long | ||
description: Incoming bytes dropped by the firewall | ||
- name: dropped_packets_count.value | ||
type: long | ||
description: Incoming packets dropped by the firewall | ||
- name: cpu | ||
type: group | ||
fields: | ||
- name: reserved_cores.value | ||
type: double | ||
description: Number of cores reserved on the host of the instance | ||
- name: utilization.value | ||
type: double | ||
description: The fraction of the allocated CPU that is currently in use on the instance | ||
- name: usage_time.value | ||
type: double | ||
description: Usage for all cores in seconds | ||
- name: disk | ||
type: group | ||
fields: | ||
- name: read_bytes_count.value | ||
type: long | ||
description: Count of bytes read from disk | ||
- name: read_ops_count.value | ||
type: long | ||
description: Count of disk read IO operations | ||
- name: write_bytes_count.value | ||
type: long | ||
description: Count of bytes written to disk | ||
- name: write_ops_count.value | ||
type: long | ||
description: Count of disk write IO operations | ||
- name: uptime.value | ||
type: long | ||
description: How long the VM has been running, in seconds | ||
- name: network | ||
type: group | ||
fields: | ||
- name: received_bytes_count.value | ||
type: long | ||
description: Count of bytes received from the network | ||
- name: received_packets_count.value | ||
type: long | ||
description: Count of packets received from the network | ||
- name: sent_bytes_count.value | ||
type: long | ||
description: Count of bytes sent over the network | ||
- name: sent_packets_count.value | ||
type: long | ||
description: Count of packets sent over the network | ||
- name: memory.balloon | ||
type: group | ||
fields: | ||
- name: ram_size.value | ||
type: long | ||
description: The total amount of memory in the VM. This metric is only available for VMs that belong to the e2 family. | ||
- name: ram_used.value | ||
type: long | ||
description: Memory currently used in the VM. This metric is only available for VMs that belong to the e2 family. | ||
- name: swap_in_bytes_count.value | ||
type: long | ||
description: The amount of memory read into the guest from its own swap space. This metric is only available for VMs that belong to the e2 family. | ||
- name: swap_out_bytes_count.value | ||
type: long | ||
description: The amount of memory written from the guest to its own swap space. This metric is only available for VMs that belong to the e2 family. | ||
- name: firewall.dropped_bytes_count.value | ||
type: long | ||
description: Incoming bytes dropped by the firewall | ||
- name: firewall.dropped_packets_count.value | ||
type: long | ||
description: Incoming packets dropped by the firewall | ||
- name: instance.cpu.reserved_cores.value | ||
type: double | ||
description: Number of cores reserved on the host of the instance | ||
- name: instance.cpu.usage_time.value | ||
type: double | ||
description: Usage for all cores in seconds | ||
- name: instance.cpu.utilization.value | ||
type: double | ||
description: The fraction of the allocated CPU that is currently in use on the instance | ||
- name: instance.disk.read_bytes_count.value | ||
type: long | ||
description: Count of bytes read from disk | ||
- name: instance.disk.read_ops_count.value | ||
type: long | ||
description: Count of disk read IO operations | ||
- name: instance.disk.write_bytes_count.value | ||
type: long | ||
description: Count of bytes written to disk | ||
- name: instance.disk.write_ops_count.value | ||
type: long | ||
description: Count of disk write IO operations | ||
- name: instance.memory.balloon.ram_size.value | ||
type: long | ||
description: The total amount of memory in the VM. This metric is only available for VMs that belong to the e2 family. | ||
- name: instance.memory.balloon.ram_used.value | ||
type: long | ||
description: Memory currently used in the VM. This metric is only available for VMs that belong to the e2 family. | ||
- name: instance.memory.balloon.swap_in_bytes_count.value | ||
type: long | ||
description: The amount of memory read into the guest from its own swap space. This metric is only available for VMs that belong to the e2 family. | ||
- name: instance.memory.balloon.swap_out_bytes_count.value | ||
type: long | ||
description: The amount of memory written from the guest to its own swap space. This metric is only available for VMs that belong to the e2 family. | ||
- name: instance.network.received_bytes_count.value | ||
type: long | ||
description: Count of bytes received from the network | ||
- name: instance.network.received_packets_count.value | ||
type: long | ||
description: Count of packets received from the network | ||
- name: instance.network.sent_bytes_count.value | ||
type: long | ||
description: Count of bytes sent over the network | ||
- name: instance.network.sent_packets_count.value | ||
type: long | ||
description: Count of packets sent over the network | ||
- name: instance.uptime.value | ||
type: long | ||
description: Number of seconds the VM has been running. | ||
- name: instance.uptime_total.value | ||
type: long | ||
description: Elapsed time since the VM was started, in seconds. Sampled every 60 seconds. After sampling, data is not visible for up to 120 seconds. |
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
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
Oops, something went wrong.