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

Cherry-pick #21845 to 7.10: Azure storage metricset values not inside the metricset name #22005

Merged
merged 1 commit into from
Oct 20, 2020
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
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,7 @@ field. You can revert this change by configuring tags for the module and omittin
- Visualization title fixes in aws, azure and googlecloud compute dashboards. {pull}21098[21098]
- Use timestamp from CloudWatch API when creating events. {pull}21498[21498]
- Report the correct windows events for system/filesystem {pull}21758[21758]
- Fix azure storage event format. {pull}21845[21845]
- Fix panic in kubernetes autodiscover related to keystores {issue}21843[21843] {pull}21880[21880]

*Packetbeat*
Expand Down
2 changes: 2 additions & 0 deletions x-pack/metricbeat/module/azure/storage/storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ func New(base mb.BaseMetricSet) (mb.MetricSet, error) {
if err != nil {
return nil, err
}
// set default resource type to indicate this is not the generic monitor metricset
ms.Client.Config.DefaultResourceType = defaultStorageAccountNamespace
// if no options are entered we will retrieve all the vm's from the entire subscription
if len(ms.Client.Config.Resources) == 0 {
ms.Client.Config.Resources = []azure.ResourceConfig{
Expand Down