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
5 changes: 5 additions & 0 deletions packages/qualys_gav/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "0.3.0"
changes:
- description: Added support for configuring cel max_executions parameter.
type: enhancement
link: https://github.com/elastic/integrations/pull/15748
- version: "0.2.1"
changes:
- description: Downgrade the `format_version` to the minimum version that supports all the necessary features for the package.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ resource.ssl: {{ssl}}
resource.timeout: {{http_client_timeout}}
{{/if}}
resource.url: {{url}}
{{#if max_executions}}
max_executions: {{max_executions}}
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
max_executions: {{max_executions}}
{{#if max_executions}}
max_executions: {{max_executions}}
{{/if}}

Copy link
Contributor

Choose a reason for hiding this comment

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

Yes, please. This is defensive.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

done

{{/if}}

state:
batch_size: {{batch_size}}
Expand Down
8 changes: 8 additions & 0 deletions packages/qualys_gav/data_stream/asset/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@ streams:
required: true
show_user: false
default: 100
- name: max_executions
type: integer
title: Maximum Pages Per Interval
description: Maximum Pages Per Interval is the maximum number of pages that can be collected at each interval.
multi: false
required: false
show_user: false
default: 1000
- name: enable_request_tracer
type: bool
title: Enable request tracing
Expand Down
2 changes: 1 addition & 1 deletion packages/qualys_gav/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: 3.3.2
name: qualys_gav
title: Qualys Global AssetView
version: 0.2.1
version: 0.3.0
description: Collect logs from Qualys Global AssetView with Elastic Agent.
type: integration
categories:
Expand Down