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
9 changes: 9 additions & 0 deletions packages/gcp/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@
- description: Add GCP Load Balancing Metricset
type: enhancement
link: https://github.com/elastic/integrations/pull/2308
- description: Fix credentials_json escaping in loadbalancing_metrics
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

some strange things going on here :)

type: bugfix
link: foobar
- description: Update loadbalancing_metrics default period to 60s
type: bugfix
link: foobar
- description: Fix event.dataset for loadbalancing_metrics
type: bugfix
link: foobar
- version: "2.4.0"
changes:
- description: Update package to ECS 8.4.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ project_id: {{project_id}}
credentials_file_path: {{credentials_file}}
{{/if}}
{{#if credentials_json}}
credentials_json: {{credentials_json}}
credentials_json: '{{credentials_json}}'
{{/if}}
{{#if region}}
region: {{region}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
- name: event.dataset
type: constant_keyword
description: Event dataset
value: gcp.loadbalancing
value: gcp.loadbalancing_metrics
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ streams:
- name: period
type: text
title: Period
default: 10s
default: 60s
required: true
- name: exclude_labels
type: bool
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"availability_zone": "us-central1-a"
},
"event": {
"dataset": "gcp.loadbalancing",
"dataset": "gcp.loadbalancing_metrics",
"duration": 115000,
"module": "gcp"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/gcp/docs/loadbalancing.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ An example event for `loadbalancing` looks as following:
"availability_zone": "us-central1-a"
},
"event": {
"dataset": "gcp.loadbalancing",
"dataset": "gcp.loadbalancing_metrics",
"duration": 115000,
"module": "gcp"
},
Expand Down