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

Allow rerouting of Azure Metrics events to a different data stream #8520

Merged
merged 2 commits into from
Nov 17, 2023
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
7 changes: 6 additions & 1 deletion packages/azure_metrics/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
- version: "1.3.0"
changes:
- description: Allow rerouting of Azure metrics events to a different data stream.
type: enhancement
link: https://github.com/elastic/integrations/pull/8520
- version: "1.2.1"
changes:
- description: Add missing dimension metadata to the database_account datastream; fix typo in the container_registry field definition
Expand Down Expand Up @@ -62,7 +67,7 @@
changes:
- description: Normalize the azure.dimentions.status field value to lowercase. Values from Azure come in lowercase and capitalized versions (e.g., True/true/False/false).
type: bugfix
link: https://github.com/elastic/integrations/pull/7551
link: https://github.com/elastic/integrations/pull/7551
- version: "1.0.34"
changes:
- description: Add dimension and metric_type metadata to the monitor datastream
Expand Down
4 changes: 4 additions & 0 deletions packages/azure_metrics/data_stream/compute_vm/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,7 @@ streams:
show_user: true
title: Compute VM
description: Collect Compute VM metrics
# Ensures agents have permissions to write data to `metrics-*-*`
elasticsearch:
dynamic_dataset: true
dynamic_namespace: true
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,7 @@ streams:
show_user: true
title: Compute VM Scaleset
description: Collect Compute VM Scaleset metrics
# Ensures agents have permissions to write data to `metrics-*-*`
elasticsearch:
dynamic_dataset: true
dynamic_namespace: true
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,7 @@ streams:
show_user: true
title: Container Instance
description: Collect Container Instance metrics
# Ensures agents have permissions to write data to `metrics-*-*`
elasticsearch:
dynamic_dataset: true
dynamic_namespace: true
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,7 @@ streams:
show_user: true
title: Container Registry
description: Collect Container Registry metrics
# Ensures agents have permissions to write data to `metrics-*-*`
elasticsearch:
dynamic_dataset: true
dynamic_namespace: true
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,7 @@ streams:
show_user: true
title: Container Service
description: Collect Container Service metrics
# Ensures agents have permissions to write data to `metrics-*-*`
elasticsearch:
dynamic_dataset: true
dynamic_namespace: true
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,7 @@ streams:
show_user: true
title: Database Account
description: Collect Database Account metrics
# Ensures agents have permissions to write data to `metrics-*-*`
elasticsearch:
dynamic_dataset: true
dynamic_namespace: true
4 changes: 4 additions & 0 deletions packages/azure_metrics/data_stream/monitor/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,7 @@ streams:
namespace: "Microsoft.DocumentDb/databaseAccounts"
title: Monitor
description: Collect Monitor metrics
# Ensures agents have permissions to write data to `metrics-*-*`
elasticsearch:
dynamic_dataset: true
dynamic_namespace: true
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,7 @@ streams:
title: Storage Account
description: Collect Storage Account metrics
elasticsearch:
index_mode: "time_series"
index_mode: "time_series"
# Ensures agents have permissions to write data to `metrics-*-*`
dynamic_dataset: true
dynamic_namespace: true
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.2.1
version: 1.3.0
release: ga
description: Collect metrics from Azure resources with Elastic Agent.
type: integration
Expand Down