Skip to content

Commit

Permalink
Add TransactionType into allowedDimensions for Azure storage account. (
Browse files Browse the repository at this point in the history
…elastic#36413)

* Add TransactionType into allowedDimensions for Azure storage account.
  • Loading branch information
ritalwar authored and Scholar-Li committed Feb 5, 2024
1 parent 883e03c commit c1100bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ https://github.com/elastic/beats/compare/v8.8.1\...main[Check the HEAD diff]
- Add option in SQL module to execute queries for all dbs. {pull}35688[35688]
- Add support for api_key authentication in elasticsearch module {pull}36274[36274]
- Add remaining dimensions for azure storage account to make them available for tsdb enablement. {pull}36331[36331]
- Add missing 'TransactionType' dimension for Azure Storage Account. {pull}36413[36413]

*Osquerybeat*

Expand Down
2 changes: 1 addition & 1 deletion x-pack/metricbeat/module/azure/storage/storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const defaultStorageAccountNamespace = "Microsoft.Storage/storageAccounts"

var (
storageServiceNamespaces = []string{"/blobServices", "/tableServices", "/queueServices", "/fileServices"}
allowedDimensions = []string{"ResponseType", "ApiName", "GeoType", "Authentication", "BlobType", "Tier", "FileShare"}
allowedDimensions = []string{"ResponseType", "ApiName", "GeoType", "Authentication", "BlobType", "Tier", "FileShare", "TransactionType"}
)

// init registers the MetricSet with the central registry as soon as the program
Expand Down

0 comments on commit c1100bf

Please sign in to comment.