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: 7 additions & 0 deletions packages/tenable_sc/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# newer versions go on top
- version: "2.0.0"
changes:
- description: >-
Update mapping of `tenable_sc.vulnerability.plugin.text` field from `keyword`to `match_only_text`.
This could break custom Kibana dashboards or queries that rely on the `tenable_sc.vulnerability.plugin.text` field.
type: breaking-change
link: https://github.com/elastic/integrations/pull/16508
- version: "1.32.1"
changes:
- description: Fix handling of vulnerablity documents that do not contain a seeAlso field.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@
description: |
The date on which the vulnerability was published.
- name: text
type: keyword
type: match_only_text
description: |
Text provided by plugin. (Usually plugin output text).
- name: port
Expand Down
2 changes: 1 addition & 1 deletion packages/tenable_sc/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ An example event for `vulnerability` looks as following:
| tenable_sc.vulnerability.plugin.mod_date | The date on which the vulnerability was modified. | date |
| tenable_sc.vulnerability.plugin.name | The name of the plugin. | keyword |
| tenable_sc.vulnerability.plugin.pub_date | The date on which the vulnerability was published. | date |
| tenable_sc.vulnerability.plugin.text | Text provided by plugin. (Usually plugin output text). | keyword |
| tenable_sc.vulnerability.plugin.text | Text provided by plugin. (Usually plugin output text). | match_only_text |
| tenable_sc.vulnerability.port | The port the scanner used to communicate with the asset. | keyword |
| tenable_sc.vulnerability.protocol | The protocol the scanner used to communicate with the asset. | keyword |
| tenable_sc.vulnerability.recast_risk | Modified the severity risk measure of vulnerabilities using recast rules. | keyword |
Expand Down
2 changes: 1 addition & 1 deletion packages/tenable_sc/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ format_version: "3.3.2"
name: tenable_sc
title: Tenable Security Center
# The version must be updated in the input configuration templates as well, in order to set the correct User-Agent header. Until elastic/kibana#121310 is implemented we will have to manually sync these.
version: "1.32.1"
version: "2.0.0"
description: |
Collect data from Tenable Security Center with Elastic Agent.
type: integration
Expand Down