Skip to content

Commit

Permalink
Add more dimensions to allowedDimensions for azure storage account to… (
Browse files Browse the repository at this point in the history
#36331)

* Add more dimensions to allowedDimensions for azure storage account to support tsdb enablement.
  • Loading branch information
ritalwar committed Aug 16, 2023
1 parent ff96091 commit 138e623
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 @@ -164,6 +164,7 @@ automatic splitting at root level, if root level element is an array. {pull}3415
- Fix the gap in fetching forecast API metrics at the end of each month for Azure billing module {pull}36142[36142]
- 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]

*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"}
allowedDimensions = []string{"ResponseType", "ApiName", "GeoType", "Authentication", "BlobType", "Tier", "FileShare"}
)

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

0 comments on commit 138e623

Please sign in to comment.