diff --git a/packages/azure_metrics/changelog.yml b/packages/azure_metrics/changelog.yml index 954764bdfab5..ae7397235abb 100644 --- a/packages/azure_metrics/changelog.yml +++ b/packages/azure_metrics/changelog.yml @@ -1,3 +1,8 @@ +- version: "1.2.1" + changes: + - description: Add missing dimension metadata to the database_account datastream; fix typo in the container_registry field definition + type: bugfix + link: https://github.com/elastic/integrations/pull/8319 - version: "1.2.0" changes: - description: Enable time series data streams for the storage_account metrics dataset. This dramatically reduces storage for metrics and is expected to progressively improve query [performance](https://www.elastic.co/blog/70-percent-storage-savings-for-metrics-with-elastic-observability). For more details, see https://www.elastic.co/guide/en/elasticsearch/reference/current/tsds.html. diff --git a/packages/azure_metrics/data_stream/container_registry/fields/fields.yml b/packages/azure_metrics/data_stream/container_registry/fields/fields.yml index 9af75a0c2bb3..0d04ce78e4cd 100644 --- a/packages/azure_metrics/data_stream/container_registry/fields/fields.yml +++ b/packages/azure_metrics/data_stream/container_registry/fields/fields.yml @@ -25,7 +25,7 @@ - name: agent_pool_cpu_time.total type: float metric_type: gauge - unis: s + unit: s description: AgentPool CPU Time in seconds - name: storage_used.avg type: float diff --git a/packages/azure_metrics/data_stream/database_account/fields/package-fields.yml b/packages/azure_metrics/data_stream/database_account/fields/package-fields.yml index da50e10ea753..766b2d19b077 100644 --- a/packages/azure_metrics/data_stream/database_account/fields/package-fields.yml +++ b/packages/azure_metrics/data_stream/database_account/fields/package-fields.yml @@ -75,7 +75,9 @@ description: Name of the resource - name: closure_reason type: keyword + dimension: true description: Reason of the Cassandra Connection Closures - name: status_code type: keyword + dimension: true description: Status code of the made to database requests diff --git a/packages/azure_metrics/docs/README.md b/packages/azure_metrics/docs/README.md index e7f4aa588df7..e81177c0808c 100644 --- a/packages/azure_metrics/docs/README.md +++ b/packages/azure_metrics/docs/README.md @@ -432,7 +432,7 @@ so the `period` for `container_registry` should be `300s` or multiples of `300s` | @timestamp | Event timestamp. | date | | | | agent.id | Unique identifier of this agent (if one exists). Example: For Beats this would be beat.id. | keyword | | | | azure.application_id | The application ID | keyword | | | -| azure.container_registry.agent_pool_cpu_time.total | AgentPool CPU Time in seconds | float | | gauge | +| azure.container_registry.agent_pool_cpu_time.total | AgentPool CPU Time in seconds | float | s | gauge | | azure.container_registry.run_duration.total | ACR tasks run duration in milliseconds | float | ms | gauge | | azure.container_registry.storage_used.avg | 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. | float | byte | gauge | | azure.container_registry.successful_pull_count.total | Number of successful image pulls | float | | gauge | diff --git a/packages/azure_metrics/docs/container_registry.md b/packages/azure_metrics/docs/container_registry.md index e97c3dbf824d..7df46bb5063d 100644 --- a/packages/azure_metrics/docs/container_registry.md +++ b/packages/azure_metrics/docs/container_registry.md @@ -74,7 +74,7 @@ Authentication: we are handling authentication on our side (creating/renewing th | @timestamp | Event timestamp. | date | | | | agent.id | Unique identifier of this agent (if one exists). Example: For Beats this would be beat.id. | keyword | | | | azure.application_id | The application ID | keyword | | | -| azure.container_registry.agent_pool_cpu_time.total | AgentPool CPU Time in seconds | float | | gauge | +| azure.container_registry.agent_pool_cpu_time.total | AgentPool CPU Time in seconds | float | s | gauge | | azure.container_registry.run_duration.total | ACR tasks run duration in milliseconds | float | ms | gauge | | azure.container_registry.storage_used.avg | 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. | float | byte | gauge | | azure.container_registry.successful_pull_count.total | Number of successful image pulls | float | | gauge | diff --git a/packages/azure_metrics/manifest.yml b/packages/azure_metrics/manifest.yml index 553d81bf02cf..0b94de6d4006 100644 --- a/packages/azure_metrics/manifest.yml +++ b/packages/azure_metrics/manifest.yml @@ -1,6 +1,6 @@ name: azure_metrics title: Azure Resource Metrics -version: 1.2.0 +version: 1.2.1 release: ga description: Collect metrics from Azure resources with Elastic Agent. type: integration