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

[azure_metrics] add missing dimensions to the database_account datastream; fix typo in container_registry datastream #8319

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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions 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.
Expand Down
Expand Up @@ -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
Expand Down
Expand Up @@ -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
2 changes: 1 addition & 1 deletion packages/azure_metrics/docs/README.md
Expand Up @@ -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 |
Expand Down
2 changes: 1 addition & 1 deletion packages/azure_metrics/docs/container_registry.md
Expand Up @@ -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 |
Expand Down
2 changes: 1 addition & 1 deletion 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
Expand Down