Skip to content
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
5 changes: 5 additions & 0 deletions packages/azure_metrics/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
- version: "1.0.24"
changes:
- description: Fix the metrics field name in the container instance datastream.
type: bugfix
link: https://github.com/elastic/integrations/pull/7445
- version: "1.0.23"
changes:
- description: Add dimension and metric_type metadata to the compute_vm_scaleset datastream
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"azure": {
"subscription_id": "70bd6e77-4b1e-4835-8896-db77b8eef364",
"timegrain": "PT5M",
"monitor": {
"metrics": {
"network_bytes_transmitted_per_second": {
"avg": 0
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ processors:
field: ecs.version
value: "8.0.0"
- rename:
field: azure.monitor
field: azure.metrics
target_field: azure.container_instance
ignore_missing: true
on_failure:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,15 @@
metric_type: gauge
unit: byte
description: The network bytes transmitted per second.
- name: azure.metrics.cpu_usage.avg
type: alias
path: azure.container_instance.cpu_usage.avg
- name: azure.metrics.memory_usage.avg
type: alias
path: azure.container_instance.memory_usage.avg
- name: azure.metrics.network_bytes_received_per_second.avg
type: alias
path: azure.container_instance.network_bytes_received_per_second.avg
- name: azure.metrics.network_bytes_transmitted_per_second.avg
type: alias
path: azure.container_instance.network_bytes_transmitted_per_second.avg
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@
type: keyword
dimension: true
description: The container name

- name: metrics
type: group
fields:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,3 @@
metric_type: gauge
unit: byte
description: The amount of storage used by the container registry. For a registry account, it's the sum of capacity used by all the repositories within a registry. It's sum of capacity used by shared layers, manifest files, and replica copies in each of its repositories.

6 changes: 3 additions & 3 deletions packages/azure_metrics/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -353,9 +353,9 @@ so the `period` for `container_instance` should be `300s` or multiples of `300s`
| azure.container_instance.network_bytes_transmitted_per_second.avg | The network bytes transmitted per second. | float | byte | gauge |
| azure.dimensions.container_name | The container name | keyword | | |
| azure.metrics.cpu_usage.avg | CPU usage on all cores in millicores. | float | | gauge |
| azure.metrics.memory_usage.avg | Total memory usage in byte. | float | byte | gauge |
| azure.metrics.network_bytes_received_per_second.avg | The network bytes received per second. | float | byte | gauge |
| azure.metrics.network_bytes_transmitted_per_second.avg | The network bytes transmitted per second. | float | byte | gauge |
| azure.metrics.memory_usage.avg | | alias | | |
| azure.metrics.network_bytes_received_per_second.avg | | alias | | |
| azure.metrics.network_bytes_transmitted_per_second.avg | | alias | | |
| azure.namespace | The namespace selected | keyword | | |
| azure.resource.group | The resource group | keyword | | |
| azure.resource.id | The id of the resource | keyword | | |
Expand Down
6 changes: 3 additions & 3 deletions packages/azure_metrics/docs/container_instance.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ Authentication: we are handling authentication on our side (creating/renewing th
| azure.container_instance.network_bytes_transmitted_per_second.avg | The network bytes transmitted per second. | float | byte | gauge |
| azure.dimensions.container_name | The container name | keyword | | |
| azure.metrics.cpu_usage.avg | CPU usage on all cores in millicores. | float | | gauge |
| azure.metrics.memory_usage.avg | Total memory usage in byte. | float | byte | gauge |
| azure.metrics.network_bytes_received_per_second.avg | The network bytes received per second. | float | byte | gauge |
| azure.metrics.network_bytes_transmitted_per_second.avg | The network bytes transmitted per second. | float | byte | gauge |
| azure.metrics.memory_usage.avg | | alias | | |
| azure.metrics.network_bytes_received_per_second.avg | | alias | | |
| azure.metrics.network_bytes_transmitted_per_second.avg | | alias | | |
| azure.namespace | The namespace selected | keyword | | |
| azure.resource.group | The resource group | keyword | | |
| azure.resource.id | The id of the resource | keyword | | |
Expand Down
2 changes: 1 addition & 1 deletion packages/azure_metrics/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: azure_metrics
title: Azure Resource Metrics
version: 1.0.23
version: 1.0.24
release: ga
description: Collect metrics from Azure resources with Elastic Agent.
type: integration
Expand Down