mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
Adding new fields to the allowlist for alert telemetry (#90868)
This commit is contained in:
parent
f563a82903
commit
d1653bc425
3 changed files with 8 additions and 0 deletions
|
@ -558,6 +558,8 @@ export class EndpointDocGenerator {
|
|||
version: '3.0.33',
|
||||
},
|
||||
temp_file_path: 'C:/temp/fake_malware.exe',
|
||||
quarantine_result: true,
|
||||
quarantine_message: 'fake quarantine message',
|
||||
},
|
||||
},
|
||||
process: {
|
||||
|
|
|
@ -47,6 +47,8 @@ describe('TelemetryEventsSender', () => {
|
|||
malware_classification: {
|
||||
key1: 'X',
|
||||
},
|
||||
quarantine_result: true,
|
||||
quarantine_message: 'this file is bad',
|
||||
something_else: 'nope',
|
||||
},
|
||||
},
|
||||
|
@ -79,6 +81,8 @@ describe('TelemetryEventsSender', () => {
|
|||
malware_classification: {
|
||||
key1: 'X',
|
||||
},
|
||||
quarantine_result: true,
|
||||
quarantine_message: 'this file is bad',
|
||||
},
|
||||
},
|
||||
host: {
|
||||
|
|
|
@ -320,6 +320,8 @@ const allowlistEventFields: AllowlistFields = {
|
|||
Ext: {
|
||||
code_signature: true,
|
||||
malware_classification: true,
|
||||
quarantine_result: true,
|
||||
quarantine_message: true,
|
||||
},
|
||||
},
|
||||
host: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue