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

[crowdstrike] Fix cache option name in FDR data stream. #9436

Merged
merged 1 commit into from Mar 25, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/crowdstrike/changelog.yml
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.32.1"
changes:
- description: Fix cache option name in FDR data stream.
type: bugfix
link: https://github.com/elastic/integrations/pull/9436
- version: "1.32.0"
changes:
- description: Set sensitive value as secret in cel input.
Expand Down
Expand Up @@ -72,7 +72,7 @@ processors:
capacity: {{metadata_cache_capacity}}
file:
id: aidmaster
write_period: {{metadata_cache_write_period}}
write_interval: {{metadata_cache_write_interval}}
put:
ttl: {{metadata_ttl}}
key_field: crowdstrike.aid
Expand All @@ -94,7 +94,7 @@ processors:
capacity: {{metadata_cache_capacity}}
file:
id: userinfo
write_period: {{metadata_cache_write_period}}
write_interval: {{metadata_cache_write_interval}}
put:
ttl: {{metadata_ttl}}
key_field: crowdstrike.UserSid_readable
Expand Down
Expand Up @@ -37,7 +37,7 @@ processors:
capacity: {{metadata_cache_capacity}}
file:
id: aidmaster
write_period: {{metadata_cache_write_period}}
write_interval: {{metadata_cache_write_interval}}
put:
ttl: {{metadata_ttl}}
key_field: crowdstrike.aid
Expand All @@ -59,7 +59,7 @@ processors:
capacity: {{metadata_cache_capacity}}
file:
id: userinfo
write_period: {{metadata_cache_write_period}}
write_interval: {{metadata_cache_write_interval}}
put:
ttl: {{metadata_ttl}}
key_field: crowdstrike.UserSid_readable
Expand Down
4 changes: 2 additions & 2 deletions packages/crowdstrike/data_stream/fdr/manifest.yml
Expand Up @@ -76,10 +76,10 @@ streams:
type: text
multi: false
default: 0
- name: metadata_cache_write_period
- name: metadata_cache_write_interval
required: true
show_user: false
title: Metadata cache write period
title: Metadata cache write interval
description: The interval between periodic cache writes to the backing file. Valid time units are h, m, s, ms, us/µs and ns. The contents are always written out to the backing file when the processor is closed. Default is zero, no periodic writes.
type: text
multi: false
Expand Down
2 changes: 1 addition & 1 deletion packages/crowdstrike/manifest.yml
@@ -1,6 +1,6 @@
name: crowdstrike
title: CrowdStrike
version: "1.32.0"
version: "1.32.1"
description: Collect logs from Crowdstrike with Elastic Agent.
type: integration
format_version: "3.0.0"
Expand Down