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/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "0.2.1"
changes:
- description: Add check for empty configuration options.
type: bugfix # can be one of: enhancement, bugfix, breaking-change
link: https://github.com/elastic/integrations/pull/741
- version: "0.2.0"
changes:
- description: Add changes to use ECS 1.8 fields.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
{{#if connection_string}}
connection_string: {{connection_string}}
{{/if}}
{{#if eventhub}}
eventhub: {{eventhub}}
storage_account_container: filebeat-activitylogs-{{eventhub}}
{{/if}}
{{#if consumer_group}}
consumer_group: {{consumer_group}}
{{/if}}
{{#if storage_account}}
storage_account: {{storage_account}}
{{/if}}
{{#if storage_account_key}}
storage_account_key: {{storage_account_key}}
{{/if}}
{{#if resource_manager_endpoint}}
resource_manager_endpoint: {{resource_manager_endpoint}}
storage_account_container: filebeat-activitylogs-{{eventhub}}
{{/if}}
tags:
{{#each tags as |tag i|}}
- {{tag}}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
{{#if connection_string}}
connection_string: {{connection_string}}
{{/if}}
{{#if eventhub}}
eventhub: {{eventhub}}
storage_account_container: filebeat-auditlogs-{{eventhub}}
{{/if}}
{{#if consumer_group}}
consumer_group: {{consumer_group}}
{{/if}}
{{#if storage_account}}
storage_account: {{storage_account}}
{{/if}}
{{#if storage_account_key}}
storage_account_key: {{storage_account_key}}
{{/if}}
{{#if resource_manager_endpoint}}
resource_manager_endpoint: {{resource_manager_endpoint}}
storage_account_container: filebeat-auditlogs-{{eventhub}}
{{/if}}
tags:
{{#each tags as |tag i|}}
- {{tag}}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
{{#if connection_string}}
connection_string: {{connection_string}}
{{/if}}
{{#if eventhub}}
eventhub: {{eventhub}}
storage_account_container: filebeat-platformlogs-{{eventhub}}
{{/if}}
{{#if consumer_group}}
consumer_group: {{consumer_group}}
{{/if}}
{{#if storage_account}}
storage_account: {{storage_account}}
{{/if}}
{{#if storage_account_key}}
storage_account_key: {{storage_account_key}}
{{/if}}
{{#if resource_manager_endpoint}}
resource_manager_endpoint: {{resource_manager_endpoint}}
storage_account_container: filebeat-platformlogs-{{eventhub}}
{{/if}}
tags:
{{#each tags as |tag i|}}
- {{tag}}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
{{#if connection_string}}
connection_string: {{connection_string}}
{{/if}}
{{#if eventhub}}
eventhub: {{eventhub}}
storage_account_container: filebeat-signinlogs-{{eventhub}}
{{/if}}
{{#if consumer_group}}
consumer_group: {{consumer_group}}
{{/if}}
{{#if storage_account}}
storage_account: {{storage_account}}
{{/if}}
{{#if storage_account_key}}
storage_account_key: {{storage_account_key}}
{{/if}}
{{#if resource_manager_endpoint}}
resource_manager_endpoint: {{resource_manager_endpoint}}
storage_account_container: filebeat-signinlogs-{{eventhub}}
{{/if}}
tags:
{{#each tags as |tag i|}}
- {{tag}}
Expand Down
2 changes: 1 addition & 1 deletion packages/azure/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: azure
title: Azure
version: 0.2.0
version: 0.2.1
release: beta
description: Azure Integration
type: integration
Expand Down