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

synthetics - add new ssl and filter params for browser monitors #1778

Merged
Show file tree
Hide file tree
Changes from 2 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
5 changes: 5 additions & 0 deletions 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.3.1"
changes:
- description: Add new synthetics/browser input params
type: enhancement
link: https://github.com/elastic/integrations/pull/1778
- version: "0.3.0"
changes:
- description: Add browser data streams
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,33 @@ screenshots: {{screenshots}}
{{#if synthetics_args}}
synthetics_args: {{synthetics_args}}
{{/if}}
{{#if filter_journeys.match}}
filter_journeys.match: {{filter_journeys.match}}
{{/if}}
{{#if filter_journeys.tags}}
filter_journeys.tags: {{filter_journeys.tags}}
{{/if}}
{{#if ignore_https_errors}}
ignore_https_errors: {{ignore_https_errors}}
{{/if}}
{{#if ssl.certificate}}
ssl.certificate: {{ssl.certificate}}
{{/if}}
{{#if ssl.certificate_authorities}}
ssl.certificate_authorities: {{ssl.certificate_authorities}}
{{/if}}
{{#if ssl.key}}
ssl.key: {{ssl.key}}
{{/if}}
{{#if ssl.key_passphrase}}
ssl.key_passphrase: {{ssl.key_passphrase}}
{{/if}}
{{#if ssl.verification_mode}}
ssl.verification_mode: {{ssl.verification_mode}}
{{/if}}
{{#if ssl.supported_protocols}}
ssl.supported_protocols: {{ssl.supported_protocols}}
{{/if}}
processors:
- add_observer_metadata:
geo:
Expand Down
48 changes: 48 additions & 0 deletions packages/synthetics/data_stream/browser/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,51 @@ streams:
multi: false
required: false
show_user: true
- name: filter_journeys.tags
type: text
title: run only journeys with the given tag(s), or globs
multi: true
required: false
show_user: true
- name: filter_journeys.match
type: text
title: run only journeys with a name or tags that matches the configured glob
multi: false
required: false
show_user: true
- name: ssl.certificate_authorities
type: yaml
title: Certificate authorities
multi: false
required: false
show_user: true
- name: ssl.certificate
type: yaml
title: Certificate
multi: false
required: false
show_user: true
- name: ssl.key
type: yaml
title: Certificate private key
multi: false
required: false
show_user: true
- name: ssl.key_passphrase
type: text
title: Private key passphrase
multi: false
required: false
show_user: true
- name: ssl.verification_mode
type: text
title: SSL Verification mode
multi: false
required: false
show_user: true
- name: ssl.supported_protocols
type: yaml
title: Supported protocols
multi: false
required: false
show_user: true
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: This Elastic integration allows you to monitor the availability of your services
version: 0.3.0
version: 0.3.1
categories: ["elastic_stack", "monitoring", "web"]
release: beta
type: integration
Expand Down