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/tenable_io/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# newer versions go on top
- version: "4.5.0"
changes:
- description: Allow user configuration of maximum number of CEL executions for the vulnerability data stream.
type: enhancement
link: https://github.com/elastic/integrations/pull/15926
- version: "4.4.1"
changes:
- description: Update transform to filter out documents containing an error.message from vulnerability latest index
- description: Update transform to filter out documents containing an error.message from vulnerability latest index.
type: bugfix
link: https://github.com/elastic/integrations/pull/15722
- version: "4.4.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ redact:
fields:
- access_key
- secret_key
{{#if max_executions}}
max_executions: {{max_executions}}
{{/if}}
program: |
state.with(state.?chunk_status.orValue("") != "PROCESSING" && !state.?want_more.orValue(false) ?
post_request(
Expand Down
8 changes: 8 additions & 0 deletions packages/tenable_io/data_stream/vulnerability/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,14 @@ streams:
required: true
show_user: false
default: 30s
- 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: 2000
- name: tags
type: text
title: Tags
Expand Down
2 changes: 1 addition & 1 deletion packages/tenable_io/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: "3.4.0"
name: tenable_io
title: Tenable Vulnerability Management
version: "4.4.1"
version: "4.5.0"
description: Collect logs from Tenable Vulnerability Management with Elastic Agent.
type: integration
categories:
Expand Down