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
7 changes: 6 additions & 1 deletion packages/synthetics/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "0.11.4"
changes:
- description: Add run_from.geo.name field to monitor config to preserve location name
type: bugfix
link: https://github.com/elastic/integrations/pull/4741
- version: "0.11.3"
changes:
- description: Add run_from field to monitor config
Expand All @@ -8,7 +13,7 @@
changes:
- description: Change incorrectly typed `states.ends.duration` field from `date` to long
type: bugfix
link: https://github.com/elastic/integrations/pull/4477
link: https://github.com/elastic/integrations/pull/4541
- version: "0.11.1"
changes:
- description: Change incorrectly typed `states.duration` field from `date` to long
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ origin: {{origin}}
{{#if location_name}}
run_from.id: {{location_name}}
{{/if}}
{{#if location_name}}
run_from.geo.name: {{location_name}}
{{/if}}
enabled: {{enabled}}
{{#if service.name}}
service.name: {{service.name}}
Expand Down Expand Up @@ -81,9 +84,6 @@ source.zip_url.ssl.supported_protocols: {{source.zip_url.ssl.supported_protocols
source.zip_url.proxy_url: {{source.zip_url.proxy_url}}
{{/if}}
processors:
- add_observer_metadata:
geo:
name: {{location_name}}
- add_fields:
target: ''
fields:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ origin: {{origin}}
{{#if location_name}}
run_from.id: {{location_name}}
{{/if}}
{{#if location_name}}
run_from.geo.name: {{location_name}}
{{/if}}
enabled: {{enabled}}
urls: {{urls}}
{{#if service.name}}
Expand Down Expand Up @@ -70,9 +73,6 @@ ssl.verification_mode: {{ssl.verification_mode}}
ssl.supported_protocols: {{ssl.supported_protocols}}
{{/if}}
processors:
- add_observer_metadata:
geo:
name: {{location_name}}
- add_fields:
target: ''
fields:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ origin: {{origin}}
{{#if location_name}}
run_from.id: {{location_name}}
{{/if}}
{{#if location_name}}
run_from.geo.name: {{location_name}}
{{/if}}
enabled: {{enabled}}
hosts: {{hosts}}
{{#if service.name}}
Expand All @@ -22,9 +25,6 @@ timeout: {{timeout}}
tags: {{tags}}
{{/if}}
processors:
- add_observer_metadata:
geo:
name: {{location_name}}
- add_fields:
target: ''
fields:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ origin: {{origin}}
{{#if location_name}}
run_from.id: {{location_name}}
{{/if}}
{{#if location_name}}
run_from.geo.name: {{location_name}}
{{/if}}
enabled: {{enabled}}
hosts: {{hosts}}
{{#if service.name}}
Expand Down Expand Up @@ -49,9 +52,6 @@ ssl.verification_mode: {{ssl.verification_mode}}
ssl.supported_protocols: {{ssl.supported_protocols}}
{{/if}}
processors:
- add_observer_metadata:
geo:
name: {{location_name}}
- add_fields:
target: ''
fields:
Expand Down
2 changes: 1 addition & 1 deletion packages/synthetics/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ format_version: 1.0.0
name: synthetics
title: Elastic Synthetics
description: Monitor the availability of your services with Elastic Synthetics.
version: 0.11.3
version: 0.11.4
categories: ["elastic_stack", "monitoring", "web"]
release: beta
type: integration
Expand Down